17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
/*
|
|
文件名:Cb_Player_Chanage_Equ.nut
|
|
路径:Dps_A/CallBack/Cb_Player_Chanage_Equ.nut
|
|
创建日期:2024-06-26 23:17
|
|
文件用途:玩家更换装备
|
|
*/
|
|
|
|
if (!("Cb_player_chanage_equ_Func" in getroottable())) Cb_player_chanage_equ_Func <- {};
|
|
|
|
function Cb_player_chanage_equ(C_User) {
|
|
local SUser = User(C_User);
|
|
if (SUser) {
|
|
foreach(_Index, Func in Cb_player_chanage_equ_Func) {
|
|
Func(SUser);
|
|
}
|
|
}
|
|
} |