View Single Post
  #2  
Old 04-03-2008, 10:51 PM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default Qeynos Hills: Gnasher Furgutt

Gnasher_Furgutt.pl

Code:
###################################################
# NPC: Gnasher_Furgutt.pl
# Part of the Gnashers Head quest
# Loot items:
# A Gnoll Head, identifies as Gnasher's Head (13309)
# A Note (18800)
# Zone: qeytoqrg
# By Andrew80k


sub EVENT_SAY {
	if($text =~ /hail/i ){
		quest::say("Who are you? Did McNeal send you? If not, you would do yourself good to leave Gnasher alone. I have friends in high places.");
	}
}

sub EVENT_AGGRO {
    quest::say("Grrrrr!! You'd best run! If Gnasher dies, more than Sabertooths will be after you.");
}
sub EVENT_DEATH{
    quest::say("Uuungghh!! You fool. Gnasher have human friends. They not be happy.. Bash you!!");
}

Last edited by Angelox; 04-04-2008 at 03:53 PM..
Reply With Quote