• 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!

Need Command

magesty

New Member
Joined
Jan 10, 2008
Messages
109
Reaction score
0
Hi, Otlander's

I need help

Need one command by talkaction

a command that recharge stamina


eg :

!stamina

for 200k

and recharge all stamina :D Thx !!
 
Code:
local staminaMaxMinutes = 2520
local cost = 200000

function onSay(cid, words, param, channel)
	if(getPlayerStamina(cid) < staminaMaxMinutes) then
		if(doPlayerRemoveMoney(cid, cost)) then
			doPlayerSetStamina(cid, 2520)
			doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "You have restored your stamina for " .. cost .. " gold.")
		else
			doPlayerSendCancel(cid, "You need " .. cost .. " gold to restore your stamina.")
		end
	else
		doPlayerSendCancel(cid, "Your stamina is already full.")
	end

	return true
end
 
Back
Top