Go Back   EQEmulator Home > EQEmulator Forums > Quests > Quests::Q&A

Quests::Q&A This is the quest support section

Reply
 
Thread Tools Display Modes
  #1  
Old 05-03-2011, 06:35 AM
aesian
Fire Beetle
 
Join Date: Mar 2009
Location: belgium
Posts: 2
Question double loot item

is there a possibility to create an item that gives double loot.
Lets say like stat food.
You eat it and receive a buff for an hour that gives you double loot.

I think it's a database setting so there should be something running that checks when buff is there and that checks when buff is gone.

Is this kind of creation possible?
Reply With Quote
  #2  
Old 05-03-2011, 06:39 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,490
Default

Maybe by script. You can add loot to an NPC.
Reply With Quote
  #3  
Old 05-03-2011, 07:34 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

You can add the sub below and it should work to do what you are wanting. If you name the file default.pl, and put it in the specific zone folder you want this effect to work in, or in templates folder for all zones, it will work on any NPC that doesn't already have a script associated with it.

default.pl
Code:
sub EVENT_COMBAT {

	# Activated when first engaged into combat
	if ($combat_state)
	{
		# Check if they have buff with spell id 11 - Courage - example
		if ($client && $client->FindBuff(11))
		{
			# Check if they have already doubled their loot table once
			if(!$npc->EntityVariableExists(1))
			{
				# Double the loot table
				$npc->AddLootTable();
				# Set an entity var so they don't double it again
				$npc->SetEntityVariable(1, 1);
			}
		}
	}

}
Note, I haven't actually tested this, but it should work or be really close to functional.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #4  
Old 05-03-2011, 11:53 AM
ChaosSlayerZ's Avatar
ChaosSlayerZ
Demi-God
 
Join Date: Mar 2009
Location: Umm
Posts: 1,492
Default

I have a related question- from the other side - is it possible to write a script, that will detect that specific food/drink was consumed, and then give player specific buff?
Reply With Quote
  #5  
Old 05-03-2011, 01:27 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

That should be possible on SoF+ clients or at least SoD+. You would just add item scripts to the food/drink and then put scripts in for them so when they are clicked, it runs the script and buffs them. If you wanted to do that on Titanium, you would probably need a click effect on the food/drink, which I don't even think is possible, but haven't really tried (might actually work).
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
Reply

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 05:36 PM.


 

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 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3