init.sqf 443 B

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