Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. // the initServer holds this exec: setLoadouts = [] execVM "setLoadouts.sqf";
  2. applyLoadouts = {
  3.     _this setUnitLoadout (configFile >> "EmptyLoadout");
  4.     _this setUnitLoadout (missionConfigFile >> "MyLoadout");
  5. };
  6.  
  7.  
  8. // first init set up
  9. _units = [bf1, bf2, bf3, bf4];
  10. {_x call applyLoadouts} forEach _units;
  11.  
  12. systemChat "Custom Loadouts are opt in";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement