CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. ScriptAPI
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • ybyyby_ awa

      Unsolved how to use new RotationUtils and MovementUtils(如何使用最新的RotationUtils和MovementUtils)
      • ybyyby_ awa

      1
      0
      Votes
      1
      Posts
      48
      Views

      No one has replied

    • LiquidOnTop

      Unsolved [TUTORIAL] How to deobfuscate (most) scripts on this forum
      • LiquidOnTop

      5
      3
      Votes
      5
      Posts
      229
      Views

      I

      @Aftery XD
      can you try deobfuscating it?

    • ybyyby_ awa

      Unsolved [API Demonstrate] Packet_Var
      • ybyyby_ awa

      1
      0
      Votes
      1
      Posts
      25
      Views

      No one has replied

    • nam nguyen

      Unsolved pls give me script autodisable fly pls :(
      • nam nguyen

      2
      0
      Votes
      2
      Posts
      49
      Views

      Plumer Man

      @nam-nguyen
      When would it disable? After a certain amount of ticks? After a teleport (s08)?

    • ybyyby_ awa

      Unsolved How to reference api interface through lbScript
      • ybyyby_ awa

      2
      0
      Votes
      2
      Posts
      26
      Views

      O

      @ybyyby_-awa Ok sir

    • E

      Unsolved How do you open the ScriptManager
      • EJD799

      1
      0
      Votes
      1
      Posts
      26
      Views

      No one has replied

    • Godden

      Unsolved how to send a S45 packet?
      • Godden

      8
      0
      Votes
      8
      Posts
      143
      Views

      P

      @Godden 你要知道这玩意是服务器的包 服务器发送它到你的客户端上

    • Vlad K.

      Unsolved How to install liquidbounce text checker api
      • Vlad K.

      5
      0
      Votes
      5
      Posts
      118
      Views

      Vlad K.

      @WaterFlex spasibo

    • J

      Unsolved How to use C09PacketHeldItemChange
      • JKGoogler

      1
      0
      Votes
      1
      Posts
      66
      Views

      No one has replied

    • kaduvert

      Solved LiquidBounce's ScriptApi defines non-function as function
      • kaduvert

      3
      0
      Votes
      3
      Posts
      98
      Views

      kaduvert

      @CzechHek thanks! that worked

      but why is the scriptapi incorrect? couldn't it be fixed?

    • kumri owo

      Unsolved how to quene a packet when the packet quene is empty
      • kumri owo

      17
      0
      Votes
      17
      Posts
      219
      Views

      kumri owo

      @Aftery i never said i knew what I was doing, I know a bit of js, but don’t know any scripting api thingy

    • A

      Unsolved [Question] Is there any way to edit a script without re-opening liquid bounce?
      • Arabian

      4
      0
      Votes
      4
      Posts
      100
      Views

      FaaatPotato

      @Arabian i would recommend using core

      .r scriptname

    • M

      [Request] Scaffold for JartexNetwork.
      • mems

      9
      0
      Votes
      9
      Posts
      317
      Views

      aliposted

      @mems aliposted

    • A

      Unsolved This topic is deleted!
      • Antorbd71

      3
      0
      Votes
      3
      Posts
      14
      Views
    • I

      [CORE] Subscribing to Forge events.
      • idk my name

      5
      3
      Votes
      5
      Posts
      143
      Views

      I

      1.8.9 version (?):

      function register(eventClass, listener) { //we are making reflected event bus to access private fields & methods adaptedBus = new Reflector(MinecraftForge.EVENT_BUS); //getting an actual mod container (it seems that activeModContainer() returns null in LiquidBounce so we are checking for null & redefining to minecraft mod container) activeModContainer = Loader.instance().activeModContainer(); !activeModContainer && (activeModContainer = Loader.instance().getMinecraftModContainer()); //https://github.com/MinecraftForge/MinecraftForge/blob/d06e0ad71b8471923cc809dde58251de8299a143/src/main/java/net/minecraftforge/fml/common/eventhandler/EventBus.java#L58 adaptedBus.listenerOwners.put(listener, activeModContainer); ctr = eventClass.getConstructor(); ctr.setAccessible(true); EVENT = ctr.newInstance(); //don't remove this line because event won't call without it asm = new ASMEventHandler(listener, getMethod(listener, "invoke"), activeModContainer); //registering a new listener EVENT.getListenerList().register(adaptedBus.busID, EventPriority.NORMAL, listener); others = adaptedBus.listeners.get(listener); if (!others) { others = new ArrayList(); adaptedBus.listeners.put(listener, others); } others.add(asm) }
    • A

      Unsolved Getting variables/objects from other scripts
      • allison

      6
      0
      Votes
      6
      Posts
      135
      Views

      CzechHek

      @idk-my-name Wouldn't that be too intrusive and confusing?

      I guess it would be better to do importProperties("scriptname") which would add script to list that no such property uses.

    • Uvuvwevwevwe Onyetenyevwe Ugwemubwem Ossas

      Unsolved net.ccbluex.liquidbounce api?
      • Uvuvwevwevwe Onyetenyevwe Ugwemubwem Ossas

      2
      0
      Votes
      2
      Posts
      109
      Views

      I

      @uvuvwevwevwe-onyetenyevwe-ugwemubwem-ossas Use Core.lib's function importPackage or import needed classes yourself by using Java.type.

      LiquidBounce = Java.type('net.ccbluex.liquidbounce.LiquidBounce')

      04a1e0dc-a343-4fa9-a748-d5c17aa9d7ce-изображение.png

    • I

      Solved Subscribing to Forge events?
      • idk my name

      2
      0
      Votes
      2
      Posts
      85
      Views

      I

      I copied the way of registering methods from https://github.com/MinecraftForge/MinecraftForge/blob/d3f01843f7e7a4f613b5e8113d381fd8747b4343/src/main/java/net/minecraftforge/fml/common/eventhandler/EventBus.java#L65

    • 8

      Solved how do i use the c0e packet
      • 8909

      3
      0
      Votes
      3
      Posts
      111
      Views

      Ali00035

      https://scriptapi.liquidbounce.net/net/minecraft/network/play/client/C0EPacketClickWindow.html

    • An Mini Scripter

      Unsolved Core not working
      • An Mini Scripter

      122
      0
      Votes
      122
      Posts
      358
      Views

      kumri owo

      @r-i-s-e xd

    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