Jump to content

Reggedon

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Reggedon

  • Rank
    Rookie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Oh one more thing this is on a custom map Tschernobyl. Idk if this is a factor.
  2. 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
  3. Hey there, I'm running into an issue where Arma 3 is unable to locate the script file "ESS_system\functions\ESS_Launch.sqf". The error message I'm receiving is that the aforementioned .sqf file cannot be found. I have checked the following: File and folder names are correct and their capitalization matches exactly. Directory structure is YourMissionFolder\ESS_system\functions\ESS_Launch.sqf. The file ESS_Launch.sqf has the correct .sqf extension. The ESS_system folder is located in the mission's root directory. Despite all of these checks, I'm still receiving the error that "ESS_system\functions\ESS_Launch.sqf" cannot be found. Thanks in advance!
×