Advertisement
Guest User

gorka fix

a guest
Nov 29th, 2016
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.78 KB | None | 0 0
  1. // special bonus - the factory at gorka floats and really annoys me. i've just put some piers under it - not perfect... but close enough.
  2. // execute this on the server like any other map edit.
  3.  
  4. private _gorkafixobjects = [
  5.     // Gorka Factory Fix
  6.     ["Land_Pier_F",[9424.72,8929.57,321.576],[[-0.751536,0.659692,0],[0,0,1]],[false,false]],
  7.     ["Land_Pier_F",[9423.71,8945.44,321.573],[[-0.666769,-0.745264,0],[0,0,1]],[false,false]],
  8.     ["Land_Pier_F",[9407.48,8927.14,321.604],[[0.667968,0.74419,0],[0,0,1]],[false,false]]
  9. ];
  10. {
  11.     private _object = (_x select 0) createVehicle [0,0,0];
  12.     _object setPosASL (_x select 1);
  13.     _object setVectorDirAndUp (_x select 2);
  14.     _object enableSimulationGlobal ((_x select 3) select 0);
  15.     _object allowDamage ((_x select 3) select 1);
  16. } forEach _gorkafixobjects;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement