Group Details Private
administrators
Group of persons with the highest permissions.
-
RE: Hey how to add player skin to the offline account
@A9TX It is not possible to add skin to your offline account. This has to be done via the server you are playing on. If we would do it client-side, it is only visible to yourself, not others.
-
RE: How to code script autowalk with sprint
ChatGPT knows how to use ScriptAPI v2 better than most of the people here.
/// api_version=2 var script = registerScript({ name: "AutoWalk", version: "1.0.0", authors: ["Your Name"] }); script.registerModule({ name: "AutoWalk2", category: "Movement", description: "Makes the player move forward continuously and sprint.", }, function(module) { var isSprinting = false; module.on("enable", function() { isSprinting = mc.thePlayer.isSprinting(); }); module.on("disable", function() { if (isSprinting) { mc.gameSettings.keyBindSprint.pressed = false; isSprinting = false; } mc.gameSettings.keyBindForward.pressed = false; }); module.on("update", function() { mc.gameSettings.keyBindForward.pressed = true; if (!isSprinting) { mc.gameSettings.keyBindSprint.pressed = true; isSprinting = true; } }); });
*This module listens for the enable event and saves the player's sprinting state. Then, it listens for the disable event and releases the forward key and the sprint key if it was pressed. Finally, it listens for the update event and keeps the forward key pressed while continuously checking if the sprint key is pressed, and if not, it presses the sprint key to keep the player sprinting.
Note: Please make sure to test this script in a safe environment before using it in the game. Also, keep in mind that some servers may have rules against the use of automation scripts, so use it at your own risk.*
-
RE: [TUTORIAL] How to deobfuscate (most) scripts on this forum
@segv-segv said in [TUTORIAL] How to deobfuscate (most) scripts on this forum:
Questions I have:
What's the name (and creator) of this obfuscator?
People most likely use
https://github.com/CCBlueX/LiquidScript/tree/master/obfuscatorwhich uses
https://github.com/javascript-obfuscator/javascript-obfuscator
or the online website
https://obfuscator.io/ -
RE: Forge Protect server login
@sasaSalvador Seems you have to register on website. Fuck this server. Turkish servers always suck lmao. Not worth for me to try it, sorry, figure it out yourself. I can't even try it because I am not able to join the server based on my region.
Use the "Fixes" tab to toggle antiforge settings and change brand etc
unlike me you probably can read turkish -
RE: Forge Protect server login
@sasaSalvador Turn off the forge protection? If you need further help, you should provide more information like server IP.
-
What mods would you like to use?
So if you used our LiquidLauncher, you should know that we offer a variety of mods that can be installed with LiquidBounce and have been tested for compatibility.
Now we would like you to tell us what mods you would like us to add to this list so that they can be installed in the launcher.
We prefer mods that are hosted on https://modrinth.com/ or have public maven repositories due to our maven based system.
Of course mods can also be installed without being added to our offical list,
this can be done by putting the mods into the "custom_mods" and the folder of the version you are using.
Need a tutorial?
How to add custom mods to LiquidLauncher – 00:55
— CCBlueXThank you very much!
-
RE: How to Launch LiquidbounceLauncher
@TrygveBlock Can you please provide any information on what version of LiquidBounce you are trying to launch?
Legacy should work fine. Nextgen, which is still under development!!!, is not supported for Linux yet.