Multiple sqf calls in mission.sqm?

kbassil

New Member
Can you have multiple .sqf files that you reference in the mission.sqm file? If so, how do you point to more than one? In other words, if my sqf is called "custom.sqf" but I want to add "custom2.sqf" into the call, how would I edit this code to make that appear?

[] execVM "custom.sqf";
 
im just gonna take a shot in the dark.....but

Code:
[] execVM "custom.sqf";
[] execVM "custom2.sqf";

maybe?
 
Back
Top