Gam3Master Posted May 14, 2016 Posted May 14, 2016 (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 May 16, 2016 by Gam3Master Quote
SweeTs Posted May 14, 2016 Posted May 14, 2016 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 Quote
Gam3Master Posted May 14, 2016 Author Posted May 14, 2016 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); } Quote
SweeTs Posted May 14, 2016 Posted May 14, 2016 (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 May 14, 2016 by SweeTs Quote
Trance Posted May 15, 2016 Posted May 15, 2016 (edited) hmmm you are right, I am so dumb.... you mean like this ? HA Edited May 16, 2016 by Trance Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.