View Single Post
  #2  
Old 02-05-2008, 01:27 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

The first post is the beef of the quest itself, the event_item. The first part of the quest is below if you wish to use the exact one I use.

Code:
#############
#Quest Name: Elemental Set to GoD Armor Set Upgrade and Teleport to Potimeb
#Author: Trevius
#NPC's Involved: Kliz Watchoo
#Items Involved: 1807, 1809, 1811, 1813 all are custom made quest drops.  
#                      All other item IDs are from PEQ for Elemental Armor Sets
#                      and GoD Armor Sets.
#############
###NPC 1
#Name: Kliz_Watchoo
#Race 469 (Newevileyemodel), Texture of 1, Size 6, gender of 2
#Location: -166.5,54,55.8 of the Nexus
#Level: 70
#Type: Quest NPC
#Loot: N/A
#############
###ItemID 1807
#Name: Magic Steel Plate Upgrade
#Stats: Magic, No drop
###
###ItemID 1809
#Name: Magic Chain Link Upgrade
#Stats: Magic, No drop
###
###ItemID 1811
#Name: Magic Leather Pattern Upgrade
#Stats: Magic, No drop
###
###ItemID 1813
#Name: Magic Cloth Linen Upgrade
#Stats: Magic, No drop
###

sub EVENT_SAY
{
if ($text =~/Hail/i)
 {
quest::say ("Ahh yes, $name.  Time is of the essence.  I watch the seconds tick by with every waking breath I can spare.  You might say it is an obsession of mine to watch things.  But, time in particular fascinates me.  Would you like to hear [more]?");
 }
if ($text =~/more/i)
 {
quest::say ("I have studied the subject of time for years and yet there is so much to learn.  As of now, my research has proven that time is a dimension of it's own, which you may even call the Plane of Time.  Would you like to know about the [plane]?");
 }
 if ($text =~/plane/i)
 {
quest::say ("The plane of [time] is not for the faint of heart.  It is only recommended for the most experienced of travelers.  I think 70 seasons should do it.  I can send you to the [time] plane now if you wish.  I can also [upgrade] your armor if you gather the right materials.");
 }
 if ($text =~/upgrade/i)
 {
quest::say ("It takes great skill and precision to upgrade armor, and no one is more precise than myself.  Hand me an armor set piece from Delve along with a [material] upgrade and I will begin working.");
 }
 if ($text =~/material/i)
 {
quest::say ("Upgrade material is no easy thing to come by.  You will need to gather an Essence of Magic and a Magic Material Upgrade that suites your class type from the Plane of Time.  And then combine the 2 items in a forge. Do you [understand] that?");
 }
 if ($text =~/understand/i)
 {
quest::say ("If you want to see exactly what you are looking for, go to the forge and search the recipes for the word [upgrade] and you will see examples of what you require.");
 }
{
if (($text=~/time/i)&&($ulevel >= 65))
 {
quest::say ("By the second hand, may your journey begin!");
quest::emote ("swings a pocket watch before your eyes as if to hypnotize you.");
quest::movepc(223, -54,581,494);
 }
 elsif (($text=~/time/i)&&($ulevel <= 64))
 {
quest::say ("I don't think you have what it takes to handle that place just yet.  Come see me when you have gained more experience.");
 }
}
}
Simply put, this is a quest for all classes to upgrade Elemental Armor to GoD armor. It has all armor pieces from both sets with accurate itemids for PEQ database.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote