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

Command !stamina HEEEEEEEEELP!

bolero

MikeHere
Joined
Apr 13, 2009
Messages
1,146
Reaction score
12
Location
Venezuela
I need a command that makes call !stamina on having said this command re-load the complete stamina for 150k and that is alone for players premium HELP ME!
 
Code:
function onSay(cid, words, param, channel)
	local cfg = {
		full = 42 * 60 * 1000,
		price = 150000
	}
	if(words == "!stamina") then
		if(getPlayerStamina(cid) >= cfg.full) then
			doPlayerSendCancel(cid, "Your stamina is already full.")
		elseif(getPlayerMoney(cid) < cfg.price) then
			doPlayerSendCancel(cid, "You do not have enough money.")
		elseif(not isPremium(cid)) then
			doPlayerSendCancel(cid, "You do not have a premium account.")
		else
			doPlayerSetStamina(cid, cfg.full)
			doPlayerRemoveMoney(cid, cfg.price)
			doCreatureSay(cid, "Your stamina has been refilled!", TALKTYPE_ORANGE_1)
		end
		return true
	end
end
 
Back
Top