Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. local name = "car_flag"
  2. local definition = ...
  3. local texture = "car_flag.png"
  4.  
  5. definition.description = "Flag car"
  6. definition.inventory_image = texture
  7. definition.wield_image = texture
  8. definition.textures = {texture}
  9.  
  10. vehicle_mash.register_vehicle("vehicle_mash:"..name, definition)
  11.  
  12. local name = "car_lava"
  13. local definition = ...
  14. local texture = "car_lava.png"
  15.  
  16. definition.description = "Lava car"
  17. definition.inventory_image = texture
  18. definition.wield_image = texture
  19. definition.textures = {texture}
  20.  
  21. vehicle_mash.register_vehicle("vehicle_mash:"..name, definition)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement