Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Development > Archive::Quests

Archive::Quests Archive area for Quests's posts that were moved here after an inactivity period of 90 days.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #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
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 06:05 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3