Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. AddCSLuaFile()
  2.  
  3. local VehicleName = "[NRW]VW Golf GTI Polizei"
  4.  
  5. local EMV = {}
  6.  
  7. EMV.Siren = 18
  8. EMV.Skin = 5
  9. EMV.Color = Color(255,255,255)
  10.  
  11. EMV.BodyGroups = {
  12. { 0, 0 }, -- VW
  13. { 1, 0 }, -- Golf
  14. { 2, 0 }, -- GTI
  15. { 3, 0 }, -- 2014
  16. { 4, 0 }, --
  17. { 5, 3 }, -- front bumper
  18. { 6, 2 }, -- rear bumper
  19. { 7, 2 }, -- hood
  20. { 8, 0 }, -- headlights
  21. { 9, 0 }, -- taillights
  22. { 10, 1 }, -- rims
  23. }
  24.  
  25. EMV.Auto = {
  26. {
  27. ID = "Hella RTK 7 DE",
  28. Scale = 1,
  29. Pos = Vector( -27, -05, 67.4 ),
  30. Ang = Angle( 0, 180, 3 ),
  31. Color1 = "BLUE",
  32. Color2 = "BLUE",
  33. },
  34. {
  35. ID = "Whelen Ion",
  36. Scale = 1,
  37. Pos = Vector( 10, 98.7, 30 ),
  38. Ang = Angle( 0, -4, 0 ),
  39. Color1 = "BLUE",
  40. },
  41. {
  42. ID = "Whelen Ion",
  43. Scale = 1,
  44. Pos = Vector( -10, 98.7, 30 ),
  45. Ang = Angle( 0, 4, 0 ),
  46. Color1 = "BLUE",
  47. },
  48. {
  49. ID = "Interior Matrix",
  50. Scale = 1,
  51. Pos = Vector( -2.6, -72, 46.3 ),
  52. Ang = Angle( 0, 270, 0 )
  53. },
  54. }
  55.  
  56. EMV.Selections = {
  57. [1] = {
  58. Name = "Interior Matrix",
  59. Options = {
  60. { Name = "Ausgeklappt", Auto = { 1, 2, 3, 4 } },
  61. { Name = "Eingeklappt", Auto = { 1, 2, 3 } },
  62. },
  63. },
  64. }
  65.  
  66. EMV.Sequences = {
  67. Sequences = {
  68. { Name = "CODE 1", Stage = "M1", Components = {}, Disconnect = {} },
  69. { Name = "CODE 2", Stage = "M2", Components = {}, Disconnect = {} },
  70. { Name = "CODE 3", Stage = "M3", Components = {}, Disconnect = {} }
  71. },
  72. Traffic = {
  73. { Name = "Folgen", Stage = "F", Components = {}, Disconnect = {} },
  74. { Name = "Warnen", Stage = "KB", Components = {}, Disconnect = {} },
  75. { Name = "Links", Stage = "L", Components = {}, Disconnect = {} },
  76. { Name = "Rechts", Stage = "R", Components = {}, Disconnect = {} },
  77. }
  78. }
  79.  
  80. local V = {
  81. Name = VehicleName,
  82. Class = "prop_vehicle_jeep",
  83. Category = "GPX Cars",
  84. Author = "[LHS]Luexx",
  85. Model = "models/tdmcars/vw_golfgti_14.mdl",
  86. KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/vw_golfgti_14.txt" },
  87. IsEMV = true,
  88. EMV = EMV,
  89. HasPhoton = true,
  90. Photon = "PHOTON_INHERIT"
  91. }
  92. list.Set( "Vehicles", VehicleName, V )
  93.  
  94. if EMVU then EMVU:OverwriteIndex( VehicleName, EMV ) end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement