Advertisement
GlorifiedPig

Untitled

Jun 20th, 2020 (edited)
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1.  
  2. --[[ SQL Configuration ]]--
  3. GlorifiedLeveling.Config.SQL_TYPE = "sqlite" -- 'sqlite' or 'mysqloo'
  4. GlorifiedLeveling.Config.SQL_DETAILS = {
  5. [ "host" ] = "localhost",
  6. [ "user" ] = "root",
  7. [ "pass" ] = "",
  8. [ "database" ] = "glorifiedleveling",
  9. [ "port" ] = 3306
  10. }
  11. --[[ End SQL Configuration ]]--
  12.  
  13. --[[ Backup System Configuration ]]--
  14. GlorifiedLeveling.Config.BACKUPS_ENABLED = true -- Should the backup system be enabled?
  15. GlorifiedLeveling.Config.BACKUPS_FOLDER_NAME = "glorifiedleveling_backups" -- What's the name of the folder in the data folder to store?
  16. GlorifiedLeveling.Config.BACKUP_FREQUENCY = 2 -- How often in hours should the system backup?
  17. GlorifiedLeveling.Config.MAX_BACKUPS = 10 -- What's the maximum amount of backups the server can store?
  18. --[[ Backup System Configuration End ]]--
  19.  
  20. --[[ Miscellanous Settings ]]--
  21. GlorifiedLeveling.Config.USE_FASTDL = false -- Set this to true if you would like to use FastDL.
  22. --[[ Miscellanous Settings End ]]--
  23.  
  24. --[[ CAMI Permissions Settings ]]--
  25. GlorifiedLeveling.Config.CAMI_PERMISSION_DEFAULTS = {
  26. ["glorifiedleveling_openadminpanel"] = {
  27. MinAccess = "admin",
  28. Description = "Determines whether or not the player can open the GlorifiedLeveling admin panel."
  29. },
  30. ["glorifiedleveling_manipulateplayerlevel"] = {
  31. MinAccess = "admin",
  32. Description = "Permission for which usergroups are able to manipulate player's level data (XP & Level)."
  33. },
  34. ["glorifiedleveling_togglelockdown"] = {
  35. MinAccess = "superadmin",
  36. Description = "Permission for whether or not the player can toggle lockdown."
  37. },
  38. ["glorifiedleveling_restorebackups"] = {
  39. MinAccess = "superadmin",
  40. Description = "Permission for which usergroups are able to restore to a previous backup."
  41. },
  42. ["glorifiedleveling_importvrondakis"] = {
  43. MinAccess = "superadmin",
  44. Description = "Permission for which usergroups are able to import data from Vrondakis' leveling system."
  45. },
  46. }
  47. --[[ CAMI Permissions Settings End ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement