You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
Hello, can you add support for .cstl files from catsystem engine please? This kind of script format is used in newest games like Shin koihime musou kakumei, cyanotype daydream (english release) and other ones. Here's a tool that can manage this kind of script, just for reference: https://github.com/marcussacana/CatSceneEditor
and here's some scripts for test. scripts_cstl.zip
The text was updated successfully, but these errors were encountered:
Can you also implement .qdb along with it too? It's a part of Catsystem2 and contains text such like this
My friend said it uses utf-8 and he gave some info about it qdb.zip
import zlib
with open('tips_en.qdb', 'rb') as fs:
stm = fs.read()
with open('tips_en_decompressed.qdb', 'wb') as fs:
fs.write(zlib.decompress(stm[12:]))
This code should help decompress the qdb file
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, can you add support for .cstl files from catsystem engine please? This kind of script format is used in newest games like Shin koihime musou kakumei, cyanotype daydream (english release) and other ones. Here's a tool that can manage this kind of script, just for reference: https://github.com/marcussacana/CatSceneEditor
and here's some scripts for test.
scripts_cstl.zip
The text was updated successfully, but these errors were encountered: