-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added optional command line argument for out files
- and also added README.md
- Loading branch information
Showing
6 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# AoSLang-tool | ||
|
||
Tool for AoSLang-XX.bin files from Ben Aksoy's Ace of Spades voxlap game. | ||
|
||
You can read, export and pack them with it. | ||
|
||
## Usage | ||
`aoslang-tool.exe <export|read|pack> <filename> [out filename]` | ||
|
||
`<> - required, [] - optional - for "export" & "pack"` | ||
|
||
## Usage examples | ||
|
||
`aoslang-tool.exe read AoSLang-EN.bin` | ||
Reads the file and outputs strings and its respective offsets. | ||
|
||
`aoslang-tool.exe export AoSLang-EN.bin MyAoSLangExport.txt` | ||
Exports all the strings to text file. | ||
|
||
`aoslang-tool.exe pack MyAoSLangExport.txt MyAosLangFile.bin` | ||
Takes text file with strigns and converts it to aoslang binary file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,5 +32,6 @@ | |
</ItemGroup> | ||
<ItemGroup> | ||
<None Include=".gitignore" /> | ||
<None Include="README.md" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters