satan53x / SExtractor

从GalGame脚本提取和导入文本
GNU General Public License v3.0
241 stars 15 forks source link

Bin extraction issue #82

Closed HOKORISAMA closed 6 months ago

HOKORISAMA commented 6 months ago

I was trying to extract some file by debonosu works, SE was able to extract but on a closer look it missed some line like- image This is the image when i inserted the text . I searched the file in orig folder but wasn't able to found this line- here are the files. script.zip I used bin violent .

satan53x commented 6 months ago

BIN_VIOLENT's default regex checkJIS=[\r\n] means that half-width charactors only allow \r or \n. If you need more, you should add them such as checkJIS=[\r\n{}/].

HOKORISAMA commented 6 months ago

Worked! Thanks.