Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.16 KB | None | 0 0
  1. AddCSLuaFile()
  2.  
  3. local VehicleName = "Truenorth Bearcat G3"
  4.  
  5. local EMV = {}
  6.  
  7. EMV.Siren = 9
  8. EMV.Skin = 0
  9. EMV.Color = Color(255,255,255)
  10.  
  11. EMV.BodyGroups = {
  12.     { 0, 0 }, -- Body
  13.     { 1, 0 }, -- clamped1
  14.     { 2, 0 }, -- clamped2
  15.     { 3, 0 }, -- clamped3
  16.     { 4, 0 }, -- clamped4
  17.     { 5, 0 }, -- clamped5
  18.     { 6, 0 }, -- clamped6
  19.     { 7, 0 }, -- clamped7
  20.     { 8, 0 }, -- clamped8
  21.     { 9, 0 }, -- clamped9
  22.     { 10, 0 }, -- clamped10
  23.     { 11, 0 }, -- clamped11
  24.     { 12, 0 }, -- clamped12
  25.     { 13, 0 }, -- clamped13
  26. }
  27.  
  28. EMV.Auto = {
  29.     {
  30.         ID = "Anemolis72 Truenorth G3 Grille Lights",
  31.         Scale = 1,
  32.         Pos = Vector( 0, 0, 0 ),
  33.         Ang = Angle( 0, 0, 0 ),
  34.     },
  35.     {
  36.         ID = "Anemolis72 Truenorth G3 Fog Flashers",
  37.         Scale = 1,
  38.         Pos = Vector( 0, 0, 0 ),
  39.         Ang = Angle( 0, 0, 0 ),
  40.     },
  41.     {
  42.         ID = "Anemolis72 Truenorth G3 Front Upper",
  43.         Scale = 1,
  44.         Pos = Vector( 0, 0, 0 ),
  45.         Ang = Angle( 0, 0, 0 ),
  46.     },
  47.     {
  48.         ID = "Anemolis72 Truenorth G3 Rear Lower",
  49.         Scale = 1,
  50.         Pos = Vector( 0, 0, 0 ),
  51.         Ang = Angle( 0, 0, 0 ),
  52.     }
  53. }
  54.  
  55. EMV.Sequences = {
  56.     Sequences = {
  57.         { Name = "CODE 1", Stage = "M1", Components = {}, Disconnect = {} },
  58.         { Name = "CODE 2", Stage = "M2", Components = {}, Disconnect = {} },
  59.         { Name = "CODE 3", Stage = "M3", Components = {}, Disconnect = {} }
  60.     },
  61.     Traffic = {
  62.         { Name = "LEFT", Stage = "L", Components = {}, Disconnect = {} },
  63.         { Name = "DIVERGE", Stage = "D", Components = {}, Disconnect = {} },
  64.         { Name = "RIGHT", Stage = "R", Components = {}, Disconnect = {} }
  65.     },
  66.     Illumination = {
  67.         {
  68.             Name = "TKDN",
  69.             Components = {
  70.             },
  71.         },
  72.     }
  73. }
  74.  
  75.  
  76. EMV.Lamps = {
  77.     ["tkdn"] = {
  78.         Color = Color(106,96,96,255),
  79.         Texture = "effects/flashlight001",
  80.         Near = 200,
  81.         FOV = 70,
  82.         Distance = 700,
  83.     }
  84. }
  85.  
  86. local V = {
  87.     Name = VehicleName,
  88.     Class = "prop_vehicle_jeep",
  89.     Category = "Truenorth Police Pack - SWAT",
  90.     Author = "anemolis72",
  91.     Model = "models/perrynsvehicles/bearcat_g3/bearcat_g3.mdl",
  92.     KeyValues = { vehiclescript = "scripts/vehicles/perryn/bearcat_g3.txt" },
  93.     IsEMV = true,
  94.     EMV = EMV,
  95.     HasPhoton = true,
  96.     Photon = "PHOTON_INHERIT"
  97. }
  98. list.Set( "Vehicles", VehicleName, V )
  99.  
  100. if EMVU then EMVU:OverwriteIndex( VehicleName, EMV ) end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement