Part 5 - Robe of the Lost Circle
Code:
#Zone - South Karana
#Type - Quest
#Class - Monk
#mob - Brother Qwinn
sub EVENT_SAY
{
if($text=~/Hail,$mname/i)
{
quest::say("In the name of the [Brotherhood of the Lost Circle] I greet you.");
}
if($text=~/What is the Brotherhood of the Lost Circle?/i)
{
quest::say("The Monks of the Whistling Fist are called the Lost Circle by others. We are an ancient league of monks. Long forgotten and few remaining. Within this realm there are only two. I and [Brother Zephyl]. We seek the items stolen from us. I seek the [Code of Zan Fi].");
}
if($text=~/Who is Brother Zephyl?/i)
{
quest::say("Brother Zephyl is a member of the Lost Circle. He can be found in Rathe Mountains, and is also seeking items stolen from us.");
}
if($text=~/What is the Code of Zan Fi?/i)
{
quest::say("The tome called the Code of the Whistling Fist has been stolen from me. It contains many secrets pertaining to our brotherhood. Thankfully it is magically locked and only a Zan Fi master could unlock it. I quest for a monk to retrieve it. Would you be an [interested monk]?");
}
if($text=~/I am an interested monk/i)
{
quest::say("Then venture into the depths beyond the great Solusek Mining Company. There, living among the Kobolds, will be Targin the Rock. Get the book from him and return here and wait for my reappearance. When we meet again you shall hand me the book and a Purple Headband earned from the Silent Fist Clan. Do so and you shall be closer to joining the brotherhood.");
}
}
sub EVENT_ITEM
{
if($itemcount{12316} && $itemcount{10114} == 1)
{
quest::say("We had an agreement. The proof of a skilled monk, the Purple Headband, and the Code of the Whistling Fist.");
quest::summonitem(12314);
quest::say("We thank you for the Code of the Whistling Fist. Take this sewing needle. You shall find it useful should you aid [Brother Zephyl] in his quest. His item, the needle, a swatch of shadow silk and a scroll containing Jonathans Whistling Warsong. Into a sewing kit they will be going. And into the brotherhood will you.");
}
}
next
Code:
#Zone - Rathe Mountains
#Type - Quest
#Class - Monk
#Mob - Brother Zephyl
sub EVENT_SAY
{
if($text=~/Hail, $mname/i)
{
quest::say("Greetings. I am one with the [lost circle]. You have found me. What is it you desire?");
}
if($text=~/What lost circle?/i)
{
quest::say("The monks of the whistling fist are called the lost circle by others. We are an ancient league of monks. Long forgotten and few remaining. Within this realm there are only two. I and [Brother Qwinn]. We seek items stolen from us. I seek the [Idol of Zan Fi].");
}
if($text=~/Who is Brother Qwinn?/i)
{
quest::say("Brother Qwinn is a member of the Lost Circle. He can be found in South Karana, and is also seeking items stolen from us.");
}
if($text=~/What is the Idol of Zan Fi?/i)
{
quest::say("The Idol of Zan Fi is a sacred totem to our brotherhood. I cannot share its secrets, but I can offer to you a reward for its return. Are you an [interested monk]?");
}
if($text=~/I am an interested monk/i)
{
quest::say("Then venture to the lands of evil. The swamps of Trolls and Ogres, there will seek a monk called Raster. He has the idol. You will return here and wait for my reappearance. When we meet again you shall hand me the Idol of Zan Fi, and a Red Sash earned from the Ashen Order. Do so and you shall be closer to joining the brotherhood.");
}
}
sub EVENT_ITEM
{
if($itemcount{12317} && $itemcount{10133} == 1)
{
quest::say("We had an agreement. The proof of a skilled monk, the Red Sash, and the Idol of Zan Fi.");
quest::summonitem(12315);
quest::say("We thank you for the return of the Idol of Zan Fi. Take this rare robe pattern. You shall find it useful should you aid [Brother Qwinn] in his quest. His item, the rare robe pattern, a swatch of shadow silk and a scroll containing Jonathans Whistling Warsong. Into a sewing kit they will be going. And into the brotherhood will you.");
}
}