22 lines
616 B
Plaintext
22 lines
616 B
Plaintext
|
|
/*
|
||
|
|
文件名:Interface.nut
|
||
|
|
路径:Base/Interface.nut
|
||
|
|
创建日期:2025-05-01 07:39
|
||
|
|
文件用途:所有基础文件加载以后 将会执行的逻辑 用于初始化一些接口和默认设置
|
||
|
|
*/
|
||
|
|
|
||
|
|
//消息框黏贴
|
||
|
|
NativePointer(0x011C53B0).writeShort(0x1B0);
|
||
|
|
|
||
|
|
//修复233号弹窗
|
||
|
|
NativePointer(0x00727017).writeByteArray([0xEB, 0x11, 0x90, 0x90, 0x90, 0x90, 0x90]);
|
||
|
|
|
||
|
|
//反遍历函数
|
||
|
|
NativePointer(0x1370FD7).writeInt(0);
|
||
|
|
|
||
|
|
//全局的道具信息
|
||
|
|
if (!getroottable().rawin("Rindro_ItemInfoObject")) Rindro_ItemInfoObject <- {};
|
||
|
|
|
||
|
|
//开启热重载目录
|
||
|
|
if(getroottable().rawin("RINDROLOCAL"))Sq_AutoReload("sqr");
|