A question about init.sqm

If I have two things to initialize do I use..
if (!isDedicated) then {[] execVM "fixes\change_streetlights.sqf","Scripts\kh_actions.sqf";

or
if (!isDedicated) then {[] execVM "fixes\change_streetlights.sqf";
if (!isDedicated) then {[] execVM "Scripts\kh_actions.sqf";

Well, I know these are both wrong so do I need to keep them all in the same folder and just point to that?
 
Code:
if (!isDedicated) then {
    [] execVM  "differentfilepath\script1.sqf";
    [] execVM  "filepath\script2.sqf";   
    [] execVM  "filepath\script3.sqf";
       
};
 
Back
Top