AOS REVIVALJoin Discord
Packet ID0430x2B
Interface // wire record

MinimapZone

Creates a bounded minimap zone and icon. BattleSpades uses it for the CTF base area at mode start and during late-join replay.

S→CSentLive-verified21 bytes
Exact field order

Packet 43 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.

Packet 43 MinimapZone fields in byte order
#FieldEncodingBytesPurpose
0packet_idu81Always 43 (0x2B).
1keyu81Native visible-team key.
2colorBGR8883Three colour channels written blue, green, then red.
3min_xi16 LE2min x value.
4min_yi16 LE2min y value.
5min_zi16 LE2min z value.
6max_xi16 LE2max x value.
7max_yi16 LE2max y value.
8max_zi16 LE2max z value.
9icon_scalesign-magnitude fixed16 LE (1/64)2icon scale value.
10icon_idu81Icon 6 is the native CTF zone icon.
11locked_in_zoneboolean u81locked in zone value.
Protocol convention

How to read this layout

  • LE means least-significant byte first.
  • fixed16 is two-byte sign-magnitude at 1/64 precision.
  • orientation16 uses the measured 1/8192 orientation mapping.
  • NUL strings consume their encoded byte length plus one 00 terminator.
  • Counted arrays repeat immediately in the order shown.