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,11 @@
Cb_User_Party_Create_Func <- {};
function Cb_userpartycreate(C_User) {
local SUser = User(C_User);
local Flag = true;
foreach(_Index, Func in Cb_User_Party_Create_Func) {
local Ret = Func(SUser);
if (!Ret) Flag = false;
}
return Flag;
}