Advertisement
Guest User

Config Moneygun

a guest
Dec 1st, 2023
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.debug = true
  4.  
  5. Config.ESX = {
  6. enabled = true,
  7. moneyType = "money"
  8. }
  9. Config.QBCore = {
  10. enabled = false,
  11. moneyType = "cash"
  12. }
  13.  
  14. Config.item = {
  15. enabled = true, -- If false, use command instead
  16. name = "pd_moneygun"
  17. }
  18.  
  19. Config.command = "moneygun"
  20.  
  21. Config.weaponOverwrite = "weapon_stungun" -- weapon that is used to aim with and allows the use of the money gun.
  22. -- If the player did not have the weapon before equipping the moneygun, the gun will be removed afterwards
  23.  
  24. Config.moneyDropChance = 50
  25. Config.billValue = 1 -- value of each individual bill
  26.  
  27. Config.maxBillsShot = 100 -- amount of bills that can be shot per player.
  28.  
  29. Config.textDisplay = "Bottom-Right" -- OPTIONS: "3D", "Top-Left", "Bottom-Right"
  30.  
  31. Config.keybinds = {
  32. pickup = {
  33. label = 'Hold to Pickup Cash ',
  34. name = '~INPUT_PICKUP~', -- https://docs.fivem.net/docs/game-references/controls/
  35. input = 38, -- https://docs.fivem.net/docs/game-references/controls/
  36. },
  37. cancel = {
  38. label = "Press to cancel using the moneygun",
  39. name = "~INPUT_VEH_DUCK~",
  40. input = 73
  41. }
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement