CipsoftStinks
www.relicaria.com
Hello im using rme 3.3 and otx 2 which is based on tfs0.4
im working on version 8.70
the problem is with quests system
PD: THE WEIRD THING IS THAT THE QUESTS ARE WORKING EVEN WHEN MAP ID WITH SCRIPTS DOESNT MATCH !
well i was looking how this works and i found this
in my rme the fire axe quest shows this unique id 60061
but my fire axe lua is registered in this way with unique id 50032
and in actions xml
anyone could exaplin me with this is so messy ? if my server have a bug or something?
im working on version 8.70
the problem is with quests system
PD: THE WEIRD THING IS THAT THE QUESTS ARE WORKING EVEN WHEN MAP ID WITH SCRIPTS DOESNT MATCH !
well i was looking how this works and i found this
in my rme the fire axe quest shows this unique id 60061
but my fire axe lua is registered in this way with unique id 50032
Code:
function onUse(cid, item, frompos, item2, topos)
[code]if item.uid == 50032 then
if getPlayerStorageValue(cid,50032) == -1 then
doPlayerSendTextMessage(cid,25,"You have found a Fire Axe.")
doPlayerAddItem(cid,2432,1)
setPlayerStorageValue(cid,50032,1)
else
doPlayerSendTextMessage(cid,25,"The is empty.")
end
end
return TRUE
end
Code:
<action uniqueid="50032" event="script" value="quests/fire_axe.lua"/>
anyone could exaplin me with this is so messy ? if my server have a bug or something?
Last edited: