function onUse(cid, item, fromPosition, itemEx, toPosition)
local config = {
pokeball_id = 2149,
quanty = 100,
storage = 28000, -- n mexa
time = 5000, -- tempo em segundos
get = getItemNameById(pokeball_id)
}
if getPlayerStorageValue(cid, config.storage) <= os.time() then
doPlayerAddItem(cid,config.pokeball_id,config.quanty)
setPlayerStorageValue(cid, config.storage, os.time()+config.time)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você recebeu " .. config.quanty .. " ".. config.get .."s.")
else
doPlayerSendCancel(cid,"Você precisa esperar ".. config.time .." segundos para pegar as ".. config.get .."s n0vamente.")
end
return TRUE
end