Thread: $mob->
View Single Post
  #1  
Old 08-27-2008, 12:38 AM
phinius
Fire Beetle
 
Join Date: Aug 2008
Location: norrath
Posts: 8
Default $mob->

What's the deal with these? Been trying to use a few commands from http://www.eqemulator.net/wiki/wikka...a=QuestObjects
but nothing is working. Started with some of the more complex stuff, and worked my way down to $mob->gate(); which is not working for me either.

Code:
sub EVENT_ATTACK{

quest::shout("rawr");
quest::settimer(1, 10);


		}

sub EVENT_TIMER{

	if ($timer == 1){

		quest::shout("BAM");
		$mob->gate();
			}

		}
Reply With Quote