View Single Post
  #23  
Old 09-14-2008, 10:34 PM
Neiv
Hill Giant
 
Join Date: May 2008
Location: Colorado
Posts: 238
Default

Code:
my $started;

sub EVENT_SPAWN {
  $started = 0;
}

sub EVENT_SIGNAL {
  if ($started == 0) {
    $started = 1;
This code is crashing the zone. I looked at the QuestObjects page and didn't see anything like it there.
Reply With Quote