claro cara o storage value foi modificado...
de
resets = getPlayerStorageValue(cid,1020)
para
resets = getPlayerStorageValue(cid,36874)
function onSay(cid, words, param)
function getResets(cid)
resets = getPlayerStorageValue(cid,36874)
if resets < 0 then
resets = 0
end
return resets
end
doPlayerPopupFYI(cid, "Information about player" ..
"\nStatus:" ..
"\nLevel - " .. getPlayerLevel(cid) ..
"\nReset - " .. getResets(cid) ..
"\nHealth - " .. getCreatureHealth(cid) .. " / " .. getCreatureMaxHealth(cid) .. ", Mana - " .. getCreatureMana(cid) .. " / " .. getCreatureMaxMana(cid) ..
"\nIP: " .. doConvertIntegerToIp(getPlayerIp(cid)) .. "")
return TRUE
end