Advertisement
Guest User

Untitled

a guest
Sep 13th, 2016
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. private _vehicles = [
  2. ["Campfire_burning_F", [1978.28, 9155.81, 281.88], [0, 0.998974, -0.0452868], [0.037308, 0.0452553, 0.998279], true],
  3. ["Exile_Sign_Office", [1961.84, 9125.65, 284.17], [-0.173648, -0.984808, 0], [0, 0, 1], false],
  4. ["Exile_Sign_WasteDump", [1961.83, 9125.65, 285.401], [-0.173648, -0.984808, 0], [0, 0, 1], false],
  5. ["Exile_RussianRouletteChair", [1962.56, 9166.88, 281.796], [0.422302, 0.904638, -0.0573736], [0.0386793, 0.0452529, 0.998226], true],
  6. ["Exile_Sign_RussianRoulette", [1968.17, 9167.91, 282.533], [-0.900319, 0.435231, 0], [0, 0, 1], false],
  7. ["Exile_RussianRouletteChair", [1963.29, 9166.54, 281.783], [0.453651, 0.889297, -0.0578929], [0.0386793, 0.0452529, 0.998226], true],
  8. ["Exile_RussianRouletteChair", [1961.93, 9165.3, 281.892], [-0.46912, -0.881219, 0.0581261], [0.0386793, 0.0452529, 0.998226], true],
  9. ["Exile_RussianRouletteChair", [1962.6, 9164.92, 281.883], [-0.453651, -0.889297, 0.0578929], [0.0386793, 0.0452529, 0.998226], true],
  10. ["Exile_RussianRouletteChair", [1961.27, 9166.43, 281.866], [-0.90563, 0.423772, 0.0158804], [0.0386793, 0.0452529, 0.998226], true],
  11. ["Exile_RussianRouletteChair", [1963.85, 9165.17, 281.824], [0.89034, -0.455085, -0.0138684], [0.0386793, 0.0452529, 0.998226], true],
  12. ["Land_LampShabby_F", [1956.98, 9127.42, 287.272], [0.838671, 0.544639, 0], [0, 0, 1], true],
  13. ["Land_LampShabby_F", [1970.52, 9160.51, 285.511], [0.0174523, 0.999848, 0], [0, 0, 1], true],
  14. ["Land_LampShabby_F", [1999.74, 9124.78, 286.082], [0.529919, 0.848048, 0], [0, 0, 1], true],
  15. ["Land_LampShabby_F", [1972.14, 9112.33, 287.45], [0.838671, 0.544639, 0], [0, 0, 1], true],
  16. ["Land_LampShabby_F", [1994.97, 9137.55, 285.667], [-0.788011, 0.615662, 0], [0, 0, 1], true],
  17. ["Land_LampShabby_F", [1995.02, 9160.28, 284.628], [-0.707107, -0.707107, 0], [0, 0, 1], true],
  18. ["Land_LampShabby_F", [1972.19, 9124.4, 286.949], [0.798635, 0.601815, 0], [0, 0, 1], true],
  19. ["Exile_Sign_Locker", [1961.84, 9125.68, 286.627], [-0.173648, -0.984808, 0], [0, 0, 1], false],
  20. ["Exile_Locker", [1955.76, 9117.82, 284.484], [-0.987688, 0.156435, 0], [0, 0, 1], true],
  21. ["Exile_Locker", [1955.52, 9116.39, 284.484], [-0.987688, 0.156435, 0], [0, 0, 1], true]
  22. ];
  23.  
  24. {
  25. private _vehicle = (_x select 0) createVehicle (_x select 1);
  26. _vehicle allowDamage false;
  27. _vehicle setPosWorld (_x select 1);
  28. _vehicle setVectorDirAndUp [_x select 2, _x select 3];
  29. _vehicle enableSimulationGlobal (_x select 4);
  30. _vehicle setVariable ["ExileIsLocked", -1, true];
  31.  
  32. if (_vehicle isKindOf "Exile_RussianRouletteChair") then
  33. {
  34. ExileRouletteChairs pushBack _vehicle;
  35. ExileRouletteChairPositions pushBack [_x select 1, getDir _vehicle];
  36. };
  37. }
  38. forEach _vehicles;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement