Code:
sub EVENT_SAY
{
if ($text=~ /Hail/i)
{
quest::say("Stopped I have done. Greet you I will. What business do we have? Hmm? Speak up!!");
}
if($text=~ /Journeymans Boots/i)
{
quest::say("Jorneyman's Boots are what you seek? Ha!! I have those upon my feet and disinigrate will they if my life is taken. Extra pair have I and [rare trade] can we make.");
}
if($text=~ /Rare Trade/i)
{
quest::say("I call for three things and Journeyman Boots are yours. I call for a [Shadowed Rapier], call for the [Ring of the Ancients] and call for Gold,.. 3250 Gold Coins!! This the trade that I call.");
}
if($text=~ /Shadowed Rapier/i)
{
quest::say("Shadowed Men, foes to all, have appeared. Many lands do they walk. Invisible are they, but items they wield can be seen. Seek them out and return to me a Shadowed Rapier. Return it with haste before poof goes the rapier!! No time to camp have you.");
}
if($text=~ /Ring of the Ancients/i)
{
quest::say("Ancient Cyclops do march the land. Long have they lived and crafted the Ring of the Ancients have they. I must have one and you shall go and fetch one for me.");
}
if($text=~ /Fabled Boots/i)
{
quest::say("The Fabled Journeyman's Boots?! Fashion those I can--- I shall need a [Shimmering Orb], [Journeyman's Boots], and a [Fabled Ring].");
}
if($text=~ /Fabled Ring/i)
{
quest::say("Exists an oracle in the Ocean of Tears that can take this ring into the past and make it a thing of legends--- with time, magic multiplies.");
}
}
sub EVENT_ITEM
{
if($itemcount{12268}==1)
{
quest::say("I see you wish to join us in Discord! Welcome! By turning your back on the protection of Order you are now open to many more opportunities for glory and power. Remember that you can now be harmed by others who have also heard the call of Discord.");
quest::exp(125);
}
}
I think it has something to do with the nasty little ' you put in the journeymans boots. ^.^
Also, not sure if the single quotes caused a problem or not, so just remove them out. ^.^