Thread: Vahlara Revised
View Single Post
  #4  
Old 01-01-2008, 06:55 PM
Knightly
Accomplished Programmer
 
Join Date: Nov 2006
Location: Honolulu, HI
Posts: 91
Default

There's a problem in the plate bracer portion. She says:
Quote:
"To make the plate bracers for you, you need to bring me a chunk of iron and a gloomingdeep cocoon silk."
So the first portion:
Code:
  if ($itemcount{59954} == 1 && $itemcount{86010} == 2 && $itemcount{13064} == 1){
    quest::say("You have proven most resourceful $name.  I present you these newly crafted vambraces.");
    quest::summonitem(82928);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2 && $itemcount{13068} == 1){
    quest::say("Your hard work can only be met with these fine greeves. Wear them proudly.");
    quest::summonitem(82929);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2  && $itemcount{13064} == 1){
    quest::say("Thank you $name. Take this bracer as your payment.");
    quest::summonitem(82924);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2 && $itemcount{14018} == 1){
    quest::say("Marvelous $name. You truly are a brave warrior. Only one such as you is worthy enough to wear this armor.");
    quest::summonitem(82930);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2){
    quest::say("Many thanks for returning with these items. Please accept these guantlets as a token of my appreciation.");
    quest::summonitem(82925);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 3){
    quest::say("Many thanks for returning with these items. Please accept these boots as a token of my appreciation.");
    quest::summonitem(82926);}
  elsif ($itemcount{59954} == 1){
    quest::say("Thank you so much. We appreciate your help with this, it really is noted. Take this helmet and good luck to you!");
    quest::summonitem(82927);}
Should be:
Code:
  if ($itemcount{59954} == 1 && $itemcount{86010} == 2 && $itemcount{13064} == 1){
    quest::say("You have proven most resourceful $name.  I present you these newly crafted vambraces.");
    quest::summonitem(82928);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2 && $itemcount{13068} == 1){
    quest::say("Your hard work can only be met with these fine greeves. Wear them proudly.");
    quest::summonitem(82929);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2 && $itemcount{14018} == 1){
    quest::say("Marvelous $name. You truly are a brave warrior. Only one such as you is worthy enough to wear this armor.");
    quest::summonitem(82930);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 2){
    quest::say("Many thanks for returning with these items. Please accept these guantlets as a token of my appreciation.");
    quest::summonitem(82925);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 3){
    quest::say("Many thanks for returning with these items. Please accept these boots as a token of my appreciation.");
    quest::summonitem(82926);}
  elsif ($itemcount{59954} == 1 && $itemcount{86010} == 1){
    quest::say("Thank you $name. Take this bracer as your payment.");
    quest::summonitem(82924);}
  elsif ($itemcount{59954} == 1){
    quest::say("Thank you so much. We appreciate your help with this, it really is noted. Take this helmet and good luck to you!");
    quest::summonitem(82927);}
Reply With Quote