View Single Post
  #2  
Old 08-03-2006, 07:22 PM
Cripp's Avatar
Cripp
Discordant
 
Join Date: Oct 2003
Location: The Shire
Posts: 474
Default

Code:
sub EVENT_SAY
{
    if ($text=~/hail/i)
    {
        quest::say("Hail, $name, I lost it. I must [find it]. I can't remember. The High Elder will have my head for this!");
    }
    if ($text=~/find/i)
    {
        quest::say("Yes, High Elder Siana had us fetch a delivery for her, only we lost it as we were returning through the portal into our world. We are sure it is around here. Just not sure where... The package contained armor adorned especially for the High Priest of our land. If you can find it and retrieve it for me, i will craft an item adorned for a $class of your world in return.");
    }
}

sub EVENT_ITEM
{
    if ($item1 == 28500)
    {
        quest::summonitem(18013);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding();
    }

    if ($item1 == 28506)
    {
        quest::summonitem(18200);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding();
    }

    if ($item1 == 28502)
    {
        quest::summonitem(18201);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding();
    }

    if ($item1 == 28503)
    {
        quest::summonitem(18776);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding();
    }

    if ($item1 == 28505)
    {
        quest::summonitem(18816);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding();
    }

    if ($item1 == 28501)
    {
        quest::summonitem(18822);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding();
    }

    if ($item1 == 28504)
    {
        quest::summonitem(18896);
        quest::exp(10000);
        quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
        quest::ding(); 
    }
}
try this..
__________________
Nug Blazers - ServerOP / founder
^^comming... later!

www.nugblazers.com
Reply With Quote