Welcome on MasterOf13FPS! MasterOf13FPS

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

Velocity für 3.1.2

MasterOf13FPS

Administrator
Staff member
Administrator
MasterOf13FPS
Joined
Jul 11, 2020
Messages
0
Reaction score
25
Points
0
weiß wer wie ein Velocity für 3.1.2 geht? oder hat wer ne ahnung wie es funktionieren könnte?
 
weiß wer wie ein Velocity für 3.1.2 geht? oder hat wer ne ahnung wie es funktionieren könnte?
Die Velocity nicht komplett "entfernen", sondern dividieren oder multiplizieren.
 
Also wir kennen ja noch den guten alten Bypass (der erstmals in diesem Forum veröffentlich wurde o_O) und ich kann nur sagen, dass er sich bewährt:
Code:
mc.thePlayer.motionX *= 1;
mc.thePlayer.motionY *= 1;
mc.thePlayer.motionZ *= 1;

Ich glaube für AAC bypasst es so aber besser

Code:
mc.thePlayer.motionY /= 1;
mc.thePlayer.motionX /= 1;
mc.thePlayer.motionT /= 1;
 
Also wir kennen ja noch den guten alten Bypass (der erstmals in diesem Forum veröffentlich wurde o_O) und ich kann nur sagen, dass er sich bewährt:
Code:
mc.thePlayer.motionX *= 1;
mc.thePlayer.motionY *= 1;
mc.thePlayer.motionZ *= 1;

hidetags bitte adden
 
Ich glaube für AAC bypasst es so aber besser

Code:
mc.thePlayer.motionY /= 1;
mc.thePlayer.motionX /= 1;
mc.thePlayer.motionT /= 1;
ich glaub dass sollte eher so aussehen:
Code:
mc.thePlayer.motionX *= (40/40);
mc.thePlayer.motionY *= (39/39);
mc.thePlayer.motionZ *= (38/38);
 
Also ich halte dies immer noch für die beste Möglichkeit:
Code:
mc.thePlayer.motionX = Double.longBitsToDouble(((Double.doubleToLongBits(mc.thePlayer.motionX) << 5) >> 5) | ((Double.doubleToLongBits(mc.thePlayer.motionX) >> 5) << 5));
mc.thePlayer.motionY = Double.longBitsToDouble(((Double.doubleToLongBits(mc.thePlayer.motionY) << 5) >> 5) | ((Double.doubleToLongBits(mc.thePlayer.motionY) >> 5) << 5));;
mc.thePlayer.motionZ = Double.longBitsToDouble(((Double.doubleToLongBits(mc.thePlayer.motionZ) << 5) >> 5) | ((Double.doubleToLongBits(mc.thePlayer.motionZ) >> 5) << 5));;
Manchmal bekommt man NaN, aber das ist doch gar nicht so schlimm oder?
 
Hab mich verschrieben und ich bin zu dumm um den Post zu bearbeiten.
Ich meine eigentlich, es ist ein Feature.
 
Hab mich verschrieben und ich bin zu dumm um den Post zu bearbeiten.
Ich meine eigentlich, es ist ein Feature.
Da kann man auch nen godmode draus machen ! Wie aus Spartan Phase auch!
 
Wie soll man das zum bypassen bringen? *1...wo ist da der Sinn...und nochmal zur Frage: kennt ihr einen Bypass
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top