[HELP] AutoLoot All Items Exept (adena)
Posted: Mon Mar 21, 2011 1:31 am
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:4522
L2JDP Revision Number:7829
HI, I had some files in a project that I do not remember, but in this project one could activate the autoloot for all items exept for adena.
I would like to know how to begin to create this mod for adena only have to lift the other items that are to autoloot
Ex:
in gameserver/model/actor/L2Attackable.java
I have this part of the code I think I should change there
Any ideas would be welcome thanks ^ ^
» Find Revision
L2J Revision Number:4522
L2JDP Revision Number:7829
HI, I had some files in a project that I do not remember, but in this project one could activate the autoloot for all items exept for adena.
I would like to know how to begin to create this mod for adena only have to lift the other items that are to autoloot
Ex:
in gameserver/model/actor/L2Attackable.java
I have this part of the code I think I should change there
Code: Select all
if (drop.getItemId() == 57) deepBlueDrop *= isRaid() && !isRaidMinion()? (int)Config.RATE_DROP_ITEMS_BY_RAID : (int)Config.RATE_DROP_ITEMS; } }