What does this do?
When you create a mission in the ArmA 2 editor and export it, you get a raw .sqf file full of
createVehicle and createUnit calls β one per object, with absolute world positions.
That format works fine in the editor, but it's not directly usable in DZMS missions, WAI spawn scripts, or
other DayZ Epoch spawning systems which expect relative positions and a specific array format.
This tool parses that raw editor SQF, extracts all game objects, and lets you re-export them in whatever format your scripting system needs β relative positions, sorted by classname, with MAP_ classnames converted to their standard ArmA counterparts, and wrapped in the right prefix/suffix for DZMS, WAI, or your own function.
1 Load SQF File
Load an ArmA editor-exported .sqf mission file. It must contain createVehicle or
createUnit calls in standard ArmA generated format.