0x0B C0BPacketEntityAction

Player performs an action: crouch, uncrouch, sprint, stop sprint, leave bed, jump with horse, open inventory.

Serverbound (Client → Server) · PLAY · net/minecraft/network/play/client/C0BPacketEntityAction.java
playerentitymovement

Fields

FieldTypeDescription
entityIDVarIntPlayer entity ID (for horse actions, the horse ID)
actionEnumSTART_SNEAKING, STOP_SNEAKING, STOP_SLEEPING, START_SPRINTING, STOP_SPRINTING, RIDING_JUMP, OPEN_INVENTORY
auxDataVarIntFor RIDING_JUMP: jump boost value (0-100)

Wire Encoding

FieldTypeNotes
Entity IDVarIntPlayer or horse entity
Action IDVarInt Enum0=crouch,1=uncrouch,2=leaveBed,3=sprint,4=stopSprint,5=jumpHorse,6=openInv
Jump BoostVarIntHorse jump power 0-100

MCP References

MCPNetHandlerPlayServer.processEntityAction()

Handler Interface

HNDINetHandlerPlayServer

implementation Implementation Cases

Sprint (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
Sneak (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
Scaffold (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
KeepSprint (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
Flight (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
Speed (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
WTap (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
NoSlow (Tenacity 5.1, Sigma 3.9, Flux B39.11, Gugustus, Jigsaw 0.26, November 0.2, Raze Recode 2.0, Koks v1, Helium B41420)

START/STOP_SPRINTING for keep-sprint and WTap. START/STOP_SNEAKING for scaffold silent sneak. KeepSprint cancels incoming STOP_SPRINTING. Flight sends START_FALL_FLYING for elytra exploit. Disabler cancels all C0B packets.

Vanilla hook: EventSendPacket / EventReceivePacket
← Back to all packets