[REQUEST] Java
-
- mc.thePlayer.inventory.currentItem
- if(packet instanceof C03PacketPlayer) packet.yaw = idk or packet.pitch = idk
-
1,2. mc src
-
best way to change yaw and pitch is to change event.yaw and pitch in motion event
-
@neptunenoodles @caex @icewormy3 but how do I indicate that I want to find a bow?
-
-
@zhao-yun this may help you
1,2. mc src
-
@____ what is it?
-
@icewormy3
I decided to write in such a way to understand how the command works
But nothing is displayed in the chat when the bow is in the hot slot -
@6sence said in [REQUEST] Java:
best way to change yaw and pitch is to change event.yaw and pitch in motion event
this is not intent base tutorial client bro
the real way is:
RotationUtils.setTargetRotation(new Rotation(yaw,pitch)) // normal way RotationUtils.setTargetRotation(new Rotation(yaw,pitch),keepLength) // the keepLength parameter is like KeepRotationsLength setting in scaffold
-
6Sencereplied to A Former User on 2 Jun 2021, 06:23 last edited by 6Sence 6 Feb 2021, 08:28
@chocopiexd said in [REQUEST] Java:
@6sence said in [REQUEST] Java:
best way to change yaw and pitch is to change event.yaw and pitch in motion event
this is not intent base tutorial client bro
the real way is:
RotationUtils.setTargetRotation(new Rotation(yaw,pitch)) // normal way RotationUtils.setTargetRotation(new Rotation(yaw,pitch),keepLength) // the keepLength parameter is like KeepRotationsLength setting in scaffold
smartarse event as in the litteral Event is in every base and if it doesn't have it I wouldn't consider it as a base since every other method is detectable.
-
@6sence said in [REQUEST] Java:
@chocopiexd said in [REQUEST] Java:
@6sence said in [REQUEST] Java:
best way to change yaw and pitch is to change event.yaw and pitch in motion event
this is not intent base tutorial client bro
the real way is:
RotationUtils.setTargetRotation(new Rotation(yaw,pitch)) // normal way RotationUtils.setTargetRotation(new Rotation(yaw,pitch),keepLength) // the keepLength parameter is like KeepRotationsLength setting in scaffold
smartarse event as in the litteral Event is in every base and if it doesn't have it I wouldn't consider it as a base since every other method is detectable.
not every base is the same
in most base:
event.setYaw(yaw) and event.setPitch(pitch)
in liquidbounce:
RotationUtils.setTargetRotation(new Rotation(yaw,pitch))
these 2 methods are the same, basically modifying the yaw and pitch value when sending player packets
-
the last 3 posts are stupid ^^
-
@chocopiexd exactly they're the same so why you being a smartarse about me helping zhao?
11/17