View Single Post
  #4  
Old 08-04-2006, 04:37 PM
kovouau
Fire Beetle
 
Join Date: Jul 2006
Posts: 20
Default

ok i fixed it..... silly little errors.

Code:
quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and ;
changed to
Code:
quest::say{"Very well and thankyou $name. I have ordered the preparation of your items. Simply hand this note to Elder Sok and);
and

Code:
if ($item1 == 28500)
changed to
Code:
if ($itemcount{28500} >= 1)
thanks for the help...

was just wondering also, if you could tell me what is wrong with this... it is repeated in the quest around 96 times, so i thought id just post one of them.

Code:
if ($class eq "Berserker") {
    if ($itemcount{16375} >= 1) {
       if ($itemcount{18201} >= 1) {
         quest::summonitem(68299);
         quest::exp(10000);
         quest::emote("takes the mold, revelling at your tale of Warden Ikty. Dismissing you as he tends other items.");
         quest::ding(); 
    }
    }
    }
Reply With Quote