Advertisement
Guest User

ww_tires

a guest
Apr 6th, 2022
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. Config = Config or {}
  2.  
  3. Config.TireItemName = 'tire' -- item name of tire
  4. Config.Model = GetHashKey('prop_tornado_wheel') -- model of tire
  5.  
  6. Config.Settings = { -- change script settings
  7. enableTireOnlyFromTrunk = false, -- if set to false you can use and hide tire whenever you are (you still have an animation when you are near trunk)
  8. enableHidingTires = true, -- if set to false you cannot hide tires
  9. enableTirePickup = true, -- if set to false you cannot pick up tires from ground
  10. }
  11.  
  12. Config.Notifications = { -- change notifications text
  13. alreadyusingtire = "Your hands are busy already.",
  14. invehicle = "You can't be in any vehicle.",
  15. notneartrunk = "Stand by the trunk.",
  16. notneartire = "You have to be near destroyed tire.",
  17. notnearvehicle = "You have to be near vehicle.",
  18. changingtire = "Changing tire...",
  19. }
  20.  
  21. Config.InstallAnimation = function(playerPed) -- change animation of tire replacement/install
  22. TaskStartScenarioInPlace(playerPed, 'PROP_HUMAN_BUM_BIN', 0, true)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement