View Single Post
  #1  
Old 02-17-2008, 05:39 AM
Dramier
Fire Beetle
 
Join Date: Jul 2006
Posts: 9
Default Orc Slayer DEF WAR Armor Quests Neriak Commons - WIP

I've been working on adding in the quests for Dark Elf Warriors Orc Slayer armor in Neriak Commons. I've got the whole quest working except for the Orc Slayer Greaves. I could not find the "Tattered Leggings Pattern" anywhere in the database, so currently that part does not work. I also didn't add in the silk thread links yet, as I'm still researching them. Everything else works, and is identical to the quests posted on Allakhazam's under Jarrex N'Ryt and Issva H'Rugla.

Note that this is a WORK IN PROGRESS, as the leggings do not work and the silk thread references have not been added. So feel free to complete it or add to it, particularly if you find the Leggings Pattern. Enjoy!

This quest should replace Issva H'Rugla's entire quest list:


sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("If you're looking for chit chat you can bugger off. I'm here to sell supplies not company."); }
if($text=~/materials/i){
quest::say("Many species of dangerous creatures, the walking dead, and invading Deathfist Orcs inhabit the Nektulos Forest. You must defeat these creatures and undead in order to obtain the materials. The materials you seek depend on the piece of armor you desire. Do you desire to craft [gauntlets], [boots], a [bracer], a [helm], [greaves], [vambraces], or a [breastplate]? ");
}

if($text=~/gauntlets/i){

quest::say("To craft Orc Slayer Gauntlets you require two [silk thread], a cracked pyre beetle carapace, and two orc finger bones. Once you have the necessary components combine them in your Mail Assembly Kit with this Tattered Glove Pattern.");
quest::summonitem("19559");
}
if($text=~/boots/i){

quest::say("To craft Orc Slayer Boots you require two [silk thread], two cracked pyre beetle carapaces, and two orc foot bones. Once you have the necessary components combine them in your Mail Assembly Kit with this Tattered Boot Pattern.");
quest::summonitem("19561");
}
if($text=~/bracer/i){

quest::say("To craft an Orc Slayer Bracer you require a [silk thread], a cracked pyre beetle carapace, and an orc ulna bone. Once you have the necessary components combine them in your Bone Scale Kit with this Tattered Bracer Pattern.");
quest::summonitem("48016");
}

if($text=~/helm/i){

quest::say("To craft an Orc Slayer Helm you require two [silk thread], a cracked pyre beetle carapace, and an orc skull. Once you have the necessary components combine them in your Mail Assembly Kit with this Tattered Cap Pattern.");
quest::summonitem("19555");
}

if($text=~/greaves/i){

quest::say("To craft Orc Slayer Greaves you require three [silk thread], a pyre beetle carapace, two orc tibia, and an orc pelvis bone. Once you have the necessary components combine them in your Mail Assembly Kit with this Tattered Leggings Pattern.");
#quest::summonitem("");
}

if($text=~/vambraces/i){

quest::say("To craft Ord Slayer Vambraces you require two [silk thread], a pyre beetle carapace, and two orc humerus bones. Once you have the necessary components combine them in your Mail Assembly Kit with this Tattered Sleeves Pattern.");
quest::summonitem("19557");
}

if($text=~/breastplate/i){

quest::say("To craft an Orc Slayer Breastplate you require four [silk thread], a pristine pyre beetle carapace, an orc sternum, and an orc ribcage. Once you have the necessary components combine them in your Mail Assembly Kit with this Tattered Tunic Pattern.");
quest::summonitem("19556");
}
}





#turn-in the missive to initiate first part of quest
sub EVENT_ITEM
{
if ($itemcount{19584} == 0)
{
quest::say("So you are one of Jarrex's new recruits. You are to assist in the construction of the armor you will don as a new Warrior of the Indigo Brotherhood. I have assembled a kit that is used in the crafting of Orc Slayer Mail. You must travel beyond Neriak into the Nektulos Forest for the [materials] that compose the armor.");
quest::summonitem("17124");
}
}

#End of FILE Zone:neriakb ID:41064 -- Issva_H`Rugla Edited by: Dramier
Reply With Quote