• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

Old KillAura reach

Scheduled Pinned Locked Moved Scripts
9 Posts 4 Posters 476 Views
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • yorik100Y Offline
    yorik100Y Offline
    yorik100
    wrote on last edited by yorik100
    #1

    Useful for AAC
    Cons : You can't really change ThroughWallsRange
    It'll cancel every hits that shouldn't have hit if you were using the old killaura range

    var scriptName = "OldReach";
    var scriptVersion = 1.0;
    var scriptAuthor = "york";
    var EntityLiving = Java.type('net.minecraft.entity.EntityLivingBase');
    var EntityFireball = Java.type('net.minecraft.entity.projectile.EntityLargeFireball');
    var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");
    
    function OldReach() {
        Range = value.createFloat('Range', 4, 0, 8);
        this.addValues = function(values) {
            values.add(Range);
        };
        this.getName = function() {
            return "OldReach";
        };
    
        this.getDescription = function() {
            return "Old reach";
        };
    
        this.getCategory = function() {
            return "Misc";
        };
    	this.onEnable = function() {
    		this.hasattackedfortnite = false;
    	}
        this.onPacket = function(event) {
            if (mc.theWorld == null || mc.thePlayer == null && moduleManager.getModule("Killaura").getState())
                return;
            packet = event.getPacket();
            if (packet instanceof C02PacketUseEntity && packet.getAction() == C02PacketUseEntity.Action.ATTACK) {
                attackedEntity = packet.getEntityFromWorld(mc.theWorld);
                if (attackedEntity == null)
                    return;
                if (mc.thePlayer.getDistanceToEntity(attackedEntity) > Range.get()) {
                    event.cancelEvent();
                    this.hasattackedfortnite = true;
                    this.fortnite = mc.thePlayer.motionX;
                    this.fortnite2 = mc.thePlayer.motionZ;
                }
            }
        }
        this.onUpdate = function() {
            moduleManager.getModule("Killaura").getValue("Range").set(Range.get());
            moduleManager.getModule("Killaura").getValue("ThroughWallsRange").set(Range.get());
            if (this.hasattackedfortnite) {
                mc.thePlayer.motionX = this.fortnite;
                mc.thePlayer.motionZ = this.fortnite2;
                this.hasattackedfortnite = false;
            }
        }
    }
    var OldReach = new OldReach();
    var OldReachClient;
    
    function onEnable() {
        OldReachClient = moduleManager.registerModule(OldReach);
    };
    
    function onDisable() {
        moduleManager.unregisterModule(OldReachClient);
    };
    
    1 Reply Last reply
    0
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by A Former User
    #2
    this.getDescription = function() {
        return "Anti Fireball";
    

    :axoprider:

    1 Reply Last reply
    0
  • M Offline
    M Offline
    mems Moderator
    wrote on last edited by mems
    #3

    Why not make a PR for that? You could make LiquidBounce better, since it provides a bypass, probably.

    yorik100Y 1 Reply Last reply
    0
  • yorik100Y Offline
    yorik100Y Offline
    yorik100
    replied to mems on last edited by
    #4

    @mems said in Old KillAura reach:

    Why not make a PR for that? You could make LiquidBounce better, since it provides a bypass, probably.

    Last time I tried to change the killaura.kt I broke it XD

    1 Reply Last reply
    0
  • M Offline
    M Offline
    mems Moderator
    wrote on last edited by
    #5

    Well you could try one more time at least, you could also get ideas from the other variables and if statements, etc how they work.

    yorik100Y 1 Reply Last reply
    0
  • yorik100Y Offline
    yorik100Y Offline
    yorik100
    replied to mems on last edited by
    #6

    @mems said in Old KillAura reach:

    Well you could try one more time at least, you could also get ideas from the other variables and if statements, etc how they work.

    Java sucks

    ? 1 Reply Last reply
    0
  • ? Offline
    ? Offline
    A Former User
    replied to yorik100 on last edited by
    #7

    kotlin sucks @yorik100

    A 1 Reply Last reply
    0
  • A Offline
    A Offline
    Aftery
    replied to A Former User on last edited by
    #8

    @hahayes sucks to suck

    ? 1 Reply Last reply
    0
  • ? Offline
    ? Offline
    A Former User
    replied to Aftery on last edited by
    #9

    @Aftery sucks to say sucks to suck

    1 Reply Last reply
    0

About
  • Terms of Service
  • Privacy Policy
  • Status
  • Contact Us
Downloads
  • Releases
  • Source code
  • License
Docs
  • Tutorials
  • CustomHUD
  • AutoSettings
  • ScriptAPI
Community
  • Forum
  • Guilded
  • YouTube
  • Twitter
  • D.Tube
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups