Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. local VEHICLE = {}
  2. VEHICLE.ID = "vehicle_minicoupe";
  3. VEHICLE.Name = "Mini Coupe";
  4. VEHICLE.Description = "Mini Coupe";
  5. VEHICLE.Model = "models/tdmcars/mini_coupe.mdl;
  6. VEHICLE.Script = "scripts/vehicles/tdmcars/camerozl1.txt";
  7. VEHICLE.VIPOnly = false;
  8. VEHICLE.Max = false;
  9. VEHICLE.Teams = false;
  10. VEHICLE.EnterTeams = false;
  11. VEHICLE.HasSirens = false
  12. VEHICLE.SirenEntity = "";
  13. VEHICLE.FirstPerson = Vector(0,0,0);
  14. VEHICLE.ThirdPerson = Vector(0,0,0);
  15. VEHICLE.CanColor = true;
  16.  
  17. VEHICLE.UnderglowPos = Vector(1.35,3.5,3.9);
  18.  
  19. VEHICLE.PassengerSeats = {
  20. {Vector(16.6, -11.9, 25.3), Angle(0, 0, 8), Local2World=true},
  21. {Vector(12.9, -48.8, 25.9), Angle(0, 0, 8), Local2World=true},
  22. {Vector(11.9, -48.8, 25.9), Angle(0, 0, 8), Local2World=true},
  23. };
  24.  
  25. VEHICLE.Exits = {
  26. Vector(-75, 0, 10)
  27. };
  28.  
  29. VEHICLE.Cost = 100000;
  30. VEHICLE.TrunkSpace = 12;
  31.  
  32. VEHICLE_DB[VEHICLE.ID] = VEHICLE;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement