Olá pessoal tenho um pequeno script que to tentando usa para meu ot! Ou seja cria um item que regenera apenas 5 horas de stamina no player. Porem fiz tudo acredito que certinho mais o player ainda regenera toda a stamina... veja o script!
function onUse(cid, item, fromPosition, itemEx, toPosition)
local cfg = {}
cfg.refuel = 5 * 60 * 1000
if(getPlayerStamina(cid) >= cfg.refuel) then
doPlayerSendCancel(cid, "Your stamina is already full.")
else
doPlayerSetStamina(cid, cfg.refuel)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Voce carrego 5 horas de stamina")
doRemoveItem(item.uid)
end
return true
end
O que pode está de errado?