0x0F S0FPacketSpawnMob

Spawns a living entity (mob/animal/monster) with entity type, position, rotation, velocity, and metadata.

Clientbound (Server → Client) · PLAY · net/minecraft/network/play/server/S0FPacketSpawnMob.java
entitymobspawncreature

Fields

FieldTypeDescription
entityIdVarIntEntity ID
typeunsigned byteMob type (50=creeper, 51=skeleton, 52=spider, 54=zombie, etc.)
x/y/zfixed-point intPosition × 32
yaw/pitch/headYawbyteRotations × 256/360
velocityX/Y/ZshortVelocity × 8000
metadataDataWatcherEntity data watcher

Wire Encoding

FieldTypeNotes
Entity IDVarInt
TypeUnsigned ByteEntityList ID
XIntx * 32
YInty * 32
ZIntz * 32
Yawbyteyaw * 256/360
Pitchbytepitch * 256/360
Head PitchbyteheadYaw * 256/360
Velocity Xshort
Velocity Yshort
Velocity Zshort
MetadataDataWatcher

MCP References

MCPNetHandlerPlayClient.handleSpawnMob()

Handler Interface

HNDINetHandlerPlayClient

Notes

Entity types: 50=creeper, 51=skeleton, 52=spider, 53=giant, 54=zombie, 55=slime, 56=ghast, 57=zombiePigman, 58=enderman, 59=caveSpider, 60=silverfish, 61=blaze, 62=magmaCube, 63=enderDragon, 64=wither, 65=bats, 66=witch, 67=endermite, 68=guardian, 69=shulker, 90=pig, 91=sheep, 92=cow, 93=chicken, 94=squid, 95=wolf, 96=mooshroom, 97=snowman, 98=ocelot, 99=ironGolem, 100=horse, 101=rabbit, 120=villager.

implementation Implementation Cases

ESP (Tenacity 6.0, Sigma 3.9, Gugustus)

Detect mob spawns. KillAura adds to target list. AntiBot filters mobs for bot detection. ESP shows mob info.

Vanilla hook: EventReceivePacket
AntiBot (Tenacity 6.0, Sigma 3.9, Gugustus)

Detect mob spawns. KillAura adds to target list. AntiBot filters mobs for bot detection. ESP shows mob info.

Vanilla hook: EventReceivePacket
Tracers (Tenacity 6.0, Sigma 3.9, Gugustus)

Detect mob spawns. KillAura adds to target list. AntiBot filters mobs for bot detection. ESP shows mob info.

Vanilla hook: EventReceivePacket
KillAura (Tenacity 6.0, Sigma 3.9, Gugustus)

Detect mob spawns. KillAura adds to target list. AntiBot filters mobs for bot detection. ESP shows mob info.

Vanilla hook: EventReceivePacket
← Back to all packets