• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

TalkAction Buy Stamina With Command

Andy Man

Advanced OT User
Joined
Jun 15, 2011
Messages
1,689
Reaction score
194
Location
México
You just say !stamina and it will give you full stamina but you need 150cc.

Code:
function onSay(cid, words, param)
if doPlayerRemoveItem(cid,2160,150) then
getPlayerStamina(cid)
doCreatureSay(cid, "!stamina", TALKTYPE_ORANGE_1)
else
doPlayerSendCancel(cid, 'You do not have 150cc.')
end

You can change item and number of cc or whatever here, 2160 stands for cc and 150 for the number of cc that means 150cc
Code:
if doPlayerRemoveItem(cid,2160,150)
 
Back
Top