Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
potchy authored Jun 25, 2023
1 parent 89a716c commit e19a442
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,46 @@
# gcc-voice-migration-tool
Renames voice files from old Grand Chase client (2003-2015) so that they can used in Steam's rerelease (2021).

## options
```
-s, --source <source> (REQUIRED)
-c, --compare <compare> (REQUIRED)
-d, --destination <destination> (REQUIRED)
-l, --locale <locale>
```

## example usage (Batch)
```bat
:: Brazilian portuguese (old-school dub, unavailable in Steam)
GccVoiceMigrationTool.exe ^
-s "C:\Source\br-classic" ^
-c "C:\Source\br-kr-us" ^
-d "C:\Destination\br-classic"
:: Brazilian portuguese (2012 redub)
GccVoiceMigrationTool.exe ^
-s "C:\Source\br-kr-us" ^
-c "C:\Source\br-kr-us" ^
-d "C:\Destination\br" ^
-l br
:: English
GccVoiceMigrationTool.exe ^
-s "C:\Source\br-kr-us" ^
-c "C:\Source\br-kr-us" ^
-d "C:\Destination\us" ^
-l us
:: Korean
GccVoiceMigrationTool.exe ^
-s "C:\Source\br-kr-us" ^
-c "C:\Source\br-kr-us" ^
-d "C:\Destination\kr" ^
-l "" kr &:: the objective of the empty string as first argument is to also include files that do not have a locale marker (they are in Korean by default)
:: Japanese (non-official dub, unavailable in Steam)
GccVoiceMigrationTool.exe ^
-s "C:\Source\jp" ^
-c "C:\Source\br-kr-us" ^
-d "C:\Destination\jp"
```

0 comments on commit e19a442

Please sign in to comment.