Packet 117 wire layout
The first byte is the application packet ID. The rows after it appear in decode order. Sizes exclude ENet headers, the outer wrapper prefix, LZF chunk framing, and compression effects.
| # | Field | Encoding | Bytes | Purpose |
|---|---|---|---|---|
| 0 | packet_id | u8 | 1 | Always 117 (0x75). |
| 1 | team_id | u8 | 1 | Team identifier. |
| 2 | flags | u8 | 1 | 0x01 visible, 0x02 particle, 0x04 previous value, 0x08 percentage mode. |
| 3 | percent | sign-magnitude fixed16 LE (1/64) | 2 | percent value.When: flags & 0x08 |
| 4 | numerator | i32 LE | 4 | numerator value.When: percentage flag clear |
| 5 | denominator | i32 LE | 4 | denominator value.When: percentage flag clear |
| 6 | icon_id | u8 | 1 | icon id value. |
Protocol convention
How to read this layout
LEmeans least-significant byte first.fixed16is two-byte sign-magnitude at 1/64 precision.orientation16uses the measured 1/8192 orientation mapping.- NUL strings consume their encoded byte length plus one
00terminator. - Counted arrays repeat immediately in the order shown.