Well there isn't one currently released, at least not that I know of. You just have to add this in the correct faction sendDeath():
Afterwards you change the teleports to outside of the boss rooms, spawn the npcs if they're not there and add this to the object interaction for each boss room (in the controller, not the objectHandler):Code:Entity killer = getMostDamageReceivedSourcePlayer(); if (killer instanceof Player) { Player player = (Player) killer; player.getAttributes().set("BandosKc", player.getAttributes().get("BandosKc)+1);//Example, same thing but with "ArmadylKc", etc.. for the other }
Code:if (objectId == X) { int kc = player.getAttributes().get("BandosKc"); if (kc < 40)//can change player.getPackets().sendGameMessage("You need at least 40 bandosian killcounts to enter this room."); else player.setNextWorldTile(X); }




