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-05-2008, 10:50 PM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

Captain_Tillin.pl

Code:
###############################################
# NPC:  Captain Tillin
# Zone:  qeynos
# By Site3op
# Revised:  Andrew80k
###############################################

sub EVENT_SAY { 
if($text=~/Hail/i){
quest::say("Hail, $name!  Spend your time wisely in the city of Qeynos.  Do not let your mind wander to thoughts of bravado or crime.  My guards can easily put to rest any outbreaks.  Good day to you, citizen!"); }
}
sub EVENT_ITEM { 
 if(plugin::check_handin(\%itemcount,13915 => 1)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,13915 => 2)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,13915 => 4)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,10070 => 2) && plugin::check_handin(\%itemcount,13915 => 3)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,6012 => 1)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,3053 => 4)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,20104 => 4)){
	quest::say("Very good!  One less gnoll the people of Qeynos need to fear.  Here is your bounty as promised.");
	quest::summonitem("10070","1");
	quest::faction("10102","-1");
	quest::faction("10108","-1");
 } elsif(plugin::check_handin(\%itemcount,18800 => 1)){
        quest::say("I heard you were on your way. I have called for the state executioner. She should be on her way now. She will deal with our friend, McNeal Jocub. Thank you for your help, citizen.");
        quest::faction("9","10");
        quest::faction("33","-10");
        quest::faction("53","-10");
        quest::faction("135","10");
        quest::faction("217","10");
        quest::givecash(int(rand(10)),int(rand(10)),int(rand(10)),int(rand(10)));
   } elsif(plugin::check_handin(\%itemcount,18912=>1)){
        quest::say("So, an assassin has been sent to Qeynos!  I shall have my guards keep an eye out for any suspicious looking visitors.  As for you... you should speak with the Surefall Glade ambassador.  Ambassador Gash is staying at the Lion's Mane Inn here in South Qeynos.  Inform him that [an assassin has been sent to kill] him.  Do not let the assassin near him!");
        quest::faction("9","10");
        quest::faction("33","-10");
        quest::faction("53","-10");
        quest::faction("135","10");
        quest::faction("217","10");
       quest::givecash(int(rand(10)),int(rand(10)),int(rand(10)),int(rand(10)));
} else {
  #do all other handins first with plugin, then let it do disciplines
  plugin::try_tome_handins(\%itemcount, $class, 'Warrior');
  plugin::return_items(\%itemcount);
 }
}
#END of FILE Zone:qeynos  ID:1077 -- Captain_Tillin

Last edited by Angelox; 04-12-2008 at 07:10 AM.. Reason: Left out an author
Reply With Quote
  #2  
Old 04-05-2008, 11:11 PM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

Still to add Raffel Minnmorn and Gash Flockwalker.

Gash spawns Raffel, but I need to get /loc and stats.
Reply With Quote
  #3  
Old 04-06-2008, 07:53 AM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

Raffel is already in the db, his id is 1179. Allah reports his /loc as being +445, -35.
Reply With Quote
  #4  
Old 04-06-2008, 10:42 AM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

Hmmm, so he is. None of my queries would turn him up last night. Must be just me....
Reply With Quote
  #5  
Old 04-06-2008, 11:18 AM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

Added Draze_Slashyn ID 12181 and updated the script.
Reply With Quote
  #6  
Old 04-12-2008, 08:57 AM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

Is this one done?
Reply With Quote
  #7  
Old 04-12-2008, 11:52 AM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

Still trying to figure out what to do with the current version of Gash. He paths around through S. Qeynos and I need him to go to his room in the back of the Lion's Mane inn. He paths back to it but doesn't appear to stop. I might need a #Gash_Flockwalker.pl to spawn back there and despawn the normal one. Once I get that figured out the rest is pretty simple. And I have to update my database again.
Reply With Quote
Reply

Thread Tools
Display Modes

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 06:34 AM.


 

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 - 2026, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3