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

How i add guild wars ?

Xei

...
Joined
Apr 29, 2009
Messages
280
Reaction score
1
Can somebody help me with adding guild wars to site and in serv..
give me a tutorial or a link to that

thanks!

Also i need to make !bless in my serv..can u give me script ?
 
I dont know about the guild wars site!

But.. Here is the script for bless!

function onSay(cid, words, param)
if getPlayerBlessing(cid, 1) or getPlayerBlessing(cid, 2) or getPlayerBlessing(cid, 3) or getPlayerBlessing(cid, 4) or getPlayerBlessing(cid, 5) then
doPlayerSendCancel(cid,'You have already got one or more blessings!')
else
if doPlayerRemoveMoney(cid, 500000) == TRUE then
doPlayerAddBlessing(cid, 1)
doPlayerAddBlessing(cid, 2)
doPlayerAddBlessing(cid, 3)
doPlayerAddBlessing(cid, 4)
doPlayerAddBlessing(cid, 5)
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_YELLOW_RINGS)
doSendAnimatedText(getPlayerPosition(cid), "~Blessed~", TEXTCOLOR_DARKYELLOW)
doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE,'You have been blessed by the gods!')
else
doPlayerSendCancel(cid, "You need 50 crystal coin to get blessed!")
end
end
return 1
end

In data/talkactions.xml add that :-

<talkaction words="!bless" event="script" value="bless.lua"/>

Don't forget to rep++ me, thanks!
 
Back
Top