arma2-epoch-server/MPMissions/DayZ_Epoch_24.Napf/dayz_code/init/compiles.sqf
2022-04-21 16:15:41 +03:00

14 lines
592 B
Plaintext
Executable File

if (isServer) then {
diag_log "Loading custom server compiles";
};
if (!isDedicated) then {
diag_log "Loading custom client compiles";
player_selectSlot = compile preprocessFileLineNumbers "dayz_code\compile\ui_selectSlot.sqf";
fnc_usec_selfActions = compile preprocessFileLineNumbers "dayz_code\compile\fn_selfActions.sqf";
locateVehicle = compile preprocessFileLineNumbers "scripts\locateVehicle.sqf";
remoteVehicle = compile preprocessFileLineNumbers "scripts\remoteVehicle\remoteVehicle.sqf";
};
DZ_KeyDown_EH = compile preprocessFileLineNumbers "dayz_code\compile\keyboard.sqf";