25 lines
582 B
Plaintext
25 lines
582 B
Plaintext
|
|
/*
|
||
|
|
文件名:procAppend_ATGunner.nut
|
||
|
|
路径:procAppend/procAppend_ATGunner.nut
|
||
|
|
创建日期:2022-09-04 20:19
|
||
|
|
文件用途:女枪手Proc循环函数
|
||
|
|
*/
|
||
|
|
|
||
|
|
if (!getroottable().rawin("procAppend_ATGunner_Table")) procAppend_ATGunner_Table <- {}
|
||
|
|
|
||
|
|
function procAppend_ATGunner(obj) {
|
||
|
|
if (!obj)
|
||
|
|
return;
|
||
|
|
procAppend_All(obj);
|
||
|
|
|
||
|
|
//根据主状态判断执行函数
|
||
|
|
if (procAppend_ATGunner_Table.rawin(Chr_State_Table[15]) == true) {
|
||
|
|
foreach (Flag,Func in procAppend_ATGunner_Table[Chr_State_Table[15]]) {
|
||
|
|
Func(obj);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
|