EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Quests::Completed (https://www.eqemulator.org/forums/forumdisplay.php?f=633)
-   -   Orc Slayer DEF WAR Armor Quests Neriak Commons - WIP (https://www.eqemulator.org/forums/showthread.php?t=24417)

Dramier 02-17-2008 05:39 AM

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

AndMetal 02-17-2008 06:08 AM

Out of curiosity (I haven't looked), are the recipes already in the database for the combines?

Dramier 02-17-2008 06:15 AM

Yes, they appear to be... I'm currently testing the quests to make sure. Actually collecting the ingredients to make sure it works. :)

But I looked the database, and the items are all listed in the recipes table, so I'm just checking now to see if they work.

AndMetal 02-17-2008 07:07 AM

I have a little more time than I originally thought, so I had a chance to look a little more.

There's quite a few recipes that use the container (76 according to the tradeskill_recipe_entries table):

SELECT DISTINCT(tradeskill_recipe_entries.recipe_id), tradeskill_recipe.name FROM tradeskill_recipe_entries LEFT JOIN tradeskill_recipe ON tradeskill_recipe_entries.recipe_id = tradeskill_recipe.id WHERE item_id = '17124' ORDER BY recipe_id ASC
Code:

recipe_id        name
8389                ashen bone mail bracer
8390                ashen bone mail coif
8391                ashen bone mail leggings
8392                ashen bone mail sleeves
8393                ashen bone mail gloves
8394                ashen bone mail tunic
8564                moss toe boots
8565                moss toe bracer
8566                moss toe cap
8567                moss toe gloves
8568                moss toe leggings
8569                moss toe sleeves
8570                moss toe tunic
8621                armguards of the pestilence priest
8622                boots of the pestilence priest
8623                bracer of the pestilence priest
8624                gauntlets of the pestilence priest
8625                greaves of the pestilence priest
8626                helm of the pestilence priest
8627                pestilence priest breastplate
8923                Sylvan Initiate Boots
8925                Sylvan Initiate Bracer
8927                Sylvan Initiate Breastplate
8929                Sylvan Initiate Gauntlets
8931                Sylvan Initiate Greaves
8933                Sylvan Initiate Helm
8935                Sylvan Initiate Vambraces
9145                Orc Slayer Boots
9146                Orc Slayer Bracer
9147                Orc Slayer Breastplate
9148                Orc Slayer Gauntlets
9149                Orc Slayer Greaves
9150                Orc Slayer Vambraces
9151                Orc Slayer Helm
9265                Emerald Novice Helm
9267                Emerald Novice Boots
9268                Emerald Novice Bracers
9269                Emerald Novice Breastplate
9270                Emerald Novice Gauntlets
9271                Emerald Novice Greaves
9272                Emerald Novice Vambraces
9535                Thorn Mail Cap
9536                Thorn Mail Bracer
9537                Thorn Mail Gloves
9538                Thorn Mail Boots
9539                Thorn Mail Sleeves
9540                Thorn Mail Leggings
9541                Thorn Mail Tunic
9715                Templar of Fright Boots
9716                Templar of Fright Bracer
9717                Templar of Fright Breastplate
9718                Templar of Fright Gauntlets
9719                Templar of Fright Greaves
9720                Templar of Fright Helm
9722                Templar of Fright Armguards
9725                Felwithe Defenders Gauntlets
9726                Felwithe Defenders Boots
9727                Felwithe Defenders Bracer
9728                Felwithe Defenders Helm
9729                Felwithe Defenders Greaves
9730                Felwithe Defenders Armguards
9731                Felwithe Defenders Breastplate
9734                Plague Knight Boots
9735                Plague Knight Bracer
9736                Plague Knight Breastplate
9737                Plague Knight Gauntlets
9738                Plague Knight Greaves
9739                Plague Knight Helm
9740                Plague Knight Vambraces
9749                Bone Mail Boots
9750                Bone Mail Bracer
9751                Bone Mail Helm
9752                Bone Mail Gauntlets
9753                Bone Mail Greaves
9754                Bone Mail Vambraces
9755                Bone Mail Breastplate

So, it looks like recipe IDs 9145 through 9151 are the orc slayers. So I guess that answers my original question, and the combines look to be in the DB.

Looking at the Orc Slayer Greaves recipe (recipe ID 9149), it looks like the pattern is "Tattered Pant Pattern", which is item # 19560 in the PEQ DB:
Code:

id        recipe_id        item_id        successcount        failcount        componentcount        iscontainer

114129        9149        17124        0        0        0        1
114130        9149        16486        0        0        3        0
114131        9149        16176        0        0        1        0
114132        9149        16186        0        0        2        0
114133        9149        16191        0        0        1        0
114134        9149        19560        0        0        1        0
114135        9149        19590        1        0        0        0


cavedude 02-17-2008 07:13 AM

Orc Slayer already is in ;)

http://www.projecteq.net/quests/quests.php?z=neriakb

Dramier 02-17-2008 07:16 AM

Oh, well that's odd. The server I have installed doesn't have them.

?

Hrmmm... heh.... *runs off to check quests version*

Dramier 02-17-2008 07:23 AM

Oh well, you can delete this thread then. Somehow I missed that file installing the quests, so I recopied everything over and got back up to date.

However, I noticed the other quest I posted, Bone Mail Shadow Knight armor isn't listed/updated in the current quests. SO that one I guess can stay?

cavedude 02-17-2008 07:41 AM

Bone Mail is in, I did it myself in fact and tested it with my DEF SK. That toon was the only reason why I wrote it.

http://www.projecteq.net/quests/quests.php?z=neriakc


All times are GMT -4. The time now is 05:17 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.