View Single Post
  #1  
Old 10-05-2004, 07:15 PM
srarcade
Fire Beetle
 
Join Date: Sep 2004
Location: FL
Posts: 19
Default Multiple Turn-Ins working?

Are multiple turn ins working in 5.9DR2 release? Here is what I'm trying to do:

Code:
sub EVENT_ITEM
{
 if ($itemcount{13006} == 1 && $itemcount{10503} == 1 && $itemcount{10300} == 1 && $itemcount{12038} == 1)
 {
        quest::say("Well what do we have here? Ah, one moment while I smith you up some of me finest armors.");
        quest::exp(250);
        quest::spawnitem(3053);
        quest::say("There ye go, a fancy banded helm for ya. Come back soon!");
 }
 else
 {
        quest::say("What'ya givin me gifts for? Well I'll take it anyway..thanks.");
 }
}
Thanks
Reply With Quote