0x0F S0FPacketSpawnMob
Spawns a living entity (mob/animal/monster) with entity type, position, rotation, velocity, and metadata.
Fields
| Field | Type | Description |
|---|---|---|
| entityId | VarInt | Entity ID |
| type | unsigned byte | Mob type (50=creeper, 51=skeleton, 52=spider, 54=zombie, etc.) |
| x/y/z | fixed-point int | Position × 32 |
| yaw/pitch/headYaw | byte | Rotations × 256/360 |
| velocityX/Y/Z | short | Velocity × 8000 |
| metadata | DataWatcher | Entity data watcher |
Wire Encoding
| Field | Type | Notes |
|---|---|---|
| Entity ID | VarInt | |
| Type | Unsigned Byte | EntityList ID |
| X | Int | x * 32 |
| Y | Int | y * 32 |
| Z | Int | z * 32 |
| Yaw | byte | yaw * 256/360 |
| Pitch | byte | pitch * 256/360 |
| Head Pitch | byte | headYaw * 256/360 |
| Velocity X | short | |
| Velocity Y | short | |
| Velocity Z | short | |
| Metadata | DataWatcher |
MCP References
MCP
NetHandlerPlayClient.handleSpawnMob()Handler Interface
HND
INetHandlerPlayClientNotes
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.
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.
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.
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.