GlorifiedPig

Untitled

May 18th, 2020
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1.  
  2. --[[ SQL Configuration ]]--
  3. GlorifiedBanking.Config.SQL_TYPE = "mysqloo" -- 'sqlite' or 'mysqloo'
  4. GlorifiedBanking.Config.SQL_DETAILS = {
  5. [ "host" ] = "localhost",
  6. [ "user" ] = "root",
  7. [ "pass" ] = "",
  8. [ "database" ] = "glorifiedbanking",
  9. [ "port" ] = 3306
  10. }
  11. --[[ End SQL Configuration ]]--
  12.  
  13. --[[ Backup System Configuration ]]--
  14. GlorifiedBanking.Config.BACKUPS_ENABLED = true -- Should the backup system be enabled?
  15. GlorifiedBanking.Config.BACKUP_FREQUENCY = 1 -- How often should backups occur in hours?
  16. GlorifiedBanking.Config.MAX_BACKUPS = 10 -- What are the maximum amount of backups allowed before old ones start getting deleted?
  17. GlorifiedBanking.Config.BACKUPS_FOLDER_NAME = "glorifiedbanking_backups" -- What should the file name in the data folder be?
  18. --[[ End Backup System Configuration ]]--
  19.  
  20. --[[ Other Options ]]--
  21. GlorifiedBanking.Config.LAST_ACTION_TIMEOUT = false -- How long should we wait after an action on the ATM before timing out the user? False to disable.
  22. GlorifiedBanking.Config.SALARY_TO_BANK = true -- Should the player's salary get transferred to his bank account?
  23. GlorifiedBanking.Config.STARTING_BALANCE = 5000 -- How much money to start with in the player's bank account?
  24. GlorifiedBanking.Config.DROP_MONEY_ON_DEATH = false -- Whether or not money should be dropped on death.
  25. GlorifiedBanking.Config.DROP_MONEY_ON_DEATH_AMOUNT = 500 -- If the above is set to true, how much should the player drop on death?
  26. --[[ End Other Options ]]--
  27.  
  28. --[[ Permissions Settings ]]--
  29. GlorifiedBanking.Config.CAMI_PERMISSION_DEFAULTS = {
  30. ["glorifiedbanking_openadminpanel"] = {
  31. MinAccess = "admin",
  32. Description = "Determines whether or not the player can open the GlorifiedBanking admin panel."
  33. },
  34. ["glorifiedbanking_togglelockdown"] = {
  35. MinAccess = "admin",
  36. Description = "Permission for which usergroups are able to enable/disable lockdown mode."
  37. },
  38. ["glorifiedbanking_restorebackups"] = {
  39. MinAccess = "superadmin",
  40. Description = "Permission for which usergroups are able to restore to a previous backup."
  41. },
  42. ["glorifiedbanking_placeatms"] = {
  43. MinAccess = "superadmin",
  44. Description = "Permission to place and remove ATMs with the toolgun around the map."
  45. },
  46. ["glorifiedbanking_setplayerbalance"] = {
  47. MinAccess = "superadmin",
  48. Description = "Permission to set player's balances in the admin panel."
  49. },
  50. }
  51. --[[ End Permissions Settings ]]--
Add Comment
Please, Sign In to add comment