Thread: Quest Problem
View Single Post
  #3  
Old 04-18-2004, 03:18 AM
Dave987
Discordant
 
Join Date: Jun 2003
Location: England
Posts: 267
Default

Code:
sub EVENT_ITEM
{
if ($itemcount{27188} == 4){quest::say("PRAISE THE TRIBUNAL! Justice is ours! Here take this! Take it to Okinawa Boquestu in Halas, he shall aid you on creating the ultimate weapon for a berserker! Good luck, $race.");
quest::exp(12555);
quest::spawnitem(10);}
}
Ok, this isn't the most ideal way, but if you just want to get it working, try this:

Code:
 sub EVENT_ITEM
{
if (($item1 ==  27118) && ($item2 == 27118) && ($item3 == 27118) && ($item4 == 27118))
{
quest::say("PRAISE THE TRIBUNAL! Justice is ours! Here take this! Take it to Okinawa Boquestu in Halas, he shall aid you on creating the ultimate weapon for a berserker! Good luck, $race.");}
quest::exp(12555);
quest::spawnitem(19);}
}
__________________
;o)
Reply With Quote