Caesar 3 Walkers

Most walkers in Caesar 3 don't show up on the minimap. The three exceptions are wolves, your own soldiers, and enemies. Because so little has to be known about the walkers, I've only deciphered enough of the walker table to get the type of walker and their location out of it.

The complete walker table is 128000 bytes long: 1000 entries of 128 bytes. The relevant information is in the following bytes:

Offset Type Meaning
10 short Walker type
20 byte X coordinate (relative to the map, not the grid)
21 byte Y coordinate (relative to the map, not the grid)

The relevant walker types are:

  • 0x45 - wolf
  • 0xb, 0xc, 0xd - your own soldiers
  • 0x31 - barbarians
  • 0x2d, 0x2f - enemies

Last modified on 2007-11-14 21:48:26