How to get players level with storage = 1234.
How to add these levels to yourself?
function onSay(cid, words, param, channel)
for _, pid in ipairs(getPlayersOnline()) do
if getPlayerStorageValue(pid, 1234) == -1 then
doPlayerPopupFYI(cid, getPlayerLevel(pid))
end
end
end