Custom Core.lib for b73 1.12.2 & custom .srg file.
-
What did I make:
- Wrapped packet event (Now you really can modify packets in scriptapi without worrying about e.getPacket().wrapped shit. It automatically transpiles all packets into their wrapped versions.)
- 1.8.9 packets in 1.12.2 (shitty support & shitcode but would work, now 1.8.9 Core scripts work on 1.12.2 b73.)
(Workupload) SRG: https://workupload.com/file/DttejLrEYcz (Drop it into LiquidBounce folder, not scripts.)
CORE: (Downlaod it & rename into Core.lib, forum doesn't accept .lib files lol) Core.lib -
btw you can use e.packet instead of e.getPacket() (fyi)
example:onPacket: function(e) { mc.thePlayer && e.packet instanceof C03PacketPlayer /* yeah we're sure it is C03PacketPlayer, it would work as CPacketPlayer */ && (e.packet.onGround = false, e.packet.y += 20) }
-
@idk-my-name wow that's really cool