Advertisement
Guest User

Untitled

a guest
Jun 1st, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Original LHD placement script by ArMaTeC
  2. if (isServer) then {
  3. _NAEspawn = _this select 0;
  4. _NAEdir = getdir _NAEspawn;
  5. _NAEspawnpoint = [getposasl _NAEspawn select 0, getposasl _NAEspawn select 1, 0];
  6. deletevehicle _NAEspawn;
  7. _parts =
  8. [
  9. "MEA_Ship_NAEA12",
  10. "MEA_NAE_Hull_1",
  11. "MEA_NAE_Hull_2",
  12. "MEA_NAE_Hull_3",
  13. "MEA_NAE_Hull_4",
  14. "MEA_NAE_Hull_5",
  15. "MEA_NAE_Hull_6"
  16. ];
  17. {
  18. _template = _x createvehicle _NAEspawnpoint;
  19. _template setdir _NAEdir;
  20. _template setpos _NAEspawnpoint;
  21. } foreach _parts;
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement