Advertisement
Lukyspore

sh_config.lua

Jan 27th, 2024 (edited)
885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.02 KB | None | 0 0
  1. LDT_Bounties = LDT_Bounties or {}
  2. LDT_Bounties.Config = LDT_Bounties.Config or {}
  3.  
  4. LDT_Bounties.Config.Language = "en" -- Currently there are en, pl, fr, da, tr and de translations available.
  5.  
  6. LDT_Bounties.Config.MenuCommand = "!bounties" -- This is the command to open the menu.
  7.  
  8. LDT_Bounties.Config.MinimumPlayers = 1 -- This is the minimum amount of players required to start a bounty.
  9.  
  10. LDT_Bounties.Config.BountyChance = 100 -- This is the chance of a bounty being started when new round starts. 100 = 100% chance, 50 = 50%, etc.
  11.  
  12. LDT_Bounties.Config.RewardForSurviving = true -- This is whether or not you get a reward for surviving the round when having a bounty on you.
  13. LDT_Bounties.Config.RewardFramework = "PS1" -- This is the reward framework. You can choose between PS1, PS2, ZPN.
  14. LDT_Bounties.Config.CurrencySymbol = " Points" -- This is the name of the currency. This only works when using the PS1, PS2 or ZPN reward framework.
  15. LDT_Bounties.Config.CurrencySymbolLocation = false -- This is the location of the currency symbol. True = Before the amount, false = After the amount.
  16. LDT_Bounties.Config.ZPNMultiplier = 1 -- This is the multiplier for the ZPN currency. This changes the amount of ZPN you get from voting.
  17.  
  18. LDT_Bounties.Config.BountyMinimum = 10 -- This is the minimum amount of money you can set a bounty to.
  19. LDT_Bounties.Config.BountyMaximum = 100 -- This is the maximum amount of money you can set a bounty to.
  20.  
  21. -- These are the colors for every element of the UI. Feel free to change them to your liking.
  22. LDT_Bounties.Config.Red = Color(255, 63, 5)
  23. LDT_Bounties.Config.White = Color(255,255,255)
  24. LDT_Bounties.Config.WhiteHighlight = Color(200,200,200,255)
  25. LDT_Bounties.Config.Grey = Color(47, 54, 64)
  26. LDT_Bounties.Config.GreySecond = Color(53, 59, 72)
  27. LDT_Bounties.Config.GreyThird = Color(53, 59, 72,100)
  28. LDT_Bounties.Config.Blue = Color(0, 151, 230)
  29.  
  30. LDT_Bounties.Config.Gold = Color(251, 197, 49,255)
  31. LDT_Bounties.Config.Silver = Color(127, 143, 166,255)
  32. LDT_Bounties.Config.Bronze = Color(240, 147, 43,255)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement