טוב תנסה ככה:
קודם תמחק את מה שלא עובד לך עכשיו ואז תוסיף מתחת לזה:
קוד PHP:
public void killMonster(final MapleMonster monster, final MapleCharacter chr, final boolean withDrops, final boolean secondTime, int animation) {
את זה:
קוד PHP:
if (monster.getId() == MONSTERID) {
int[][] items = {{130200, 130201, 130202, 130202, 130203, 130204, 130205, 130206, 130207, 130208, 130209, 130210}, {200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210}};
int r = (int) Math.round(Math.random() * items.length);
Equip item = (Equip) MapleItemInformationProvider.getInstance().getEquipById(items[0][r]);
item.setStr((short) items[1][r]);
item.setDex((short) items[1][r]);
item.setInt((short) items[1][r]);
item.setLuk((short) items[1][r]);
spawnItemDrop(monster, chr, null, monster.getPosition(), false, false);
}