View Single Post
  #2  
Old 08-22-2006, 05:22 AM
hayward6
Forum Guide
 
Join Date: Jul 2005
Posts: 473
Default

Quote:
Originally Posted by Angelox
Code:
# Angelox

sub EVENT_SAY{
 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)
I can't get the quest::emote part of this to work - he says nothing, but the rest of the script is working. I also tried quest::say and quest::me with same results.

This might be the way to go with that one? You have what he is supposed to do but you have no trigger for it.
Code:
sub EVENT_ATTACK { 
quest::emote("hisses at you, its sharp teeth gnashing for your flesh!"); }
Reply With Quote