Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 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 = "Whelen Legacy",
  28. Scale = 1,
  29. Pos = Vector( 0, -20, 68.7 ),
  30. Ang = Angle( 0, 90, 0 ),
  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. Phase = "A",
  41. },
  42. {
  43. ID = "Whelen Ion",
  44. Scale = 1,
  45. Pos = Vector( -10, 98.7, 30 ),
  46. Ang = Angle( 0, 4, 0 ),
  47. Color1 = "BLUE",
  48. Phase = "B",
  49. },
  50. {
  51. ID = "Interior Matrix",
  52. Scale = 1,
  53. Pos = Vector( -3, -75, 46.3 ),
  54. Ang = Angle( 0, 270, 0 )
  55. },
  56. }
  57.  
  58.  
  59. EMV.Sequences = {
  60. Sequences = {
  61. { Name = "CODE 1", Stage = "M1", Components = {}, Disconnect = {} },
  62. { Name = "CODE 2", Stage = "M2", Components = {}, Disconnect = {} },
  63. { Name = "CODE 3", Stage = "M3", Components = {}, Disconnect = {} }
  64. },
  65. Traffic = {
  66. { Name = "Folgen", Stage = "F", Components = {}, Disconnect = {} },
  67. { Name = "Warnen", Stage = "KB", Components = {}, Disconnect = {} },
  68. { Name = "Links", Stage = "L", Components = {}, Disconnect = {} },
  69. { Name = "Rechts", Stage = "R", Components = {}, Disconnect = {} },
  70. }
  71. }
  72.  
  73. local V = {
  74. Name = VehicleName,
  75. Class = "prop_vehicle_jeep",
  76. Category = "LHS Cars",
  77. Author = "[LHS]Luexx",
  78. Model = "models/tdmcars/vw_golfgti_14.mdl",
  79. KeyValues = { vehiclescript = "scripts/vehicles/TDMCars/vw_golfgti_14.txt" },
  80. IsEMV = true,
  81. EMV = EMV,
  82. HasPhoton = true,
  83. Photon = "PHOTON_INHERIT"
  84. }
  85. list.Set( "Vehicles", VehicleName, V )
  86.  
  87. if EMVU then EMVU:OverwriteIndex( VehicleName, EMV ) end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement