init.sqf 482 B

1234567891011121314151617181920
  1. private["_title", "_subfolder", "_pos", "_taskDescription", "_fsmHandle"];
  2. _subfolder = _this select 0;
  3. _code = _this select 1;
  4. /*
  5. Example config file for Side Mission
  6. All values are required
  7. */
  8. _title = "Get Documents";
  9. _pos = ["land", true, 15] call AW_fnc_findSpace;
  10. /*
  11. And now you're not allowed to edit.
  12. No editing! I said GO! SHOO!
  13. */
  14. _fsmHandle = [_pos, _code] execFSM format["missions\tactical\%1\mission.fsm", _subfolder];
  15. _ret = [_title, _pos, _fsmHandle]; _ret