Advertisement
GlorifiedPig

Untitled

May 18th, 2020
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1.  
  2. --[[ Addon Integrations ]]--
  3. GlorifiedBanking.Config.SUPPORT_ZEROS_ADDONS = false -- If you have any of Zero's addons on your server, you can choose for your income to go to your bank with this option.
  4. GlorifiedBanking.Config.SUPPORT_BLOGS = false -- Set this to true if you'd like to log withdrawals, deposits and transfers via bLogs.
  5. --[[ End Addon Integrations ]]--
  6.  
  7. --[[ Interest Settings ]]--
  8. GlorifiedBanking.Config.INTEREST_ENABLED = true -- Should interest be enabled or not?
  9. GlorifiedBanking.Config.INTEREST_TIMER = 120 -- How often should the player receive interest?
  10. GlorifiedBanking.Config.INTEREST_MAX = 10000 -- What's the maximum amount a player can receive in interest?
  11. GlorifiedBanking.Config.DEFAULT_INTEREST_PERCENTAGE = 0.1 -- What % should the player get for interest per x seconds? Set to 0 to disable interest for normal players.
  12. GlorifiedBanking.Config.INTEREST_AMOUNT_CUSTOMFUNC = function( ply ) -- Special function to return different interest for certain players.
  13. local specialGroups = {
  14. ["donator"] = 0.2,
  15. ["superadmin"] = 1
  16. }
  17. if specialGroups[ply:GetUserGroup()] then return specialGroups[ply:GetUserGroup()] end
  18. end
  19. --[[ End Interest Settings ]]--
  20.  
  21. --[[ Other Config ]]--
  22. GlorifiedBanking.Config.MAXIMUM_DISTANCE_FROM_ATM = 250 -- What is the maximum distance for the validation checks on the ATMs?
  23. --[[ End Other Config ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement