Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2022
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Config = Config or {}
  2.  
  3. Config.TireItemName = 'tire' -- item name of tire
  4. Config.Model = '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. useTarget = true, -- if set to true you will use eye-target system to install and pickup tires
  12. }
  13.  
  14. Config.Notifications = { -- change notifications text
  15. alreadyusingtire = "Your hands are busy already.",
  16. invehicle = "You can't be in any vehicle.",
  17. vehiclelocked = "This vehicle is locked.",
  18. notneartrunk = "Stand by the trunk.",
  19. notneartire = "You have to be near destroyed tire.",
  20. notnearvehicle = "You have to be near vehicle.",
  21. changingtire = "Changing tire...",
  22. }
  23.  
  24. Config.InstallAnimation = function(playerPed) -- change animation of tire replacement/install
  25. TaskStartScenarioInPlace(playerPed, 'PROP_HUMAN_BUM_BIN', 0, true)
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement