tge-was-taken / Atlus-Script-Tools

A set of tools for working with scripts used in various game developed by Atlus.
GNU General Public License v3.0
65 stars 40 forks source link

Add P3P & P4G Traditional Chinese charsets .tsv support #63

Closed EditorKos closed 1 year ago

EditorKos commented 1 year ago

Currently I'm trying to make a certain P3P mod into Traditional Chinese. Since there's no such charset tsv files for P3P & P4G in the tool yet, using AtlusScriptCompiler to extract stuff from .bf files will result in errors. Thankfully P3P has the same font mapping table with P4G, so I decided to create both ones to help anyone have the same problem. Maybe @tge-was-taken can update the release with these.

P3P+P4G_CHT_tsv.zip

For now if anyone wants to use it, put the tsv. files in "Charsets" folder, then use the codes below in cmd to decompile & compile.

P3P: AtlusScriptCompiler.exe (filename).bf -Decompile -Library P3P -Encoding P3P_CHT Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P3P -Encoding P3P_CHT

P4G: AtlusScriptCompiler.exe (filename).bf -Decompile -Library P4G -Encoding P4G_CHT Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P4G -Encoding P4G_CHT

tge-was-taken commented 1 year ago

Thanks! Fixed by 5df25fb