CfgConvert: Difference between revisions
Jump to navigation
Jump to search
m (category) |
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category: *Arma 2: *([a-zA-Z0-9 :-]+)\]\]" to "{{GameCategory|arma2|$1}}") |
||
Line 44: | Line 44: | ||
[[Category:ArmA: Official Tools]] | [[Category:ArmA: Official Tools]] | ||
{{GameCategory|arma2| Official Tools}} | |||
[[Category:Arma 3: Official Tools]] | [[Category:Arma 3: Official Tools]] | ||
[[Category:DayZ: Official Tools]] | [[Category:DayZ: Official Tools]] |
Revision as of 23:57, 29 December 2020
Basic information
- Author:
- Bohemia Interactive
- Compatibility:
- Armed Assault, Arma 2, Arma 3, DayZ
- Download:
- Part of Arma 3 and DayZ Tools packages on Steam
Description
- Description:
- CfgConvert is a command line tool for converting configs between text and binary representation.
If you use the interface (cfgConvertGUI), based on the input file, it detects if it needs to `binarize` or `unbinarize`.
Usage
- Line call:
- cfgConvert.exe [-bin | -txt | -xml | -q | -test ] {[-dst <destination>] <source>}
cfgConvertGUI.exe - Options:
-
- -bin - converts input to binarised config
- -txt - converts input to unbinarised config
- -xml - converts input to XML format
- -q - quiet mode, does not display errors
- -test - test mode, only loads the file and shows potential errors without writing anything
- -dst - defines the output destination
- Examples:
// CPP to Bin cfgConvert.exe -bin -dst p:\addon\config.bin p:\addon\config.cpp // Bin to CPP cfgConvert.exe -txt -dst p:\addon\config.cpp p:\addon\config.bin // Binarized SQM to unbinarized SQM cfgConvert.exe -txt -dst p:\Arma3\missions\myMission\mission_dest.sqm p:\Arma3\missions\myMission\mission_source.sqm
Licenses
- Licensing:
- Bohemia Interactive End User License Agreement
- See also:
- BinToCppAll.bat for converting all files in a folder and subfolders.