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

Solved Problem with quest in avesta help pls

Felipe93

Ghost Member
Joined
Mar 21, 2015
Messages
2,035
Solutions
9
Reaction score
361
Location
Chile
Hello i wanna know if anyone know how to fix this im using avesta 7.4 0.6.5 recompiled by jakkes
everything is working but now i add quest i added the quest of an avesta 7.6 made by two guys dont remember who 're they
here are the actions xmls show some quest i cheked some quest pos x y z to check if they were ok and yes they are i start the server and does not show nothing i go open a chest and nothing inside

@Limos hiho bro any idea?
all working less the quest ! pls help and thanks

C:\Users\ClAUI\Desktop\Avesta OS(perfect)\data\actions

<?xml version="1.0"?>

<actions>
-- Rook aid = 3000+
<action uniqueid="2999" script="rook/bear room/key.lua" />
<action uniqueid="3000" script="rook/bear room/bear room quest chain armor.lua" />
<action uniqueid="3001" script="rook/bear room/bear room quest brass helmet.lua" />
<action uniqueid="3002" script="rook/bear room/bear room quest arrows.lua" />
<action uniqueid="3003" script="rook/bear room/bear room quest switch.lua" />
<action uniqueid="3004" script="rook/present quest.lua" />
<action uniqueid="3005" script="rook/captain iglues treasure/captain iglues treasure salmon.lua" />
<action uniqueid="3006" script="rook/captain iglues treasure/captain iglues treasure letter.lua" />
<action uniqueid="3007" script="rook/combat knife quest.lua" />
<action uniqueid="3008" script="rook/doublet quest.lua" />
<action uniqueid="3009" script="rook/sewer grate switch.lua" />
<action uniqueid="3014" script="rook/goblin temple quest/goblin temple snow.lua" />
<action uniqueid="3015" script="rook/goblin temple quest/goblin temple.lua" />
<action uniqueid="3016" script="rook/katana quest/viking helmet.lua" />
<action uniqueid="3017" script="rook/katana quest/katana.lua" />
<action uniqueid="3018" script="rook/katana quest/key.lua" />
<action uniqueid="3019" script="rook/rapier quest.lua" />
<action uniqueid="3020" script="rook/minotaur hell quest/carlin sword.lua" />
<action uniqueid="3021" script="rook/minotaur hell quest/fishing rod.lua" />
<action uniqueid="3022" script="rook/minotaur hell quest/arrow.lua" />
<action uniqueid="3023" script="rook/black book.lua" />
<action uniqueid="3024" script="rook/honey flower.lua" />
<!--<action actionid="3001" script="draconiakey.lua" />-->


</actions>


what i mean for example a rook quest everything setup in x y z is right but still wont work i have to remap all quest?

function onUse(cid, item, frompos, item2, topos)
tile1 = {x = 32100, y = 32205, z = 8, stackpos = 1}
tile2 = {x = 32101, y = 32205, z = 8, stackpos = 1}
local playerTile = {x = 32100, y = 32205, z = 8}
local playerTile1 = {x = 32101, y = 32205, z = 8}
gettile1 = getThingfromPos(tile1)
gettile2 = getThingfromPos(tile2)
if item.uid == 3009 and item.itemid == 1945 then
doCreateItem(493,1,tile1)
doCreateItem(493,1,tile2)
doCreateItem(4799,1,tile1)
doCreateItem(4797,1,tile2)
doRemoveItem(gettile1.uid,1)
doRemoveItem(gettile2.uid,1)
if isCreature(getTopCreature(playerTile).uid) then
doTeleportThing(getTopCreature(playerTile).uid, {x = 32099, y = 32205, z = 8})
end
if isCreature(getTopCreature(playerTile1).uid) then
doTeleportThing(getTopCreature(playerTile1).uid, {x = 32102, y = 32205, z = 8})
end
doTransformItem(item.uid,item.itemid+1)
elseif item.uid == 3009 and item.itemid == 1946 then
doCreateItem(1284,1,tile1)
doCreateItem(1284,1,tile2)
doRemoveItem(gettile1.uid,1)
doRemoveItem(gettile2.uid,1)
doTransformItem(item.uid,item.itemid-1)
else
doPlayerSendCancel(cid,"Sorry, not possible.")
end
return 1
end
 
Back
Top