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

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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-16-2002, 10:05 AM
stormgod
Discordant
 
Join Date: Apr 2002
Posts: 419
Default random quest rewards

Is it possible to code a new quest option so you can reward the player with a random item in a list ( like one of all the cloth armor pieces or things like that ) ?
it would be usefull to add new quests ;o)
Reply With Quote
  #2  
Old 04-27-2002, 07:17 AM
Malevolent
Hill Giant
 
Join Date: Mar 2002
Posts: 171
Default

i OP_ClickGive
Code:
									if (tmp->IsNPC()) { 
										if (TradeList[0]==tmp->CastToNPC()->GetItemRequested()) {
											
											this->Message(MT_Say, "%s says, 'Thank you for your hard work!'", tmp->GetName());
											
											if (tmp->CastToNPC()->GetMaster() !=0)
												this->Message(MT_Say, "%s says, 'I'm sure %s will look kindly upon this act'", tmp->GetName(), entity_list.RemoveNumbers(tmp->CastToNPC()->GetMaster()));
											uint32 somenum=rand()%32531;
											Item_Struct* award_item = database.GetItem(somenum);
											if (award_item->name!=0) {
												this->Message(MT_Emote, "%s opens a small box and hands you a %s'", tmp->GetName(), award_item->name);
												this->Message(MT_Say, "%s says, 'I hope you enjoy it!'", tmp->GetName());
												this->PutItemInInventory(0,award_item);
											} else {
												this->Message(MT_Say, "%s says, 'I haven't anything spare, but maybe you'll have learned something.'", tmp->GetName());
												this->AddEXP(somenum*10);
											}

										} else {
											
											this->Message(MT_Emote, "%s looks oddly at what you just handed them.'", tmp->GetName());
										}
										CheckQuests(zone->GetShortName(), "%%item%%", tmp->CastToNPC()->GetNPCTypeID(), TradeList[0]); 

									}
Ideally the random item would be a random item within a predefined list. But, the above works pretty well.
Reply With Quote
Reply


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 07:03 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