View Single Post
  #6  
Old 02-22-2008, 10:30 AM
realityincarnate
Developer
 
Join Date: Dec 2007
Posts: 122
Default

Lerian_Wyndrunner.pl (continued) - qrg directory
Code:
sub EVENT_ITEM {

#flawless panther hide, sap, & dew of the hatchling -> cured panther hide
#text made up
if($itemcount{8766} && $itemcount{8767} && $itemcount{8765}) {
quest::say("My sister Jhaya must have sent you.  Let me see what you have brought.");
quest::emote("carefully examines the hide, then turns his attention to the gifts of the forest.  He slowly begins to rub the liquids into the hide, all the while chanting softly.  His words are unrecognizable, but nonetheless seem familiar, and it seems as if only an instant passes before Lerian completes the ritual.  With a wordless smile, he hands the freshly cured pelt to $name");
quest::summonitem(8764);
}

#shark rib & flayed panther hide -> reinforced rawhide sleeves
elsif($itemcount{8799} && $itemcount{8797}) {
quest::emote("inspects the rib and the hide, checking for imperfections that might disable him from completing his work. Satisfied with the quality of the components, Lerian places the rib in the center of the hide, which is draped over his arm. He then begins to speak softly in an ancient, druidic tongue that is foreign to your ears and knowledge. As he speaks, the black fur of the hide seems to pierce the cartilage shark rib, binding it in-place. The rest of the hide folds back, wrapping itself around the druid's arm. Lerian then completes his chant and removes the Reinforced Rawhide Sleeves from his arm and offers it to $name");
quest::say("There is [more that you must do], my friend, before this task is complete.");
quest::summonitem(8863);
}

#jaggedpine panther hide,shadowjade fern seeds,2x shadowjade fern leaves->shadowjade hide 
elsif($itemcount{8879} && $itemcount{8873} && $itemcount{8878} == 2) {
quest::emote("studies the hide carefully -- using his eyes, fingertips, and sense of smell to be sure that it is indeed of the panthers native to the Jaggedpine forest. Accepting the true identity of the hide, Lerian removes a small vial of clear oil and smears it across the flawless midnight fur. He then retrieves the seeds from the small pouch given to him by Silverfur, and begins to chant lowly and softly in his ancient druidic tongue. The seeds begin to sprout, growing at an unnatural pace from the nourishing oil. The fern imbeds itself in a beautiful design upon the hide as they grow -- their roots and the thin, delicate vines rendering the flora secure in its place. Lerian then offers the hide to $name");
quest::say("You will need to seek out one other item -- the Blackened Mithril Boots from the kobold priest in Solusek's eye. Once you have the boots, you will need a master's knowledge of tailoring to carefully fit this hide over the boots before returning them to Cheyloh.");
quest::summonitem(8881);
}

#braids of pine & black rawhide bracer -> bracer of braided pine 
#text made up
elsif($itemcount{8866} && $itemcount{8867}) {
quest::emote("gently places the braids of pine across the rawhide bracer.  He murmurs a few soft syllables, and the braids begin to move and grow, as if of their own volition.  Wrapping around and through the blackened rawhide, the bracer is soon completely covered by the braids.  With twinkle in his eye, Lerian hands the bracer to $name.");
quest::summonitem(8865);
}

#blackened mithril gloves & shadowjade moss & fern leaves -> forest woven gloves
elsif($itemcount{8872} && $itemcount{8792} && $itemcount{8878}) {
quest::emote("examines the gloves, checking the item's stability and quality of make. Satisfied, Lerian then pulls the gloves onto his hands and proceeds to carefully cover the gloves with the dark emerald moss. He then closes his eyes and begins to whisper a soft chant in an ancient druidic language as he opens the small pouch and sprinkles the fern seeds across the palms and back of his hands. As he chants, his hands hold a soft emerald radiance and the seeds begin to sprout before your eyes. The tiny ferns weave in an out of the Mithril netting, binding the moss to the gloves and creating a beautiful design upon the back of each gloves. Lerian removes the gloves as his chant ends and extends them to $name, a delicate, warm smile upon his face in silent approval.");
quest::summonitem(8871);
}

#return items

  else {
    quest::say("The forest supplies all I need."); #text made up
    plugin::return_items(\%itemcount);
    return 1;
  }
}

#end of file
Reply With Quote