PDA

View Full Version : Getting Error on Item handing in


Elea
07-01-2003, 09:17 AM
Hi all, i am trying my own quests, but when i hand an item to NPC i get this:
Error:GetItemAt(): Unknown slot 0x0bb8

i am searching this form but didnt find a solution yet. :(

is this still broken?

Bigpull
07-01-2003, 10:07 AM
You searched the wrong forum then, and yes it's fixed in cvs

Elea
07-01-2003, 10:41 AM
ok ok, i am complete new to this and have no clue how cvs is working.

as i understand it maybe fixed on next release?

Bigpull
07-01-2003, 10:50 AM
ok ok, i am complete new to this and have no clue how cvs is working.

as i understand it maybe fixed on next release?

Maybe, I like that word. Yes it "might" be.

Yes it is fixed, tradeing was slightly overlooked.

Elea
07-03-2003, 01:28 AM
well, as i know nothing about cvs i see only only 2 ways of working with the NPC quest atm, waiting for eqemu next release 0.4.5 or getting a compiled version somewhere. Thanks for your help anyway.

Elea
07-05-2003, 11:35 AM
i know i boggle you a lot, but can anyone send me the compiled cvs files world.exe zone.exe *.dll etc. for work a bit wirth the quest system. thanks a lot.
email: lieske@gmx.de

cannonalldex
07-08-2003, 10:57 AM
depends on how your quest is set up, if you hand in your items in the wrong order, the quest wont work. you would need multiple lines in your quest i would assume, unless there is an easier way of doing this.

EVENT_ITEM {
if ($item1 == "87" && $item2 == "618" && $item3 == "227") { say("Here take this and go before I get angry!") summonitem("53") }
if ($item2 == "87" && $item1 == "618" && $item3 == "227") { say("Here take this and go before I get angry!") summonitem("53") }
if ($item3 == "87" && $item2 == "618" && $item1 == "227") { say("Here take this and go before I get angry!") summonitem("53") }
if ($item1 == "87" && $item3 == "618" && $item2 == "227") { say("Here take this and go before I get angry!") summonitem("53") }
if ($item3 == "87" && $item1 == "618" && $item2 == "227") { say("Here take this and go before I get angry!") summonitem("53") }
if ($item2 == "87" && $item3 == "618" && $item1 == "227") { say("Here take this and go before I get angry!") summonitem("53") }

this would allow for your items to be turned in any order.

also you might want to check to see what is going to happen to your items if you turn in the wrong items. chomp chomp mmm that was tasty :)

killspree
07-08-2003, 01:06 PM
Our you could use $itemcount() :p