Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Minecraft Hacks & Cheats › Minecraft Tutorials › Making a KillAura module for 1.9/1.10

Making a KillAura module for 1.9/1.10

Posts 1–6 of 6 · Page 1 of 1
Expfighter
Expfighter
Making a KillAura module for 1.9/1.10
Alright, so, currently I'm making a hacked client myself and found myself searching for a code snippet of a 1.9/1.10 KillAura, and not finding one.
Ended up just making it myself, so, for everyone like me who are looking for how to do it:
Here's my code!

Before we start:
Most of the code stays pretty much the same as 1.8 KillAuras were.
Only change is that there's a wait time before attacking.

The code:
In the KillAura module class, make a new float 'cooldown':
Code:
float cooldown = 0;
Now, on each update, you're going to check whether or not this 'cooldown' has reached 0 yet, and if not, decrement it by 1. If it did, set it back to the cooldown the current tool has, and attack the surrounding mobs once.

Code:
public void onUpdate() {
    //Check whether or not the current module is enabled. If your update method is only called when this is true, ignore this line.
    if (!isEnabled()) return;

    //Handle whether or not the player should attack
    if (float cooldown > 0){
        //There is still a cooldown active. Decrement cooldown by 1, and wait for the next update.
        cooldown--;
        return;
    }else //The cooldown has expired. Put it back to original, and attack.
        cooldown = mc.thePlayer.getCooldownPeriod(); //mc refers to the Minecraft object. getCooldownPeriod() returns the cooldown period of the item held by the player.

    //Loops through all loaded player entities, checks whether they're alive or not, and attacks them
    for (Entity entity : mc.theWorld.playerEntities){
        if (entity.isEntityAlive(){
            //Attacks the player using a packet
            mc.thePlayer.connection.sendPacket(new CPacketUseEntity(entity));
            mc.thePlayer.swingArm(EnumHand.MAIN_HAND);
        }
    }
}
There you go! That's it. To make it attack mobs instead of players, just let it loop through loadedEntityList instead, and check if it's an instance of LivingEntity.
Feel free to use this code, change it etc..
(btw adding those colours in was a damn pain ;-;)
Cheers!
#1 · edited 10y ago · 10y ago
FI
Five
Thanks for this! Looks really nice.
#2 · 9y ago
SE
sETDHGSThjswrtjhrtjh
I'm trying to make one that will bypass hypixel's watchdog if you could help me that'd be great.
#3 · 9y ago
ME
megapillar
watchdog is really tricky, i've tried for too long to try get round it
#4 · 9y ago
CU
Cuckshed
won't bypass badlion.
#5 · 9y ago
RA
ramzmista
thanks mr great guide
#6 · 7y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • How to make Chams for WarrockBy Str8Thimo in Game Hacking Tutorials
    4Last post 14y ago
  • Make accounts for US version?By chris9273 in WarRock - International Hacks
    1Last post 20y ago
  • How to make checkboxes for vb6 for WarrockBy Desymondo in Visual Basic Programming
    1Last post 18y ago
  • how to make checkboxes for vb6 for warrockBy Desymondo in WarRock - International Hacks
    3Last post 18y ago
  • [Help] Making Sign for CaBy kambo in Combat Arms Hacks & Cheats
    8Last post 18y ago

Tags for this Thread

#1.10#1.9#client#hacks#killaura#minecraft