Part 6 - Robe of the Whistling Fists
Code:
#Zone - Dreadlands
#Type - Quest
#Class - Monk
#Mob - Brother Balatin
sub EVENT_SAY
{
if($text=~/Hail, $mname/i)
{
quest::emote("turns to you. A transparent human face materalizes upon the skull. As he speaks the smell of rotted rat corpses rushes into your face. You must fight the urge to vomit");
quest::say("What discipline do you follow?");
}
if($text=~/I follow the Brotherhood of the Lost Circle/i)
{
quest::say("Then we are one. The rebirth of our circle shall start with you. I have waited decades for your arrival. You should seek the living brothers within Tunaria. When you have earned your garb then you will be ready for the true drape.");
}
if($text=~/I am ready for the true drape/i)
{
quest::say("Seek the broken flute of our master. Taken from us by the Iksar twins of Vistrei. To me they will come and to me your robe and to you will come the dawning of the new brotherhood.");
}
}
sub EVENT_ITEM
{
if($itemcount{12979} && $itemcount{12980} && $itemcount{12256} == 1)
{
quest::summonitem(12970);
quest::emote("holds his arms out and a fine robe materializes before your eyes. You grab it just in time to see the skeleton fade from existence.");
quest::depop();
}
}