This commit is contained in:
lenheart
2024-11-15 19:53:44 +08:00
parent 6c71c79563
commit 9d84fe256d
17 changed files with 1042 additions and 106 deletions

View File

@@ -1,6 +1,19 @@
function sqr_main(){
function sqr_main() {
print("服务端插件启动");
print("服务端插件启动");
}
}
//玩家完成任务
Cb_fnStatQuestClear_Enter_Func <- {};
Cb_fnStatQuestClear_Leave_Func <- {};
_Hook_Register_Currency_Func_("0x8664412", ["pointer", "int", "int"], Cb_fnStatQuestClear_Enter_Func, Cb_fnStatQuestClear_Leave_Func);
Cb_fnStatQuestClear_Enter_Func.text <- function(args) {
local user = User(args[0])
print(args[1]);
print(user.GetCharacName());
};