Quick answer: Capture the save or game state, the current turn or tick, and the simulation context on RTS and grand strategy bug reports, because the genre enormous state and long sessions produce subtle late-game bugs. With the game state you can load the exact situation and reproduce a bug that only appears hundreds of turns in.
RTS and grand strategy games carry more state than almost any other genre: hundreds or thousands of units, sprawling maps, complex economies, and AI players, all evolving across sessions that can run for hours or hundreds of turns. The bugs that emerge from this are subtle and often late-game, an AI that behaves irrationally after turn three hundred, a performance collapse as unit counts grow, a desync deep into a multiplayer match. These bugs are practically impossible to reproduce by hand, which makes capturing the game state the only realistic path to fixing them.
Enormous state, long sessions
The defining QA challenge of strategy games is the sheer size of the state and the length of the sessions. A bug that appears two hundred turns into a grand strategy game depends on the entire accumulated state of that game: every nation, every unit, every diplomatic relationship, every economic value. You cannot reach that state by hand in any reasonable time, and you certainly cannot guess it.
This means the play-until-you-reproduce approach that works for short-session games is hopeless for strategy games. The only practical way to reproduce a late-game bug is to load the actual game state from the player session. The save file, which strategy games necessarily maintain in detail, is your most powerful debugging tool, because it is a complete snapshot of the situation that produced the bug.
Capture the game state
For any strategy game bug, the game state at the moment of the report is the essential context. Capture the save file or a serialized game state with the report, because it lets you load the exact situation the player was in, complete with all the accumulated complexity that produced the bug. This is the difference between reproducing a turn-three-hundred bug in seconds and never reproducing it at all.
Strategy game saves can be large, so balance completeness against size, but err toward capturing enough to reproduce. Even if you cannot attach the full save automatically, capturing key state, the turn, the relevant entities, the economic and diplomatic values, plus making it easy for players to attach their save, ensures you can recreate the situation. The save is the crime scene, and in a strategy game the crime scene is the whole world.
Deterministic simulation and desync
Many RTS games use deterministic lockstep simulation for multiplayer, where each client runs the same simulation and must produce identical results. When they diverge, you get a desync that ends the match, and these are among the hardest bugs in the genre because they depend on a non-deterministic operation hidden somewhere in an enormous simulation.
For deterministic strategy games, capture a checksum of the game state per tick from each client, just as you would for any lockstep netcode. The first tick where checksums diverge pinpoints when the desync began, narrowing an otherwise impossible search to a specific moment and operation. In a simulation with thousands of units, that pinpointing is the only thing that makes a desync tractable, because manually searching the whole simulation for a non-deterministic call is hopeless.
AI, pathfinding, and performance
Strategy games lean heavily on AI and pathfinding across large maps with many units, and these are rich sources of late-game bugs: AI that makes irrational decisions in complex situations, pathfinding that breaks down with many units or specific terrain, performance that collapses as the simulation grows. These emerge from scale and accumulated state, not from simple inputs.
Capture the unit counts, map size, and performance metrics with reports so you can see whether a bug correlates with scale. An AI bug that only appears with many nations, or a performance collapse that tracks unit count, tells you the problem is in how your systems scale, which is exactly the dimension that short tests never exercise. The captured game state then lets you load the large, late-game situation and profile or debug it directly.
Setting it up with Bugnet
Add an in-game report option and attach the game state or save, the current turn or tick, unit counts, map size, and performance metrics as custom fields and a serialized blob, plus desync checksum data for multiplayer. Bugnet stores them so a late-game strategy bug arrives with the full situation needed to reproduce it, rather than a description of behavior the player could not fully explain.
Enable automatic crash capture for the crashes that the largest, most complex game states produce, and group identical issues into occurrence counts. Because strategy game bugs are so state-dependent, the captured save is what transforms an unreproducible turn-three-hundred report into a situation you can load and debug, which for this genre is the entire battle.
Build a save-replay regression suite
Strategy games are ideal for save-based regression testing, because the save is a complete, deterministic snapshot. Each reproducible bug becomes a saved game that you load and run, asserting the correct behavior, the AI makes a sensible decision, the simulation does not desync, performance stays acceptable. A fix can then be verified against the exact late-game situation the player reported.
This suite is essential because strategy game systems are deeply interconnected, and a change to the economy, the AI, or the pathfinding can have effects that only manifest hundreds of turns later. Running your library of player-reported saves after every change catches these long-range regressions immediately. Over time that library becomes a collection of the most complex, edge-case situations your real players have created, providing test coverage of late-game complexity that no hand-built scenario could match, which is exactly the coverage a deep strategy game most needs.
In a strategy game the crime scene is the whole world. Capture the save and you can stand in it.