Jump to content

Recommended Posts

Posted (edited)

Hello. With this config you can manage what item to delete from droplist.

This patch is for aCis packs, as you know aCis have no droplist in sql so it is very hard to open each npc and remove item from it's drop.

 

So put item ids in this config and item will remove from droplist.

 

aCis 357 rev.

 

http://pastebin.com/HWvYX088

Edited by Gam3Master
Posted

Naaaa, no like that. Move the check before category.addDropData(data, isRaid); and use continue; (skip), it's kinda stupid to add the drop, and delete it right after that :P

Posted

hmmm you are right, I am so dumb....

you mean like this ?

 

 

if(!Config.LIST_REMOVE_FROM_DROP.contains(data.getItemId()))
{
category.addDropData(data, isRaid);
}
Posted (edited)

Nop.

if (Config.LIST_REMOVE_FROM_DROP.contains(data.getItemId()))
   continue;
 
category.addDropData(data, isRaid);

If your config contains X id, skip it.

Edited by SweeTs
  • 4 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock