• 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

[REQUEST] AutoL Script

Scheduled Pinned Locked Moved Requests
14 Posts 9 Posters 749 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.
  • PxzlzP Offline
    PxzlzP Offline
    Pxzlz
    wrote on last edited by
    #1

    I just need an AutoL script because I need the toxicity in my life XD

    M 1 Reply Last reply
    0
  • M Offline
    M Offline
    mems Moderator
    replied to Pxzlz on last edited by
    #2

    @pxzlz don't be toxicc

    PxzlzP 1 Reply Last reply
    0
  • PxzlzP Offline
    PxzlzP Offline
    Pxzlz
    replied to mems on last edited by
    #3

    @mems i need to >:)

    M TheHackerT 2 Replies Last reply
    0
  • DreamWasFuckedD Offline
    DreamWasFuckedD Offline
    DreamWasFucked Banned
    wrote on last edited by DreamWasFucked
    #4
    var EntityPlayer = Java.type('net.minecraft.entity.player.EntityPlayer');
    var script = registerScript({
        name: 'AutoL',
        version: '0.0.0',
        authors: ['Shurpe']
    });
    script.registerModule({
        name: 'AutoL',
        category: 'Fun', 
        description: ''
    
    }, function (module) {
        module.on('attack', function(e) {
            target = e.getTargetEntity();
        });
        module.on('update', function() {
            if (target != null) {
                if (target instanceof EntityPlayer) {
                    if (target.isDead) {
                        mc.thePlayer.sendChatMessage('L ' + target.getName());
                        target = null;
                    }
                }
            }
        });
    });
    
    ? 1 Reply Last reply
    0
  • M Offline
    M Offline
    Mutrix999
    replied to Pxzlz on last edited by
    #5

    @pxzlz Just use macros

    1 Reply Last reply
    0
  • TheHackerT Offline
    TheHackerT Offline
    TheHacker
    replied to Pxzlz on last edited by
    #6

    @pxzlz what it does autoL exactly ?

    PxzlzP 1 Reply Last reply
    0
  • PxzlzP Offline
    PxzlzP Offline
    Pxzlz
    replied to TheHacker on last edited by
    #7

    @thehacker After you kill someone it brings out the toxicity in chat with a single message "L, (username)" it makes me laugh at the rage that happens in chat

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

    @skidma said in [REQUEST] AutoL Script:

    var EntityPlayer = Java.type('net.minecraft.entity.player.EntityPlayer');
    var target = null;
    var script = registerScript({
        name: 'AutoL',
        version: '0.0.0',
        authors: ['Shurpe']
    });
    script.registerModule({
        name: 'AutoL',
        category: 'Fun', 
        description: ''
    
    }, function (module) {
        module.on('attack', function(e) {
            target = e.getTargetEntity();
        });
        module.on('update', function() {
            if (target != null) {
                if (target instanceof EntityPlayer) {
                    if (target.isDead) {
                        mc.thePlayer.sendChatMessage('L ' + target.getName());
                        target = null;
                    }
                }
            }
        });
    });
    

    that codes are bad

    1 Reply Last reply
    0
  • qwq LiulihaocaiQ Offline
    qwq LiulihaocaiQ Offline
    qwq Liulihaocai
    wrote on last edited by
    #9

    try this LOL
    https://forums.ccbluex.net/topic/617/javascript-中文autol-p

    icewormy3I 1 Reply Last reply
    0
  • icewormy3I Offline
    icewormy3I Offline
    icewormy3
    replied to qwq Liulihaocai on last edited by icewormy3
    #10

    should be something like:

    if(packet.getPacket() instanceof S02PacketChat) {
       S02PacketChat chat = (S02PacketChat) packet.getPacket();
       if(chat.getChatComponent().getUnformattedText().contains("wa slained by " + mc.thePlayer.getName()) {
    mc.thePlayer.sendChatMessage("Your kill message here");
    }
    }
    

    kill messages may vary from server to server

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

    @icewormy3 said in [REQUEST] AutoL Script:

    should be something like:

    if(packet.getPacket() instanceof S02PacketChat) {
       S02PacketChat chat = (S02PacketChat) packet.getPacket();
       if(chat.getChatComponent().getUnformattedText().contains(" slained by " + mc.thePlayer.getName()) {
    mc.thePlayer.sendChatMessage("Your kill message here");
    }
    }
    

    does not work on every servers tho each server uses a different kill message

    Cracked GamesC 1 Reply Last reply
    0
  • Cracked GamesC Offline
    Cracked GamesC Offline
    Cracked Games
    wrote on last edited by
    #12

    KillMessageLOL.js

    code:
    /// api_version=2
    var script = registerScript({
    name: "AutoL",
    version: "1.0",
    authors: ["Pepohax."]
    });

    var EnglishWords = ['U need Center Client , mate :)']

    var target;
    var EntityPlayer = Java.type('net.minecraft.entity.player.EntityPlayer');

    script.registerModule({
    name: "KillMessageLOL",
    description: "KillMessage",
    category: "FUN",
    tag:"NULL",
    settings: {
    Mode: Setting.list({
    name: "Mode",
    default: "fucking",
    values: ["lol","lol","English"]
    }),
    }
    }, function (module) {
    module.on("enable", function () {
    target = null;
    })
    module.on("attack", function (event) {
    if(event.getTargetEntity() instanceof EntityPlayer){
    target = event.getTargetEntity();
    }
    })
    module.on("update", function () {
    module.tag=module.settings.Mode.get();
    if (target != null) {
    if (target.isDead) {
    switch(module.settings.Mode.get()){
    case "Clear":{
    mc.thePlayer.sendChatMessage("L" + " " + target.getName());
    break;
    }

                    case "English":{
                        mc.thePlayer.sendChatMessage("[" + "Center Client" + "]" + " " + "L" + " " + target.getName()  + " " +EnglishWords[parseInt(Math.random()*EnglishWords.length)] );
                        break;
                    }
                }
                target = null;
            }
        }
    })
    

    })

    1 Reply Last reply
    0
  • Cracked GamesC Offline
    Cracked GamesC Offline
    Cracked Games
    replied to A Former User on last edited by
    #13

    @sigma-allah you love bitcoin miner + alt grabber? (proof in altmanager.class)

    ? 1 Reply Last reply
    0
  • ? Offline
    ? Offline
    A Former User
    replied to Cracked Games on last edited by
    #14

    @cracked-games said in [REQUEST] AutoL Script:

    @sigma-allah you love bitcoin miner + alt grabber? (proof in altmanager.class)

    i love mining bitcoin!!!!!!!!!!!!!!

    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