Tutorial Quests eating items
We seem to be having a problem with the quests that we added to tutorialb not returning items. We copied a quest from Halas, replaced values and plugged it into tutorialb and it isn't working. The event_item doesn't return anything. We've tried searching both here and the wiki with no luck.
Any help would be much appreciated. |
Also, how do you get it to assign a quest as you respond to a npc? Can't seem to find that data anywhere.
Sorry, I just noticed that this should probably be in the quest support forum... >.< |
Not sure what you mean by 'assign a quest'.
Also, it's kinda hard to troubleshoot a script if you don't post the code. |
Ok here is what happens...
Quote:
The sub EVENT_SAY works however. Here is the doozie, in Halas and other older zones I can spawn the mob there, copy the pl file in that zone folder and it works like a charm, just not in tutorialb. Any ideas? he he. |
basically handing him 9997-9999 and 55623 does nothing but he eats the item.
|
Could it be that here
Code:
if ($itemcount{9998} => 0){quest::summonitem("5042"); } |
Two things I'd check. First, I'd try replacing your:
Code:
if ($itemcount{9998} => 0){quest::summonitem("5042"); } Code:
if (plugin::check_handin(\%itemcount, 9998 => 1)) { if ($itemcount(9999} => 0) Should be: if ($itemcount{9999} => 0) The quest might throw a bit of a wobbly over the use of 0 as well, surely greater than or equal to one? :) |
All times are GMT -4. The time now is 06:09 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.