Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 04-22-2011, 10:46 PM
colin111
Fire Beetle
 
Join Date: Apr 2011
Posts: 4
Default

Thanks for both of your replies.

So is there no way at all that i can add loot to the mobs in the zones after GoD?

Sorry, i am a new to this.
Reply With Quote
  #2  
Old 04-22-2011, 11:29 PM
blackdragonsdg
Dragon
 
Join Date: Dec 2008
Location: Tennessee
Posts: 668
Default

You can add and remove loot from any npc in your database. If you are new then the simplest way would be to use the npc_loot editor. It can be found here:
http://www.georgestools.eqemulator.n...qEmu_Files.zip

If you want to learn how it actually works then you can create everything manually. The following example uses custom id's so using it on your database WILL NOT work.

loottable & lootdrop example:
Code:
delete from lootdrop where id = 750022;
INSERT INTO `lootdrop` (`id`, `name`) VALUES (750022, 'Ashengate_Normal');
delete from loottable where id = 750022;
INSERT INTO `loottable` (`id`, `name`, `mincash`, `maxcash`, `avgcoin`) VALUES (750022, 'Ashengate_Normal', 100000, 300000, 0);
delete from loottable_entries where loottable_id = 750022;
INSERT INTO `loottable_entries` (`loottable_id`, `lootdrop_id`, `multiplier`, `probability`) VALUES (750022, 750022, 1, 7);
INSERT INTO `loottable_entries` (`loottable_id`, `lootdrop_id`, `multiplier`, `probability`) VALUES (750022, 750023, 1, 5);
delete from lootdrop_entries where lootdrop_id = 750022;delete from lootdrop_entries where lootdrop_id = 750023;
INSERT INTO `lootdrop_entries` (`lootdrop_id`, `item_id`, `item_charges`, `equip_item`, `chance`) VALUES (750022, 219834, 1, 0, 50);
INSERT INTO `lootdrop_entries` (`lootdrop_id`, `item_id`, `item_charges`, `equip_item`, `chance`) VALUES (750022, 219835, 1, 0, 50);
INSERT INTO `lootdrop_entries` (`lootdrop_id`, `item_id`, `item_charges`, `equip_item`, `chance`) VALUES (750023, 219616, 1, 0, 5);
After creating the above you will need to assign the loottable_id to the npc you want the loot to drop from. In this case inserting loottable_id 750022 into an npc's loottable_id field would cause that npc to drop the specified items.
Reply With Quote
  #3  
Old 04-23-2011, 01:20 PM
colin111
Fire Beetle
 
Join Date: Apr 2011
Posts: 4
Default

You guys are awesome. Thanks!
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 09:15 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 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3