Thank you so much for your quick response. Yes, you are right, I have been activating the call via a trigger in the editor.
I've made sure to include the initial "null" in the trigger call, like so:
null = [FACTION,SIDE,"MARKER",[NUM_TEAM_ROAD,MAX_UNITS_PER_TEAM_ROAD],[NUM_TEAM_HOUSE,MAX_UNITS_PER_TEAM_HOUSE],[STATIC],[LIGHT_VEHICLE,BEHAVIOR_LGH,CHANCE],[HEAVY_VEHICLE,BEHAVIOR_HVY],DISTANCE] execVM "ESS_system\functions\ESS_Launch.sqf";
The path to the file appears to be correct and, to my understanding, matches the path in the trigger call. Still, I continue to receive an error indicating that the script file cannot be found.
Here's the folder structure of my mission for your reference:
MPMissions
\MyMission
\ESS_system
\functions
ESS_Launch.sqf
ESS_Call
initServer.sqf
description.ext
In the description.ext, I've defined ESS_Call and ESS_Launch functions like so:
Within the initServer I have placed the
[]execVM "\ESS\ESS_system\ESS_Call.sqf";
some within the arma discord had suggested setting up the description.ext with the CfgFunctions, I was actually in the middle of testing that when I saw your response. and heres what i have so far.
class CfgFunctions {
class ESS {
class Functions {
class initialize {
file = "ESS\ESS_Call.sqf";
preInit = 1;
};
class spawnGroup {
file = "ESS\functions\ESS_Launch.sqf";
};
};
};
};
again thanks for the reply. let me know if you need any more context