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

Action Buy stamina lever [Only vip player]

Cornex

Web Developer
Staff member
Global Moderator
Joined
Jun 15, 2008
Messages
3,444
Solutions
5
Reaction score
1,166
Location
Sweden
Hello i made an script there you are able to refill your stamina to full. Only vip members ingame will be able to use it.
Tested 0.3.6+
Please dont post your verisions of this script. (Respect)


First go to data/actions/scripts and make an file staminalever.lua

Paste this inside it:

Lua:
local price = 5000000
local cancelmsg = "You need to be vip to refill your stamina!"
local buymsg = "You have refilled your stamina!"
local nomoneymsg = "You need "..price.." coins to refill your stamina!"


function onUse(cid, item, fromPosition, itemEx, toPosition)
     if getPlayerVipDays(cid) < 1 then	  
	  doPlayerSendTextMessage(cid,19,cancelmsg)
	  elseif  getPlayerMoney (cid) >= price and getPlayerVipDays(cid) >= 1 then
		 doCreatureSay(cid, buymsg, TALKTYPE_ORANGE_1)
		doPlayerRemoveMoney(cid,price)
		doPlayerAddStamina(cid, 42 * 60 * 1000)
		else
		doPlayerSendTextMessage(cid,19,nomoneymsg)
	  end
	  return true
end

After go to data/actions actions.xml and paste this row:

Lua:
<action uniqueid="65414" event="script" value="staminalever.lua"/>

PHP:
Config:
 local price = 5000000<-- That means it will cost 5kk (500cc)

Then go to rme and put the lever or what ever item you want to use and put the unique ID like:

16c6f5y.png


Thanks for me. Maybe some repp? ^_^

Screens:
k0spso.png

adbu2q.png

ofxai9.png

2lsdwtc.png
 
Last edited:
In this pic
2lsdwtc.png


You should change the chars name to 'Can get it' :D

Hahahaha true story! :D

Thanks guys

Edited main script, more easier config
 
Last edited:
Back
Top Bottom