This commit is contained in:
lenheart
2024-09-16 17:05:26 +08:00
commit 237bcf8719
53 changed files with 21032 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*
文件名:MoveArea.nut
路径:CallBack/MoveArea.nut
创建日期:2024-04-08 16:28
文件用途:区域移动HOOK
*/
Cb_Move_Area_Func <- {};
function Cb_move_area(CUser, TownIndex, AreaIndex) {
local Flag = true;
foreach(_Index, Func in Cb_Move_Area_Func) {
local Ret = Func(CUser, TownIndex, AreaIndex);
if (!Ret) Flag = false;
}
return Flag;
}