init.sqf 635 B

12345678910111213141516171819
  1. private["_title", "_subfolder", "_pos", "_taskDescription", "_fsmHandle"];
  2. /*
  3. DO NOT EDIT ABOVE THIS COMMENT
  4. Example init for Side Missions.
  5. */
  6. _title = "Example Mission";
  7. _subfolder = "exampleMission"; //name of the SM sub-folder
  8. _pos = ["land"] call AW_fnc_findSpace;
  9. _taskDescription = "This is the description that will appear in the Side Mission task list. When writing, imagine it's a brief... briefing sent from HQ. Be descriptive but efficient.";
  10. /*
  11. No editing below here.
  12. I said no editing! I said GO! SHOO!
  13. */
  14. _fsmHandle = [_title, _subfolder, _pos, _taskDescription] execFSM "missions\side\loader.fsm"; _fsmHandle