Advertisement
Guest User

updated

a guest
Jan 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. loadoutsaverfnc = {
  2. cursorTarget addAction["<t color='#ED3F3F'>Save Your Loadout</t>",
  3. {
  4. {
  5. [] sleep
  6. {
  7. player setVariable ["Saved_Loadout",getUnitLoadout player];
  8. waitUntil {!alive player};
  9. waitUntil {alive player};
  10. sleep 2;
  11. player setUnitLoadout (player getVariable ["Saved_Loadout",[]]);
  12. };
  13. }; remoteExec["BIS_fnc_call",0];
  14. }];
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement