tags: [rpgmaker] title: 解包《雨宿公车站》与《黄昏的叙事诗》 last_modified_at: 2022-8-13 slug: rpgmaker-unpack redirect_from:
顺带一提,Translator++ 在识别 RPG Maker 的版本及加密算法方面有比较好的效果
把 Game.rgss3a
丢进解包器里,没了
无需解包,资源文件已位于 www
文件夹内
使用了 Enigma
,只需要把 Game.exe
丢进 EnigmaVBUnpacker
里就能解
一个将繁中资源文件转换为简中的代码:
from zhconv import convert
for i in os.listdir():
with open(i,"rb") as f:
ff=f.read().decode("utf8")
with open(i,"w",encoding="utf8") as f:
f.write(convert(ff,'zh-cn'))
工欲善其事,必先利其器,不要一上来就拿个 binwalk
瞎撞!
神作!