Thread: Quest help...
View Single Post
  #1  
Old 05-23-2013, 04:33 PM
Maceblade
Hill Giant
 
Join Date: Jun 2010
Posts: 231
Default Quest help...

Why does this crash my zone? Only does it when the PC does NOT have the item.

Code:
sub EVENT_SAY {
  


if ($text =~/Hail/i)
 	{
	if (plugin::check_hasitem($client, 1445)){
		quest::say("The King awaits.");		
      		quest::spawn2(999296,0,0,-118,2439,-262,128);

      }
   }
}
Reply With Quote