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

Help with addon for click. Have photo.

mike

Banned User
Joined
Jun 12, 2008
Messages
150
Reaction score
0
Location
Caracas Venezuela
I UPDATE MY OT V2 TO CRYMSON AND ADDONS BUGGED =S. ALL ADDONS!!


1zzgyrr.jpg
 
I have this in actions

function onUse(cid, item, frompos, item2, topos)

if item.uid ==8007 then
queststatus = getPlayerStorageValue(cid,7500)
if queststatus == 1 then
doPlayerSendTextMessage(cid,22,"This quest is empty.")

else
doPlayerSendTextMessage(cid,22,"You found a complete druid addons.")
doSendMagicEffect(topos,12)
if getPlayerSex(cid) == 0 then
doPlayerAddOutfit(cid, 148, 3)
doPlayerAddOutfit(cid, 144, 3)
setPlayerStorageValue(cid,7500,2)
else
doPlayerAddOutfit(cid, 148, 3)
doPlayerAddOutfit(cid, 144, 3)
talk_state = 1
end
end
return 0
end
return 1
end

AND in actions.xml have this...

<action uniqueid="7487" script="addons/druid.lua" /> --- Druid
<action uniqueid="8007" script="addons/druid.lua" /> --- Druid
 
Back
Top