Skip to content
  • 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

GridzzG

Gridzz

@Gridzz
About
Posts
9
Topics
2
Shares
0
Groups
0
Followers
1
Following
0

Posts

Recent Best Controversial

  • Script support.
    GridzzG Gridzz

    @czechhek said in Script support.:

    @gridzz there should be
    ///api_version=2
    as the first line

    edit: you had it there before ah

    Yeah, still doesn't work. What can I do, as I think it's the codes fault. I want to place blocks twice (aka the double clicking) and also set an option to double click on LMB later.

    ScriptAPI

  • Script support.
    GridzzG Gridzz

    Anyone?!>!?!?!?

    ScriptAPI

  • Script support.
    GridzzG Gridzz

    @auto-reply-bot Hey it still doesn't detect the 'DoubleClick' script in the combat GUI, how can I make it detectable?

    Edit 1: Never-mind. LOL
    Edit 2: It works but it doesn't show up in any of the arrow-gui lists, such as combat. I can bind it but I cant find it.
    Edit 3: It doesn't work scam

    ScriptAPI

  • Script support.
    GridzzG Gridzz

    @auto-reply-bot said in Script support.:

    var Mouse = Java.type('org.lwjgl.input.Mouse');
    var Robot = Java.type('java.awt.Robot');
    var InputEvent = Java.type('java.awt.event.InputEvent');
    var script = registerScript({
        name: 'DoubleClick',
        version: '1.0',
        authors: ['Gridzz']
    });
    script.registerModule({
        name: 'DoubleClick',
        description: 'Click Twice!',
        category: 'Fun'
    
    }, function (module) {
        module.on('update', function () {
            if (mc.gameSettings.keyBindAttack.isKeyDown() || Mouse.isButtonDown(0)) {
                var bot = new Robot();
                bot.mousePress(InputEvent.BUTTON2_DOWN_MASK);
                bot.mouseRelease(InputEvent.BUTTON2_DOWN_MASK);
            }
        });
    });
    

    Thanks! Definitely owe you a favour that I'm going to regret ±

    ScriptAPI

  • Script support.
    GridzzG Gridzz

    @auto-reply-bot Ty but idk what to do with that, maybe more thorough like actually putting it in the code and sending me it

    ScriptAPI

  • Script support.
    GridzzG Gridzz

    @auto-reply-bot said in Script support.:

    6.png

    Ok instead of quoting this can you send me an alternative?

    ScriptAPI

  • Script support.
    GridzzG Gridzz

    @skiddermaster412 Removed it but it's still not showing up. ;(

    ScriptAPI

  • Script support.
    GridzzG Gridzz
    /// api_version=2
    var script = registerScript({
        name: "Double Click",
        version: "1.0",
        authors: ["Gridzz"]
    });
    
    script.registerModule({
        name: "Double Click",
        category: "Combat", 
        description: "Click Twice!",
        tag: "Hm."}),
    
    function (DoubleClick) {
        DoubleClick.on("enable", function() {
        if (mc.gameSettings.keyBindAttack.isKeyDown() || Mouse.isKeyDown(0)) {
        Robot bot = new Robot();
        bot.mousePress(InputEvent.BUTTON2_DOWN_MASK);
        bot.mouseRelease(InputEvent.BUTTON2_DOWN_MASK);
    }
    

    It's not showing up in the GUI in-game, I think I butchered the code any help?

    ScriptAPI

  • ClickGUI does nothing.
    GridzzG Gridzz

    If I press right shift, or try and activate the GUI from the menu, it just says 'Enabled ClickGui' in the bottom and doesn't actually open the clickGUI? what do i do!??!

    General
  • Login

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