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

Quests::Custom Custom Quests here

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 04-16-2008, 09:57 PM
Valcrist
Sarnak
 
Join Date: Aug 2006
Location: NJ
Posts: 85
Default My 3.0 Epic Turnin Quest

Will post more
Code:
########Kval_the_Rich (3.0 Quest Giver / Rewarder)
####Zone:Thundercrest
########

sub EVENT_SAY
  {
if(($text=~/Hail/i) && ($ulevel <=79))
{
quest::say("Sorry young $class, I am afraid you are of no use to me!")
}
elsif(($text=~/Hail/i) && ($ulevel >=80))
  {
  quest::say("Hail, $name . Will you [assist] me with my research?");
  }
 if (($text=~/assist/i) && ($ulevel >=80))
  {
  quest::say("I've been looking for a strong $class like you that would care to assist me in my research of the godly... as in, what makes a god tick.. if you can bring me the Statue of Vyre, Ethereal Dragon Heart of your class, and Heart of the Shissar.. I will reward you with a weapon of great power I have been constructing!");
  }
}
sub EVENT_ITEM 
{ 
  if ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1118} == 1 && $class eq 'Berserker')
    {
      quest::summonitem (11664);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 &&  $itemcount{81890} == 1 && $itemcount{1079} == 1 && $class eq 'Cleric')
    {
      quest::summonitem (22998);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
   }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1319} == 1 && $class eq 'Druid')
    {
      quest::summonitem (11688);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1261} == 1 && $class eq 'Magician')
    {
      quest::summonitem (11662);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1261} == 1 && $class eq 'Necromancer')
    {
      quest::summonitem (11662);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1261} == 1 && $class eq 'Enchanter')
    {
      quest::summonitem (11662);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1119} == 1&& $class eq 'Monk,Beastlord')
    {
      quest::summonitem (2699);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890}== 1 && $itemcount{1266} == 1&& $class eq 'Rogue')
    {
      quest::summonitem (2595);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }  
  elsif ($itemcount{55985} == 1 && $itemcount{81890}== 1 && $itemcount{1266} == 1&& $class eq 'Ranger')
    {
      quest::summonitem (2595);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }  
  elsif ($itemcount{55985} == 1 && $itemcount{81890}== 1 && $itemcount{1266} == 1&& $class eq 'Bard')
    {
      quest::summonitem (2595);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }  

  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1264} == 1 && $class eq 'Shaman')
    {
      quest::summonitem (3374);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{9340} == 1 && $class eq 'Warrior')
    {
      quest::summonitem (10821);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{1096} == 1 && $class eq 'Wizard')
    {
      quest::summonitem (16576);
      quest::exp(1);
      quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{9340} == 1 && $class eq 'ShadowKnight')
    {
      quest::summonitem (10821);
            quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
    }
  elsif ($itemcount{55985} == 1 && $itemcount{81890} == 1 && $itemcount{9340} == 1 && $class eq 'Paladin')
    {
      quest::summonitem (10821);
            quest::shout2("Congratulations $name the $class has cleansed the world of the tainted gods and received their 3.0!");
      quest::ding ();
	}
}
Reply With Quote
 


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