View Single Post
  #2  
Old 08-10-2004, 06:08 AM
sotonin
Demi-God
 
Join Date: May 2004
Posts: 1,177
Default

As far as the item issue, are you sure it's not working? It puts it on the cursor. so you'd have to drop the item in a bag and then itll put the second item on cursor.

Quote:
if ($platinum == 100 {quest::say("Very well, you have my word this will be taken care of. Please give this signed paperwork back to Penfrost as proof. Also, for the love of Tunare tell him to stop burning his trash. Its no wonder the east side of Freeport stinks so bad anymore."); quest::summonitem(69022);}
You missed a closing parenthesis. change it to

Code:
if ($platinum == 100) {
	quest::say("Very well, you have my word this will be taken care of.  Please give this signed paperwork back to Penfrost as proof.  Also, for the love of Tunare tell him to stop burning his trash.  Its no wonder the east side of Freeport stinks so bad anymore.");
	quest::summonitem(69022);
}
Also in this code, you used # instead of $

Quote:
if (#itemcount{69022} == 1){quest::say("Thanks lad, now thats one less thing for me to worry about. Here take my old bow as a reward, I never was much of a archer anyways."); quest::summonitem(69021);}
change to

Code:
if ($itemcount{69022} == 1){
	quest::say("Thanks lad, now thats one less thing for me to worry about.  Here take my old bow as a reward, I never was much of a archer anyways."); 
	quest::summonitem(69021);
}
Reply With Quote