Advertisement
Lahyene77

GTA V : Customs Cars Ressources

Nov 24th, 2015
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. ////////////////////////////////////////////////////////////////////////////////////////////
  2.  
  3. #VehicleMods
  4.  
  5. SET_VEHICLE_MOD_KIT(Vehicle vehicle, int modKit) modKit = 0
  6. SET_VEHICLE_MOD (Vehicle vehicle, int modType, int modIndex, BOOL customTires)
  7.  
  8. #ModType
  9. Spoilers - 0
  10. Front Bumper - 1
  11. Rear Bumper - 2
  12. Side Skirt - 3
  13. Exhaust - 4
  14. Frame - 5
  15. Grille - 6
  16. Hood - 7
  17. Fender - 8
  18. Right Fender - 9
  19. Roof - 10
  20. Engine - 11
  21. Brakes - 12
  22. Transmission - 13
  23. Horns - 14
  24. Suspension - 15
  25. Armor - 16
  26. Front Wheels - 23
  27. Back Wheels - 24 //only for motocycles
  28. Plate holders - 25
  29. Trim Design - 27
  30. Ornaments - 28
  31. Dial Design - 30
  32. Steering Wheel - 33
  33. Shifter Leavers - 34
  34. Plaques - 35
  35. Hydraulics - 38
  36.  
  37. ////////////////////////////////////////////////////////////////////////////////////////////
  38.  
  39. #ToggleVehicleMods
  40.  
  41. TOGGLE_VEHICLE_MOD(Vehicle vehicle, int modType, BOOL toggle)
  42.  
  43. Toggles:
  44. UNK17 - 17
  45. Turbo - 18
  46. UNK19 - 19
  47. Tire Smoke - 20
  48. UNK21 - 21
  49. Xenon Headlights - 22
  50.  
  51. ////////////////////////////////////////////////////////////////////////////////////////////
  52.  
  53. #Bulletproof tires
  54.  
  55. SET_VEHICLE_TYRES_CAN_BURST(Vehicle vehicle, BOOL value)
  56.  
  57. ////////////////////////////////////////////////////////////////////////////////////////////
  58.  
  59. #WindowsTint
  60.  
  61. SET_VEHICLE_WINDOW_TINT(Vehicle vehicle, int tint)
  62.  
  63. Tint:
  64. None - 0
  65. Pure Black - 1
  66. Dark Smoke - 2
  67. Light Smoke - 3
  68. Stock - 4
  69. Limo - 5
  70. Green - 6
  71.  
  72. ////////////////////////////////////////////////////////////////////////////////////////////
  73.  
  74. #PlateType
  75.  
  76.  
  77. SET_VEHICLE_NUMBER_PLATE_TEXT_INDEX(Vehicle vehicle, int plateIndex)
  78.  
  79. Plates:
  80. Blue/White - 0
  81. Yellow/black - 1
  82. Yellow/Blue - 2
  83. Blue/White2 - 3
  84. Blue/White3 - 4
  85. Yankton - 5
  86.  
  87. ////////////////////////////////////////////////////////////////////////////////////////////
  88.  
  89. #PlateName
  90.  
  91. SET_VEHICLE_NUMBER_PLATE_TEXT(Vehicle vehicle, char *plateText)
  92.  
  93. plateText = your text
  94.  
  95. ////////////////////////////////////////////////////////////////////////////////////////////
  96.  
  97. #SmokeColor
  98.  
  99. TOGGLE_VEHICLE_MOD(Vehicle vehicle, int modType, BOOL toggle); // modType = 20
  100. SET_VEHICLE_TYRE_SMOKE_COLOR(Vehicle vehicle, int r, int g, int b) // r,g,b = RGB
  101.  
  102.  
  103. ////////////////////////////////////////////////////////////////////////////////////////////
  104.  
  105. #ColorIndexVehicle
  106.  
  107. SET_VEHICLE_COLOURS(Vehicle vehicle, int colorPrimary, int colorSecondary)
  108.  
  109. Index Color : http://pastebin.com/fWjCNqH8
  110.  
  111. ////////////////////////////////////////////////////////////////////////////////////////////
  112.  
  113. #ColorWheelAndPerleascence
  114.  
  115. SET_VEHICLE_EXTRA_COLOURS(Vehicle vehicle, int pearlescentColor, int wheelColor)
  116.  
  117. Index Color : http://pastebin.com/fWjCNqH8
  118.  
  119. ////////////////////////////////////////////////////////////////////////////////////////////
  120.  
  121. #CustomColorVehicle
  122.  
  123. SET_VEHICLE_CUSTOM_PRIMARY_COLOUR(Vehicle vehicle, int r, int g, int b)
  124. SET_VEHICLE_CUSTOM_SECONDARY_COLOUR(Vehicle vehicle, int r, int g, int b)
  125.  
  126. r,g,b = RGB
  127.  
  128. ////////////////////////////////////////////////////////////////////////////////////////////
  129.  
  130. #ChangeWheel
  131.  
  132. SET_VEHICLE_MOD_KIT(Vehicle vehicle, int modKit) // modKit = 0
  133. SET_VEHICLE_WHEEL_TYPE(vehicle vehicle, int WheelType);
  134. SET_VEHICLE_MOD (Vehicle vehicle, int modType, int modIndex, BOOL customTires)
  135.  
  136. #WheelType
  137. 0: Sport
  138. 1: Muscle
  139. 2: Lowrider
  140. 3: SUV
  141. 4: Offroad
  142. 5: Tuner
  143. 6: Bike Wheels
  144. 7: High End
  145.  
  146. #modType
  147. Front Wheels - 23
  148. Back Wheels - 24 //only for motocycles
  149.  
  150. ////////////////////////////////////////////////////////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement