装备跨界

This commit is contained in:
2025-12-15 15:02:34 +08:00
parent 374f3673ca
commit 7edd836c63
19 changed files with 875 additions and 35 deletions

View File

@@ -9,6 +9,9 @@ class _Rindro_Hacker {
HookData = null;
NextReturnAddress = null;
CpuContext = null;
constructor() {
HookTable = {};
HookData = {};
@@ -29,6 +32,17 @@ class _Rindro_Hacker {
HookTable.rawset(AddressStr, Controler);
}
}
function _Haker_SetNextReturnAddress(Address) {
local Buffer = "" + Address;
Rindro_Haker.NextReturnAddress = Buffer.slice(Buffer.find("0x") + 2, -1);
}
function _Haker_SetCpuContext(tab) {
Rindro_Haker.CpuContext = tab;
}
//初始化Hacker
if (!(getroottable().rawin("Rindro_Haker"))) Rindro_Haker <- _Rindro_Hacker();
@@ -60,4 +74,5 @@ OnSetCharacter_Control.MarrySystem <- function() {
L_sq_WA(L_sq_RA(L_sq_RA(0x01ADE0CC) + 0x60 + (i * 0x4)) + 0x18, Yosin_14SkillYpos2);
}
}
};
};