View Single Post
  #4  
Old 08-22-2006, 07:57 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Thanks a ton for your help - this one is fixed with this;
Code:
sub EVENT_ATTACK{
 quest::emote("hisses at you, its sharp teeth gnashing for your flesh!");
}

sub EVENT_DEATH{
 quest::delglobal("rage");
 quest::setglobal("rage","2","3","F");
 $rage=undef;
}

# EOF zone: veksar NPCs: spawn a_raging_bloodgill_goblin (109093)
since this is a "spawn on death" event , He always comes out "hissing" at me.

Still i have the problem with the quest::me coming out as a quest::say - I wonder if quest::me is working?
Reply With Quote