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();
}
}