veh_destroyed.sqf not fou

HybridFury

New Member
I have an issue. This is in my server report: 17:43:42 Warning Message: Script z\addons\dayz_server\DZAI\spawn_functions\veh_destroyed.sqf not found. Apparently this file is missing or it is a typo as it's not on github either. Could this have something to do with vehicles spawned via Fuch's epoch mission system blowing up when you get in them? Any help would be great.
 
Line 85 in DZAI\Init\dzai_functions calls to this file :
Code:
DZAI_vehDestroyed = compile preprocessFileLineNumbers format ["%1\spawn_functions\veh_destroyed.sqf",DZAI_directory];
Yet, it does not exist....?
 
Should it be:
Code:
DZAI_vehDespawn = compile preprocessFileLineNumbers format ["%1\spawn_functions\veh_despawn.sqf",DZAI_directory];
?
 
Change it to this:

Code:
DZAI_vehDestroyed = compile preprocessFileLineNumbers format ["%1\compile\veh_destroyed.sqf",DZAI_directory];
 
Back
Top