[RELEASE] Fix for drops on zakum arms and other bosses read more

Joined
Oct 12, 2005
Messages
1,293
Reaction score
70
this fixes teh issue with 2 bodies and zakum arms dropping mesos. made 4 statues in GPQ not drop
mods i added,
zakum (8 arms and 2 bodies)
bodygaurd 1st 2 stages
statues to erogoth


just add more mobs to disable drops.

in maplemap.java

add

Code:
		if (monster.getId() >= 8800003 && monster.getId() <= 8800010) {
			return;
		} else if (monster.getId() >= 9300029 && monster.getId() <= 9300032) {
			return;
		} else if (monster.getId() == 8800000) {
			return;
		} else if (monster.getId() == 8800001) {
			return;
		} else if (monster.getId() == 9400112) {
			return;
		} else if (monster.getId() == 9400113) {
			return;
		}

under for (int i = 0; i < toDrop.size(); i++) {

save and compile :D
 
Back