Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.65 KB | None | 0 0
  1. _export =
  2. [
  3.     ["Land_BagFence_Long_F",[1.74243,2.83789,0.785207],0],
  4.     ["Land_BagFence_Long_F",[4.66504,2.83789,0.785207],0],
  5.     ["Land_BagFence_Long_F",[3.21143,-2.85498,-0.000999928],0],
  6.     ["Land_BagFence_Long_F",[3.15479,-2.85718,0.785207],0],
  7.     ["Land_BagFence_Round_F",[3.22803,-5.10815,-0.00130129],0]
  8. ];
  9.  
  10. _objArray = [];
  11.  
  12. {
  13.     _relpos = _x select 1;
  14.     _npos = [(_pos select 0) + (_relpos select 0),(_pos select 1) + (_relpos select 1),(_pos select 2) + (_relpos select 2)];
  15.     _obj = createVehicle [(_x select 0),_npos,[],0,"CAN_COLLIDE"];
  16.     _obj setPosATL _npos;
  17.     _obj setVectorUp (surfaceNormal _npos);
  18.     _objArray pushBack _obj;
  19.     false;
  20. } count _export;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement