|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Archive::Quests Archive area for Quests's posts that were moved here after an inactivity period of 90 days. |
|
|
|
08-27-2004, 04:15 PM
|
Hill Giant
|
|
Join Date: Dec 2003
Posts: 104
|
|
Ornate/Elemental Armor Quest
I'm trying to implement a large number of EQLive quests for a legit, custom content server that still operates off the base zones. Here's the Quest for Elemental / Ornate Armors...just in case anyone wants it =)
Code:
#Zone - Plane of Tranquility (203, Potranquility)
#Mob - Bor Wharhammer (Dwarf, Level 60)
#Quest - Ornate/Elemental Armor
sub EVENT_SAY
{
if($text=~ /Hail/i)
{
quest::Say("Greetin's t'ye $name! Isn't the area 'round 'ere so nice
an' quiet? Suc a departure form me old days; slaving o'er the forge t'create masterpieces!
T'be 'onest, at times I do miss the old forge, but after I created me finest breastplate, it
seemed as if nothing else I made could ever live up t'it. So i left me home to'wander the
land an' see what I could learn o'the world. I 'ave learned quite a bit from the elders 'ere 'an
the skilled craftspeople in New Tanaan. I 'ave even devised a type o'emblem that will
impart the magic o'tranquility into the user t'create planar armors from pieces o'energy
fround in the planes.");
}
if($text=~ /emblem/i)
{
quest::say("Well, the emblems dinnae be easy t'craft but I will gladly
give ye one fer the price of 500 platinum pieces. They allow a planes traveler with no
craftin' skills t'create many fine pieces o'planar armor in a special, magical kit I also 'ave
an' will throw in with the price. The kit acts as a focal point fer the wild magic energy o'the
Planes. Ye will only be able t'use each emblem an' kit once when ye create the piece,
'owever I dinnae be goin' anywhere soon! Just venture back when ye need another an'
dinnae ferget the coin!")
}
if($text=~ /planar armors/i)
{
quest::say("From me understanding, the very fabric o'the planes is so
strong out 'ere, it can be found in raw form the deeper ye traverse. Anyone who ventures
far into the planes finds that they must wear excellent armor t'protect them from the savage
environment. The very essence of planar energy can be focused into a form that can fit our
shape. As ye progress deeper into the planes, ye will find many molds an' patterns with
which t'base a set o'armor. If ye want t'know 'ow t'craft the various types o'armor, I can
instruct ye about plate, chain, leather an' silk.")
}
if($text=~ /chain/i)
{
quest::say("Ahhhhh $name! Chain armors, while not as sturdy as
plate, provide so much more mobility if constructed properly. T'construct a piece o'chain
armor, ye need t'combine a chain pattern, an emblem, various amounts of ethereal metal
rings an' use one o'those crafty Tanaan smithin' 'ammers all within a furnace touched by
Ro. Ethereal metal ring construction is another matter. Ye will need to combine a brick
o'ethereal energy, an ethereal temper an' a file within a Tanaan forge. I would seek a
skilled craftsperson t'make the rings fer ye; the emblem will enable ye t'craft the final armor
piece no matter what yer skill be.");
}
if($text=~ /plate/i)
{
quest::say("Ahhhhh $name! The fine rigid armor that can stop a shaft
from piercing yer heart! Too bad it be so cumbersome an' difficult t'move about in. To
construct a piece o'plate armor, ye need t'combine a plate mold, an emblem, various
amounts o'sheet metal an' use one o'those crafty Tanaan smithin' 'ammers all within a
furnace touched by Ro. Ethereal metal sheet construction is another matter. Ye will need
t'combine two bricks o'ethereal energy, an ethereal temper an' a Tanaan smithin' 'ammer
within a Tanaan forge. I would seek a skilled craftsperson t'make the metal sheets fer ye;
the emblem will enable ye t'craft the final armor piece no matter what yer skill be.");
}
if($text=~ /silk/i)
{
quest::say("'Har! It be quite funny that we be referin' t'silk as armor, fer
the amount o'protection it provides be miniscule at best. The planar armor made from
strands o'ether can still be quite useful fer its magical properties, 'owever. Ye will need
t'take up a Tanaan embroidery needle, a pattern, an emblem an' various amounts o'ether
silk swatches t'create a piece. Craft it all within a sewing kit boilin' with magical energy");
}
if($text=~ /swatches/i)
{
quest::say("T'make a swatch, ye need t'combine two strands o'ether
along with a curing agent in a Tanaan loom. Ye will need t'seek a skilled brew master
t'make the curing agent fer ye. Just 'ave them create it by using two celestial essences,
soda an' paeala sap");
}
if($text=~ /leather/i)
{
quest::say("Leather armor provides little protection due t'the make-up
o'the materials. We shall do our best, 'owever, t'see ye make a quality piece. T'do so, ye
must combine a pattern, an emblem, various pieces o'cured ethereal energy an' a Tanaan
embroidery needle all within a sewing kit boilin' with magical energy. The cured energy
may be problematic fer an unskilled craftsman, 'owever. Just sew two silk ethereal
swatches together using a Tanaan embroidery needle within a Tanaan loom. I can just
imagine yer next question t'be about swatches, aye?");
}
}
sub EVENT_ITEM
{
if($platinum == 500)
{
if($class == Warrior || $class == Paladin || $class == Shadowknight ||
$class == Cleric || $class == Bard || $class == Berserker || $class == Ranger || $class ==
Shaman || $class == Rogue)
{
quest::say("Wonderful! This coin will go towards me fines
with the Myrist library. They charge quite a bit fer overdue volumes! 'ere be yer emblem an'
a kit in which ye may craft planar armor. The kit only 'as enough magical energy t'craft one
piece before the energies expire, be sure ye understand. May the armor ye make with it
provide ye with much protection.");
quest::summonitem(MysticalFurnaceofRo);
}
if($class == Monk || $class == Beastlord || $class == Druid || $class
== Wizard || $class == Enchanter || $class == Magician || $class = Necromancer)
{
quest::say("Wonderful! This coin will go towards me fines
with the Myrist library. They charge quite a bit fer overdue volumes! 'ere be yer emblem an'
a kit in which ye may craft planar armor. The kit only 'as enough magical energy t'craft one
piece before the energies expire, be sure ye understand. May the armor ye make with it
provide ye with much protection.");
quest::summointem(DruzzilMysticalSewingKit);
}
if($class == Warrior)
{
quest::summonitem(WarriorEmblem);
}
if($class == Paladin)
{
quest::summonitem(PaladinEmblem);
}
if($class == Shadowknight)
{
quest::summonitem(ShadowKnightEmblem);
}
if($class == Cleric)
{
quest::summonitem(ClericEmblem);
}
if($class == Bard)
{
quest::summonitem(BardEmblem);
}
if($class == Berserker)
{
quest::summonitem(BerserkerEmblem);
}
if($class == Ranger)
{
quest:summonitem(RangerEmblem);
}
if($class == Rogue)
{
quest::summonitem(RogueEmblem);
}
if($class == Shaman)
{
quest::summonitem(ShamanEmblem);
}
if($class == Monk)
{
quest::summonitem(MonkEmblem);
}
if($class == Beastlord)
{
quest::summonitem(BeastlordEmblem);
}
if($class == Druid)
{
quest::summonitem(DruidEmblem);
}
if($class == Enchanter)
{
quest::summonitem(EnchanterEmblem);
}
if($class == Magician)
{
quest::summonitem(MagicianEmblem);
}
if($class == Wizard)
{
quest::summonitem(WizardEmblem);
}
if($class == Necromancer)
{
quest::summonitem(NecromancerEmblem);
}
}
}
Replace all the Words in the summonitem blocks with the item IDS of your items...if you hafta make them and such.
As far as i know there are no bugs in that, but lemme know if you find one =).
__________________
Server-OP and host of Lord of the Rings [Legit-Custom] Server
|
|
|
|
08-27-2004, 04:32 PM
|
Demi-God
|
|
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
|
|
The problem with that quest though is that the sewing kit doesnt disappear on combine like it does on live. Personally I'd have it so they just hand the necessary items to the NPC -> and it returns the item. Just a thought.
Nice job on the quest, though =))
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|
|
|
|
08-27-2004, 05:41 PM
|
Hill Giant
|
|
Join Date: Dec 2003
Posts: 104
|
|
Okie...Good idea Cisyouc I've written the code (DAMN it took a long time...heh) Anyways here we go...
Full Quest File :
Code:
#Zone - Plane of Tranquility (203, Potranquility)
#Mob - Bor Wharhammer (Dwarf, Level 60)
#Quest - Ornate/Elemental Armor
sub EVENT_SAY
{
if($text=~ /Hail/i)
{
quest::Say("Greetin's t'ye $name! Isn't the area 'round 'ere so nice an' quiet? Suc a departure form me old days; slaving o'er the forge t'create masterpieces! T'be 'onest, at times I do miss the old forge, but after I created me finest breastplate, it seemed as if nothing else I made could ever live up t'it. So i left me home to'wander the land an' see what I could learn o'the world. I 'ave learned quite a bit from the elders 'ere 'an the skilled craftspeople in New Tanaan. I 'ave even devised a type o'emblem that will impart the magic o'tranquility into the user t'create planar armors from pieces o'energy fround in the planes.");
}
if($text=~ /emblem/i)
{
quest::say("Well, the emblems dinnae be easy t'craft but I will gladly give ye one fer the price of 500 platinum pieces. They allow a planes traveler with no craftin' skills t'create many fine pieces o'planar armor in a special, magical kit I also 'ave an' will throw in with the price. The kit acts as a focal point fer the wild magic energy o'the Planes. Ye will only be able t'use each emblem an' kit once when ye create the piece, 'owever I dinnae be goin' anywhere soon! Just venture back when ye need another an' dinnae ferget the coin!")
}
if($text=~ /planar armors/i)
{
quest::say("From me understanding, the very fabric o'the planes is so strong out 'ere, it can be found in raw form the deeper ye traverse. Anyone who ventures far into the planes finds that they must wear excellent armor t'protect them from the savage environment. The very essence of planar energy can be focused into a form that can fit our shape. As ye progress deeper into the planes, ye will find many molds an' patterns with which t'base a set o'armor. If ye want t'know 'ow t'craft the various types o'armor, I can instruct ye about plate, chain, leather an' silk.")
}
if($text=~ /chain/i)
{
quest::say("Ahhhhh $name! Chain armors, while not as sturdy as plate, provide so much more mobility if constructed properly. T'construct a piece o'chain armor, ye need t'take a chain pattern, an emblem, various amounts of ethereal metal rings an' use one o'those crafty Tanaan smithin' 'ammers 'an give em to me, and I'll make you yer armor!. Ethereal metal ring construction is another matter. Ye will need to combine a brick o'ethereal energy, an ethereal temper an' a file within a Tanaan forge.");
}
if($text=~ /plate/i)
{
quest::say("Ahhhhh $name! The fine rigid armor that can stop a shaft from piercing yer heart! Too bad it be so cumbersome an' difficult t'move about in. To construct a piece o'plate armor, ye need t'take a plate mold, an emblem, various amounts o'sheet metal an' use one o'those crafty Tanaan smithin' 'ammers 'an give em to me, 'an I'll make you yer armor! Ethereal metal sheet construction is another matter. Ye will need t'combine two bricks o'ethereal energy, an ethereal temper an' a Tanaan smithin' 'ammer within a Tanaan forge.");
}
if($text=~ /silk/i)
{
quest::say("'Har! It be quite funny that we be referin' t'silk as armor, fer the amount o'protection it provides be miniscule at best. The planar armor made from strands o'ether can still be quite useful fer its magical properties, 'owever. Ye will need t'take up a Tanaan embroidery needle, a pattern, an emblem an' various amounts o'ether silk swatches t'create a piece. Give em all t'me and I'll make you yer armor!");
}
if($text=~ /swatches/i)
{
quest::say("T'make a swatch, ye need t'combine two strands o'ether along with a curing agent in a Tanaan loom. Ye will need t'seek a skilled brew master t'make the curing agent fer ye. Just 'ave them create it by using two celestial essences, soda an' paeala sap");
}
if($text=~ /leather/i)
{
quest::say("Leather armor provides little protection due t'the make-up o'the materials. We shall do our best, 'owever, t'see ye make a quality piece. T'do so, ye must take a pattern, an emblem, various pieces o'cured ethereal energy an' a Tanaan embroidery needle, give em all to me and I'll make you yer armor! The cured energy may be problematic fer an unskilled craftsman, 'owever. Just sew two silk ethereal swatches together using a Tanaan embroidery needle within a Tanaan loom. I can just imagine yer next question t'be about swatches, aye?");
}
}
sub EVENT_ITEM
{
if($platinum == 500)
{
quest::say("Wonderful! This coin will go towards me fines with the Myrist library. They charge quite a bit fer overdue volumes! 'ere be yer emblem. May the armor ye make with it provide ye with much protection.");
if($class == Warrior)
{
quest::summonitem(WarriorEmblem);
}
if($class == Paladin)
{
quest::summonitem(PaladinEmblem);
}
if($class == Shadowknight)
{
quest::summonitem(ShadowKnightEmblem);
}
if($class == Cleric)
{
quest::summonitem(ClericEmblem);
}
if($class == Bard)
{
quest::summonitem(BardEmblem);
}
if($class == Berserker)
{
quest::summonitem(BerserkerEmblem);
}
if($class == Ranger)
{
quest:summonitem(RangerEmblem);
}
if($class == Rogue)
{
quest::summonitem(RogueEmblem);
}
if($class == Shaman)
{
quest::summonitem(ShamanEmblem);
}
if($class == Monk)
{
quest::summonitem(MonkEmblem);
}
if($class == Beastlord)
{
quest::summonitem(BeastlordEmblem);
}
if($class == Druid)
{
quest::summonitem(DruidEmblem);
}
if($class == Enchanter)
{
quest::summonitem(EnchanterEmblem);
}
if($class == Magician)
{
quest::summonitem(MagicianEmblem);
}
if($class == Wizard)
{
quest::summonitem(WizardEmblem);
}
if($class == Necromancer)
{
quest::summonitem(NecromancerEmblem);
}
}
#Warrior Elemental
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Boot Mold} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the War God.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexBoots);
}
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 1 && $itemcount{Elemental Bracer Mold} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the War God.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexBracer);
}
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Gauntlet Mold} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the War God.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexGauntlets);
}
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Greaves Mold} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the War God.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexLegs);
}
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Breastplate Mold} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the War God.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexBreastplate);
}
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Helm Mold} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the War God.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexHat);
}
if($itemcount{WarriorEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Vambraces Mold} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the War God.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RaexArms);
}
#Shadow Knight Elemental
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Boot Mold} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Plaguebringer.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerBoots);
}
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 1 && $itemcount{Elemental Bracer Mold} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Plaguebringer.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerBracer);
}
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Gauntlet Mold} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Plaguebringer.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerGauntlets);
}
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Greaves Mold} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Plaguebringer.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerLegs);
}
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Breastplate Mold} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Plaguebringer.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerBreastplate);
}
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Helm Mold} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Plaguebringer.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerHat);
}
if($itemcount{ShadowknightEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Vambraces Mold} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Plaguebringer.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PlaguebringerArms);
}
#Cleric Elemental
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Boot Mold} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Divine Healer.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalBoots);
}
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 1 && $itemcount{Elemental Bracer Mold} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Divine Healer.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalBracer);
}
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Gauntlet Mold} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Divine Healer.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalGauntlets);
}
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Greaves Mold} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Divine Healer.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalLegs);
}
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Breastplate Mold} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Divine Healer.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalBreastplate);
}
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Helm Mold} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Divine Healer.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalHat);
}
if($itemcount{ClericEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Vambraces Mold} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Divine Healer.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ClericElementalArms);
}
#Paladin Elemental
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Boot Mold} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Divine Protector.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalBoots);
}
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 1 && $itemcount{Elemental Bracer Mold} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Divine Protector.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalBracer);
}
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Gauntlet Mold} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Divine Protector.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalGauntlets);
}
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Greaves Mold} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Divine Protector.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalLegs);
}
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Breastplate Mold} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Divine Protector.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalBreastplate);
}
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Helm Mold} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Divine Protector.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalHat);
}
if($itemcount{PaladinEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Vambraces Mold} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Divine Protector.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(PaladinElementalArms);
}
#Bard Elemental
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Boot Mold} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Warsong.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalBoots);
}
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 1 && $itemcount{Elemental Bracer Mold} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Warsong.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalBracer);
}
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Gauntlet Mold} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Warsong.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalGauntlets);
}
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Greaves Mold} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Warsong.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalLegs);
}
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 3 && $itemcount{Elemental Breastplate Mold} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Warsong.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalBreastplate);
}
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Helm Mold} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Warsong.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalHat);
}
if($itemcount{BardEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalSheet} = 2 && $itemcount{Elemental Vambraces Mold} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Warsong.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BardElementalArms);
}
#Berserker Elemental
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalBoots);
}
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 1 && $itemcount{Elemental Chain Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalBracer);
}
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalGauntlets);
}
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalLegs);
}
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalBreastplate);
}
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalHat);
}
if($itemcount{BerserkerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Fury of the Ages.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BerserkerElementalArms);
}
#Ranger Elemental
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalBoots);
}
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 1 && $itemcount{Elemental Chain Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalBracer);
}
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalGauntlets);
}
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalLegs);
}
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalBreastplate);
}
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalHat);
}
if($itemcount{RangerEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Precision of the Gods.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RangerElementalArms);
}
#Shaman Elemental
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalBoots);
}
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 1 && $itemcount{Elemental Chain Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalBracer);
}
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalGauntlets);
}
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalLegs);
}
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalBreastplate);
}
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalHat);
}
if($itemcount{ShamanEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Blessing of the Wilds.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(ShamanElementalArms);
}
#Rogue Elemental
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Theif Masters.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalBoots);
}
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 1 && $itemcount{Elemental Chain Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Theif Masters.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalBracer);
}
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Theif Masters.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalGauntlets);
}
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Theif Masters.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalLegs);
}
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 3 && $itemcount{Elemental Chain Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Theif Masters.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalBreastplate);
}
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Theif Masters.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalHat);
}
if($itemcount{RogueEmblem} == 1 && $itemcount{TanaanSmithingHammer} == 1 && $itemcount{EtherealMetalRings} = 2 && $itemcount{Elemental Chain Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Theif Masters.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(RogueElementalArms);
}
#Monk Elemental
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalBoots);
}
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Leather Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalBracer);
}
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalGauntlets);
}
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Leather Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalLegs);
}
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Leather Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalBreastplate);
}
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalHat);
}
if($itemcount{MonkEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the The Body's Spirit.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MonkElementalArms);
}
#Beastlord Elemental
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the The Khati Sha.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalBoots);
}
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Leather Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the The Khati Sha.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalBracer);
}
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the The Khati Sha.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalGauntlets);
}
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Leather Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the The Khati Sha.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalLegs);
}
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Leather Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the The Khati Sha.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalBreastplate);
}
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the The Khati Sha.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalHat);
}
if($itemcount{BeastlordEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the The Khati Sha.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(BeastlordElementalArms);
}
#Druid Elemental
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Fury of the Wild.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalBoots);
}
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Leather Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Fury of the Wild.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalBracer);
}
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Fury of the Wild.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalGauntlets);
}
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Leather Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Fury of the Wild.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalLegs);
}
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Leather Breastplate Pattern} == 1)
{
quest::emote("Fashions a marvelous Breastplate, glowing with the power of the Fury of the Wild.");
quest::say("That should do it! This here Breastplate will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalBreastplate);
}
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Fury of the Wild.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalHat);
}
if($itemcount{DruidEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Leather Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Power of the Elements.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(DruidElementalArms);
}
#Enchanter Elemental
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalBoots);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Silk Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalBracer);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalGauntlets);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalLegs);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Robe Pattern} == 1)
{
quest::emote("Fashions a marvelous Robe, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! This here Robe will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalRobe);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalHat);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Powerf of Mind Control.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalArms);
}
#Magician Elemental
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Power of the Elements.");
__________________
Server-OP and host of Lord of the Rings [Legit-Custom] Server
|
|
|
|
|
|
|
08-27-2004, 05:44 PM
|
Hill Giant
|
|
Join Date: Dec 2003
Posts: 104
|
|
Eep...aparently a max to how much you can post...anyway, here's rest of file:
Code:
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalBoots);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Silk Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Powers of Mind Control.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalBracer);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Powers of Mind Control.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalGauntlets);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Powers of Mind Control.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalLegs);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Robe Pattern} == 1)
{
quest::emote("Fashions a marvelous Robe, glowing with the power of the Powers of Mind Control.");
quest::say("That should do it! This here Robe will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalRobe);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Powers of Mind Control.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalHat);
}
if($itemcount{EnchanterEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Powers of Mind Control.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(EnchanterElementalArms);
}
#Magician Elemental
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Power of the Elements.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalBoots);
}
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Silk Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Power of the Elements.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalBracer);
}
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Power of the Elements.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalGauntlets);
}
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Power of the Elements.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalLegs);
}
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Robe Pattern} == 1)
{
quest::emote("Fashions a marvelous Robe, glowing with the power of the Power of the Elements.");
quest::say("That should do it! This here Robe will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalRobe);
}
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Power of the Elements.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalHat);
}
if($itemcount{MagicianEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Power of the Elements.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(MagicianElementalArms);
}
#Wizard Elemental
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalBoots);
}
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Silk Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalBracer);
}
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalGauntlets);
}
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalLegs);
}
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Robe Pattern} == 1)
{
quest::emote("Fashions a marvelous Robe, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! This here Robe will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalRobe);
}
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalHat);
}
if($itemcount{WizardEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Fury of Al`Kabor.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(WizardElementalArms);
}
#Necromancer Elemental
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Boot Pattern} == 1)
{
quest::emote("Fashions a set of Boots, glowing with the power of the Powers of Death.");
quest::say("That should do it! These Boots will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalBoots);
}
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 1 && $itemcount{Elemental Silk Bracer Pattern} == 1)
{
quest::emote("Fashions a single Bracer, glowing with the power of the Powers of Death.");
quest::say("That should do it! This here bracer will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalBracer);
}
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Gauntlet Pattern} == 1)
{
quest::emote("Fashions a set of Gauntlets, glowing with the power of the Powers of Death.");
quest::say("That should do it! These here Gauntlets will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalGauntlets);
}
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Pant Pattern} == 1)
{
quest::emote("Fashions a set of Greaves, glowing with the power of the Powers of Death.");
quest::say("That should do it! These Greaves will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalLegs);
}
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 3 && $itemcount{Elemental Silk Robe Pattern} == 1)
{
quest::emote("Fashions a marvelous Robe, glowing with the power of the Powers of Death.");
quest::say("That should do it! This here Robe will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalRobe);
}
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Helm Pattern} == 1)
{
quest::emote("Fashions a Spiked Helm, glowing with the power of the Powers of Death.");
quest::say("That should do it! This Helm will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalHat);
}
if($itemcount{NecromancerEmblem} == 1 && $itemcount{TanaanEmboideryNeedle} == 1 && $itemcount{EtherealSilkSwatch} = 2 && $itemcount{Elemental Silk Vambraces Pattern} == 1)
{
quest::emote("Fashions a set of Vambraces, glowing with the power of the Powers of Death.");
quest::say("That should do it! These here Armguards will provide you with protection for agest t'come. Hand me another 500 platinum if'n you want another Emblem.");
quest::summonitem(NecromancerElementalArms);
}
}
To add Ornate to this: simply copy each class block, and replace all instances of ELEMENTAL with ORNATE!! heh...Might require a bunch of item lookups (Where i have words in oppose to actual Item IDS (Because yours may be different than mine).
I added in some flavor text ...i guess thats what you can call it in the new parts, and edited the top parts. Yea yea i realize some of the text that it says doesnt really make sense (Spiked helm for silk...etc), but I was lazy and didn't bother editing that, but thats the fun part for you to do!!!! Have fun, and let me know if you have any ideas/suggestions/bug reports.
__________________
Server-OP and host of Lord of the Rings [Legit-Custom] Server
|
|
|
|
08-27-2004, 05:52 PM
|
Demi-God
|
|
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
|
|
EEEP! You have $itemcount listed for 5 items!!
You can only turn 4 things into Bor Warhammer
Suggest: Remove the mystical furnace/sewing kit completely?
Very nice job on the quest.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|
08-27-2004, 07:29 PM
|
Discordant
|
|
Join Date: Feb 2003
Location: Wish I knew.
Posts: 251
|
|
Wow, great job on this. Question... how long did it take? :lol:
__________________
* KingMort has left #eqemu
<Richardo> KingDrama has left #EQEMU
<Richardo> the rule my pants!
|
08-28-2004, 04:01 AM
|
Hill Giant
|
|
Join Date: Dec 2003
Posts: 104
|
|
Well i originally eliminated the forge/sewing kit after your first post Cisyouc, the only 4 things you turn in are - the ebroidery needle/smithing hammer, your emblem, the mold/pattern, and 1-3 ethereal swatches/rings/sheets.
Hrm..question,
Say you turn in a stack of something, if you do an $itemcount{item you turned in} will it return the value of 20 or the value of 1?
and scorp - bout 2 hours :X
tks for your feedback
__________________
Server-OP and host of Lord of the Rings [Legit-Custom] Server
|
08-28-2004, 04:37 AM
|
Discordant
|
|
Join Date: Feb 2003
Location: Wish I knew.
Posts: 251
|
|
Wow.... Id have to break that up or something, couldnt sit there for 2 hours.
__________________
* KingMort has left #eqemu
<Richardo> KingDrama has left #EQEMU
<Richardo> the rule my pants!
|
09-04-2004, 12:01 AM
|
Fire Beetle
|
|
Join Date: Apr 2003
Posts: 4
|
|
The trick to it is just like most NPCs on live, lets say you are doing the spiderling silk quest in Glooming Deep Tutorial for burlap armor. sometimes people dont have enough spiderling silks to recieve the armor so they accidently hand in too many or too little. what happens is you end up with the items turned into the npc and it still registers them. so someone walking by could hand them them the remaining required pieces and recieve the item. Its like an MQ really. not everything reqiures all four items to be turned in at once. I would say program it to make sure he dosent eat items that are being turned in without giving out the item. or delete the hammer from the quest. all possible options
Also it would probibly show one.. you cant hand stacks of items to live npcs. but the fact remains that this isnt live lol
|
09-05-2004, 08:13 PM
|
Dragon
|
|
Join Date: Jun 2002
Posts: 776
|
|
Curious if using the $class var works for anyone other than within functions? Using it in an if() statement for me doesn't work.
Like for example:
if($class == Warrior){
quest::blahblah();
}
|
09-05-2004, 08:17 PM
|
Discordant
|
|
Join Date: May 2004
Location: The DeathStar of David
Posts: 337
|
|
Warrior is a String and $class returns a string, thus you need quotes.
There was a debate about wheter to use == or eq to check equality, and smogo finally came forth and said == works for it. so i won't disagree with him =/
try out this.
Code:
if($class == "Warrior")
{
quest::say("Your a Warrior!");
}
__________________
Mess with the Jews, and we will take all your money
Grunties Rule
And with that... I end
Any Other Questions, please refer to the Following:
http://iliilllli1.netfirms.com
|
|
|
|
09-05-2004, 08:28 PM
|
Dragon
|
|
Join Date: Jun 2002
Posts: 776
|
|
Nope, not working.
Code:
if($text=~/reward/i){
if($sneakysam == 14){
quest::exp(200);
quest::say("I think this should do nicely fer ya $name. Hopefully you consider it worth yer troubles.");
if($class == "Wizard"){
quest::summonitem("1460");
}
elsif($class == "Enchanter"){
quest::summonitem("1460");
}
elsif($class == "Magician"){
quest::summonitem("1460");
}
elsif($class == "Necromancer"){
quest::summonitem("1460");
}
elsif($class == "Warrior"){
quest::summonitem("1462");
}
elsif($class == "Paladin"){
quest::summonitem("1462");
}
elsif($class == "Shadowknight"){
quest::summonitem("1462");
}
else{
quest::summonitem("1461");
}
}
else{
quest::say("Now what makes ye that yer gettin' a reward from me? Yer pretty crazy, I tell ya!");
}
}
That's the block of code. It "works" - it's just that it summons the wiz/enc/nec/mag reward no matter what $class returns. $sneakysam is a custom var and there shouldn't be any problems with it since it works everywhere else in the quests it's used in...including this particular quest in other blocks of code.
I also tried it like:
if($class == "Wizard" || $class == "Enchanter" || $class == "Magician" || $class == "Necromancer") etc...didn't work either.
|
|
|
|
09-06-2004, 02:50 AM
|
Developer
|
|
Join Date: Jul 2004
Posts: 773
|
|
== dosent work on strings.
use eq
$class eq "Warrior"
|
09-06-2004, 03:45 AM
|
Hill Giant
|
|
Join Date: May 2004
Posts: 238
|
|
in perl for strings instead of == use this
if($class =~ /warrior/i){insert crap here}
__________________
Ascending Dawn Server Op
Coder/Quester/Mysql
|
09-06-2004, 04:21 AM
|
Hill Giant
|
|
Join Date: Dec 2003
Posts: 166
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 12:27 PM.
|
|
|
|
|
|
|
|
|
|
|
|
|