Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. /*
  2. File: init.sqf
  3. Author:
  4.  
  5. Description:
  6.  
  7. */
  8. StartProgress = false;
  9.  
  10.  
  11. [] execVM "briefing.sqf"; //Load Briefing
  12. [] execVM "scripts\statusbar.sqf";
  13. [] execVM "KRON_Strings.sqf";
  14. [] execVM "scripts\safezone.sqf";
  15. [] execVM "scripts\DynWeather.sqf";
  16. [] execVM "The-Programmer\GPS\init.sqf";
  17.  
  18. MAC_fnc_switchMove = { private ["_unit","_anim"];
  19. _unit = [_this,0,objNull,[objNull]] call BIS_fnc_param;
  20. _anim = [_this,1,"",[""]] call BIS_fnc_param;
  21. _cancelOwner = [_this,2,false,[true]] call BIS_fnc_param;
  22. if (isNull _unit || {(local _unit && _cancelOwner)}) exitWith {};
  23. _unit switchMove _anim;
  24. };
  25.  
  26. [] spawn life_fnc_autoSaveInv;
  27.  
  28. StartProgress = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement