Go Back   EQEmulator Home > EQEmulator Forums > Quests > Quests::Completed

Quests::Completed This is where Completed quests are.

Reply
 
Thread Tools Display Modes
  #1  
Old 04-03-2008, 10:43 PM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default Surefall Glade: Gnasher's Head

Larsk_Juton.pl

This one is pretty close to live as I actually was able to complete it all on live.

Code:
# NPC: Larsk_Juton
# Zone: Qrg
# By Andrew80k

sub EVENT_SAY {
 if($text =~ /Hail/i) {
        quest::say("Hail, Adventurer! I hope you are enjoying your time in Surefall Glade. You must be careful when leaving the Jaggedpine. There have been many report of [Sabertooths] attacking travelers.");
 }
 if($text =~ /Sabertooths/i) {
        quest::say("The gnolls of Blackburrow are called Sabertooths. They have been seen in force on a regular basis. They are surely up to something. We have even heard rumors of a [pact] between Qeynos merchants and the dogs.");
 }
 if($text =~ /pact/i) {
        quest::say("Sources have come forward to tell of a pact between a merchant of Qeynos and the Sabertooths. It all has to do with blades and brew. We hear that a meeting will occur soon, somewhere in the Qeynos Hills at night. Do not fear, we shall find a brave ranger to [halt this meeting].");
 }
 if($text =~ /halt this meeting/i) {
        quest::say("Very good of you. Stop this meeting by killing the gnoll in Qeynos Hills. We hear that he shall be there in the late evening, and that his name is Furgoot or Furgy, something like that. Find him and kill him. I want his head. And if you should find any evidence of who the merchant is, be sure to hand it over to me.");
 }
 if ($text =~ /assist in the extermination of the gnoll brewers/i){
        quest::say("Within the bowels of Blackburrow, our scouts have reported seeing the gnoll brewers.  You will go and brave the lair of the dogs and slay these brewers in order to cease the flow of Blackburrow Stout.  During your mission, should you find any Blackburrow casks, you must return them to me.  When you have recovered three of these casks, I shall award you the [Cloak of Jaggedpine].");
 }
 if ($text =~ /Cloak of Jaggedpine/i) {
       quest::say("The Cloak of Jaggedpine was made for those loyal to the ways of the forest.  It is enchanted to increase one\'s dexterity.  It is awarded to those who have aided in our cause to rid the land of those vile dogs called the Sabertooths.  Should you earn one, be sure to hold onto it - you never know when we may alter the enchantments placed upon the cloak.");
 }
}

sub EVENT_ITEM {
  #do all other handins first with plugin, then let it do disciplines
  if(plugin::check_handin(\%itemcount,13309=>1)) {
     quest::say("So, I see you rid the hills of the beast. Good work! I have a reward for you. I hope it will be usefull. I am afraid this gnoll\'s death will not halt the alliance between the two. I shall require your services to [assist in the extermination of the gnoll brewers].");
     quest::faction(265,10);
     quest::faction(159,10);
     quest::faction(279,-30);
     quest::faction(135,10);
     quest::givecash(int(rand(10)),int(rand(10)),int(rand(10)),int(rand(10)));
     quest::summonitem(2140);
     quest::exp(1000);

  } elsif (plugin::check_handin(\%itemcount,17970=>3)) {
     quest::say("Excellent!  Ridding the area of those foul beasts will certainly slow down whatever it is they are planning.  Here is the Cloak of Jaggedpine.  You should keep this, for you never know when we may decide to alter the enchantments on it.");
     quest::summonitem(2915);
     quest::givecash(int(rand(10)),int(rand(10)),int(rand(10)),int(rand(10)));
     quest::faction(265,10);
     quest::faction(159,10);
     quest::faction(279,-30);
     quest::faction(135,10);
     quest::exp(1000);

  } elsif (plugin::check_handin(\%itemcount,18800=>1)) {
     quest::say("Fine Work, $name. Hmmm. It seems this needs taking care of. Take this note to the Captain of the City Guard in Qeynos. His name is Captain Tillin. He will have to attend to this matter. Also.. Let me see the gnoll\'s head. I must know you killed him. Be safe, my friend. I am sure that whoever this McNeal is, he was simply a lackey. Whoever he works for is most likely going to be looking for you. Watch your back in Qeynos.");
     quest::summonitem(18800);
     
  }    
  plugin::try_tome_handins(\%itemcount, $class, 'Ranger');
  plugin::return_items(\%itemcount);
}

Last edited by Angelox; 04-04-2008 at 03:43 PM..
Reply With Quote
  #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
  #3  
Old 04-03-2008, 10:56 PM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

Still working on Captain Tillin and the Executioner.

Larsk also contains the Blackburrow Brewers quest.

Last edited by Andrew80k; 04-04-2008 at 07:00 AM..
Reply With Quote
  #4  
Old 04-04-2008, 09:12 AM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

Thank you, submitted.
Reply With Quote
  #5  
Old 04-16-2008, 10:05 AM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

CD, I noticed that the Blackburrows Brewers quest was still marked as incomplete. Larsk_Juton.pl actually also contains the Blackburrow Brewers quest, so it should also be done, which should finish off the quests from Surefall.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 04:00 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3