Velocity modifier not working in hypixel
-
The antikb works. It gives me 0 knockback but its blatant. If i, for example watned to use 100 60 then it would still give me 0 knockback. It works on other servers tho. Any scripts to fix the issue?
@make-joke-of Please search a bit next time before making the same topic on the wrong category.
-
@make-joke-of Please search a bit next time before making the same topic on the wrong category.
@mems
ik. Its just there was a script called scriptotl and i cant find it anywhere so i thought that someone will link me the script so i didnt mention anything about it. It's not that big of a deal. -
@mems
ik. Its just there was a script called scriptotl and i cant find it anywhere so i thought that someone will link me the script so i didnt mention anything about it. It's not that big of a deal.@make-joke-of
@mems help me?? -
@make-joke-of
@mems help me??This post is deleted! -
The antikb works. It gives me 0 knockback but its blatant. If i, for example watned to use 100 60 then it would still give me 0 knockback. It works on other servers tho. Any scripts to fix the issue?
/// api_version=2 var script = registerScript({ name: "HypikleVelo", version: "1.0", authors: ["nvinci"] }); var S27 = Java.type("net.minecraft.network.play.server.S27PacketExplosion"); var S12 = Java.type("net.minecraft.network.play.server.S12PacketEntityVelocity"); script.registerModule({ name: "HypikleVelo", category: "Combat", description: "grr", settings: { horizontal: Setting.float({ name: "Horizontal", default: 100.0, min: 0.0, max: 100.0 }) } }, function(module) { module.on('packet', function(e) { try { packet = e.getPacket(); if (packet instanceof S12) { packet.motionX *= module.settings.horizontal.get() / 100.0; packet.motionZ *= module.settings.horizontal.get() / 100.0; } else if (packet instanceof S27) { // too lazy to use core's reflector var motionX_fid = packet.class.getDeclaredField("field_149152_f"); var motionZ_fid = packet.class.getDeclaredField("field_149159_h"); motionX_fid.setAccessible(true); motionZ_fid.setAccessible(true); motionX_fid.setFloat(packet, motionX_fid.get(packet) * (module.settings.horizontal.get() / 100.0)); motionZ_fid.setFloat(packet, motionZ_fid.get(packet) * (module.settings.horizontal.get() / 100.0)); motionX_fid.setAccessible(false); motionZ_fid.setAccessible(false); } } catch (err) { Chat.print(err); }; }); });scripts (2).zip for the scriptolotl zip file, including the hypixel velocity (extract all of them into the scripts folder).
I tested on b72, working well. Not sure about b73.
-
/// api_version=2 var script = registerScript({ name: "HypikleVelo", version: "1.0", authors: ["nvinci"] }); var S27 = Java.type("net.minecraft.network.play.server.S27PacketExplosion"); var S12 = Java.type("net.minecraft.network.play.server.S12PacketEntityVelocity"); script.registerModule({ name: "HypikleVelo", category: "Combat", description: "grr", settings: { horizontal: Setting.float({ name: "Horizontal", default: 100.0, min: 0.0, max: 100.0 }) } }, function(module) { module.on('packet', function(e) { try { packet = e.getPacket(); if (packet instanceof S12) { packet.motionX *= module.settings.horizontal.get() / 100.0; packet.motionZ *= module.settings.horizontal.get() / 100.0; } else if (packet instanceof S27) { // too lazy to use core's reflector var motionX_fid = packet.class.getDeclaredField("field_149152_f"); var motionZ_fid = packet.class.getDeclaredField("field_149159_h"); motionX_fid.setAccessible(true); motionZ_fid.setAccessible(true); motionX_fid.setFloat(packet, motionX_fid.get(packet) * (module.settings.horizontal.get() / 100.0)); motionZ_fid.setFloat(packet, motionZ_fid.get(packet) * (module.settings.horizontal.get() / 100.0)); motionX_fid.setAccessible(false); motionZ_fid.setAccessible(false); } } catch (err) { Chat.print(err); }; }); });scripts (2).zip for the scriptolotl zip file, including the hypixel velocity (extract all of them into the scripts folder).
I tested on b72, working well. Not sure about b73.
@wysi i tried it in hypixel and it dont work for me
-
@wysi i tried it in hypixel and it dont work for me
@vapeisexpensive which script?
-
@vapeisexpensive which script?
@wysi the 1st one
name: "HypikleVelo",
version: "1.0",
authors: ["nvinci"]
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login