A remake of Hypixel Watchdog's AuraBot
This plugin only runs on Spigot-1.7.10 (1_7R4) <> 1.7-1.8 ProtocolHack is supported
Dependencies:
NPCLib-Plugin
skin: 103974854 # Skin id from https://mineskin.org/ (upload a skin, scroll all the way down to "id DEPRECATED")
maxCount: 50 # Global, after how many total hits the last player to hit an entity triggers the bot (GLOBAL COUNT, EVERY PLAYER INCREASES IT)
If errors (NullPointerException) are generated in console
replace these 2 lines with:
ClickType clickType;
try {
clickType = actionField.get(packet).toString()
.equals("ATTACK") ? ClickType.LEFT_CLICK : ClickType.RIGHT_CLICK;
} catch(Exception ignored) {
clickType = ClickType.RIGHT_CLICK;
}