Welcome on MasterOf13FPS! MasterOf13FPS

Register today or sign up if you are already a member and never miss any cool content again :)

How do you make a movefix?

ykwim

New member
Joined
Feb 16, 2025
Messages
4
Reaction score
1
Points
3
Hey! I only recently got into making minecraft cheats and with that, rotations and everything else. Everything was going pretty good until hypixel prediction anticheat came out on all of 1.8.9 (I know I could use viaforge but I'd rather learn to code bypasses for prediction). I kind of know what movefix/movementfix does but not well enough to make it or the required events I need. I don't like pasting without understanding why and how it works, so if you reply with some code please add some explanation as I do know java well, but still I'm not the greatest at coding in minecraft specifically, anything will help! Even just a brief rundown on what movementfix does.
 
It's quite simple. A movement fix is just correcting your movement so that it alligns with your yaw. So, logically, you try and find the method which sets the motion based on your yaw and change the yaw that it uses. I recall the method is called something like "moveAirFlying" and is in the Entity class (mcp mappings). For a silent movement fix, you just have to calculate where the player would move if the yaw was not changed, and calculate a different input that uses the modified yaw and moves in that direction, and that's just some middle school math.
 
It's quite simple. A movement fix is just correcting your movement so that it alligns with your yaw. So, logically, you try and find the method which sets the motion based on your yaw and change the yaw that it uses. I recall the method is called something like "moveAirFlying" and is in the Entity class (mcp mappings). For a silent movement fix, you just have to calculate where the player would move if the yaw was not changed, and calculate a different input that uses the modified yaw and moves in that direction, and that's just some middle school math.
Ah okay! Thank you very much, I('m sure I could do that, I guess I just assumed it was a lot more complicated than it really is, thank you for the info! Sorry for the dumb question haha, still pretty unfamiliar with coding minecraft cheats, or just anything in minecraft in general.
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top