init.sqf 703 B

12345678910111213141516171819
  1. private["_title", "_subfolder", "_pos", "_taskDescription", "_fsmHandle"];
  2. /*
  3. Example config file for Side Mission
  4. All values are required
  5. */
  6. _title = "Destroy Mortar Team";
  7. _subfolder = "mortarTeam"; //name of the SM sub-folder
  8. _pos = ["land", true, 5] call AW_fnc_findSpace;
  9. _taskDescription = "Your objective is simple, fellas. Find and destroy the enemy chopper. OPFOR forces will gain a pretty hefty advantage if they get that thing up in the air, so let's blow the bugger before they even get the chance!";
  10. /*
  11. And now you're not allowed to edit.
  12. No editing! I said GO! SHOO!
  13. */
  14. _fsmHandle = [_title, _subfolder, _pos, _taskDescription] execFSM "missions\priority\loader.fsm"; _fsmHandle