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

~~Aol Script~~ FAST HELP!!

Status
Not open for further replies.
Put this to talkactions.xml:
Code:
<talkaction words="!aol" event="script" value="aol.lua"/>
And this to scripts:
Code:
function onSay(cid, words, param)
if doPlayerRemoveMoney(cid,20000)    
then   doPlayerAddItem(cid,2173,1)    
         doSendMagicEffect(getPlayerPosition(cid),12)    
         doPlayerSendTextMessage(cid,22,"You've bought an Amulet of Loss!")
else    
         doPlayerSendCancel(cid,"You'll need 20000 gold coins to get Amulet of Loss.")    
         doSendMagicEffect(getPlayerPosition(cid),2)

end
return TRUE 
end
 
Status
Not open for further replies.
Back
Top