Guest User

Untitled

a guest
Jul 26th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //Init field on object
  2. this addAction ["Test", {[this] execVM "set_respawn_point.sqf"}]
  3.  
  4. //set_respawn_point.sqf
  5. _caller = _this select 0;
  6. _position = getPos _caller;
  7.  
  8. "respawn_west" setMarkerPos _position;
  9.  
  10. perm_resupply setPos _position;
  11.  
  12. hint "Respawn point set";
Advertisement
Add Comment
Please, Sign In to add comment