Files
DayZ-Epoch/SQF/dayz_code/compile/zombie_initialize.sqf
ebaydayz 097a02b19a Make zombie_agent.fsm customizable for admins #1877
Also fixed HandleDamage EH was added twice. We moved it to the configs
and forgot to take it out of the FSM in 6853263.
2017-02-01 20:36:00 -05:00

10 lines
383 B
Plaintext

// Moved from config to allow admins to modify
// Put agent second for compatibility with old configs like Namalsk custom zombies.
if (count _this == 1) then {
//Called from init EH
["", (_this select 0)] execFSM "\z\AddOns\dayz_code\system\zombie_agent.fsm";
} else {
//Called from local EH
["", (_this select 0), true] execFSM "\z\AddOns\dayz_code\system\zombie_agent.fsm";
};