标题
[General]
Company=ESCUDE
Product=FemmeFataleTrial
Title=悠刻のファムファタル Ver1.00
字体和编码
这里
解包后进入
//===========================================================================
// フォントの設定
//===========================================================================
void init_default_font(int font_id, int weight)
{
default_font_id = font_id;
default_font_weight = weight;
ini_gets("Font", "Face", "", user_font_name, sizeof(user_font_name), NULL);
if(user_font_name[0] != '\0'){
default_font_id = FT_USER;
default_font_weight = 400;
if(ini_geti("Font", "Bold", 0, NULL)){
default_font_weight = 700;
}
}
}
↑这是
↓我们要把它改成。
void init_default_font(int font_id, int weight)
{
default_font_id = FT_USER;
default_font_weight = 400;
strcpy(user_font_name,"SimHei");
//ini_gets("Font", "Face", "", user_font_name, sizeof(user_font_name), NULL);
//if(user_font_name[0] != '\0'){
// default_font_id = FT_USER;
// default_font_weight = 400;
// if(ini_geti("Font", "Bold", 0, NULL)){
// default_font_weight = 700;
// }
//}
}
字符检测(边界检查)
人名
图片
文本
游戏文本在script.bin文件里,把他解包后,得到一堆001和bin文件。这里如果出现001,大概率是加密的脚本。这里经过
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容