• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 0.X 0.3.6 Need A Talkaction to Refil my Stamina

Latorre01

New Member
Joined
Aug 14, 2019
Messages
22
Reaction score
2
Can someone help me with a script that fullfill your stamina with the comand !stamina?
 
Lua:
function onSay(cid, words, param)
local maxStamina = 42 * 60 * 1000
if doPlayerRemoveItem(cid,2160,10) then
doPlayerSetStamina(cid, maxStamina)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
else
doPlayerSendCancel(cid, 'You do not have 10cc.')
end
end
 
Last edited:
Lua:
function onSay(cid, words, param)
cfg.refuel = 42 * 60 * 1000
if doPlayerRemoveItem(cid,2160,10) then
doPlayerSetStamina(cid, cfg.refuel)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Your stamina has been refilled.")
else
doPlayerSendCancel(cid, 'You do not have 10cc.')
end
end
não funcionou brother
 
Try now, I edited it.
only English here, Read Support board rules.

You are breaking rule number
4. Foreign Language:
  • Only English is allowed here. If you want to post in a different language use this forum.
  • Accompanying a foreign language post with an English translation is also forbidden.
 
Back
Top