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

[Request] Amulet of Life

add this to talkactions.xml
Lua:
	<talkaction words="!buyaol" event="script" value="buyaol.lua"/>

make a file named "buyaol.lua"
Lua:
local config =    {
                price = 10000,
				itemid = 2173
                };
				
	function onSay(cid, words, param, channel)
			if getPlayerMoney(cid) < (config.price) then
					    doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE,"You do not have enough money to buy an AOL, you need " .. config.price .. " gold to buy an AOL!")
			else
						doPlayerRemoveMoney(cid, (config.price))
						doPlayerGiveItem(cid, (config.itemid), 1)
						doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE,"You've bought an AOL.")
			end
			return true
	end

+REP plz :)
 
Back
Top