Advertisement
SoniaK

AutoRank Settings

Feb 28th, 2020
1,094
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.77 KB | None | 0 0
  1. #############################################################################
  2. # #
  3. # Autorank Settings #
  4. # #
  5. # This config is used to configure Autorank. The other configs provide #
  6. # a way to configure the rank system. This config is for configuring the #
  7. # the options Autorank has to offer you #
  8. # #
  9. #############################################################################
  10.  
  11. afk integration: true
  12. # If a compatible AFK plugin is found Autorank will not count online time for AFK players
  13. # Autorank automatically chooses what plugin to use for AFK integration.
  14.  
  15. interval check: 5
  16. # This is the interval between checks of Autorank (in minutes).
  17. # Lowering this number will increase accuracy but will also increase server lag.
  18.  
  19. leaderboard layout: '&6&r | &b&p - &7&d %day%, &h %hour% and &m %minute%.'
  20. leaderboard length: 5
  21. # changes the appearance of the /ar leaderboard command
  22. # &r : Ranking in the leaderboard
  23. # &p : Player name
  24. # &m : Minutes (with full days and full hours not counted)
  25. # &h : Hours (with full days not counted)
  26. # &d : Days
  27. # &tm : Total amount of minutes
  28. # &th : Total amount of hours
  29.  
  30. check command layout: "&p has played for &time and is on path ''&path''. Requirements to be ranked up: &reqs"
  31. # Changes the layout of the /ar check command.
  32. # &p : Player name
  33. # &time : time in hours, minutes and seconds
  34. # &path : Path the player has chosen.
  35. # &reqs : a list of all requirements
  36.  
  37. sql:
  38. enabled: false
  39. hostname: localhost:3306
  40. username: root
  41. password: ''
  42. database: minecraft
  43. server name: '%name%-default'
  44. # All these options are for configuring your MySQL database with Autorank.
  45. # Hostname has to include a port, but doesn't have to be port 3306.
  46.  
  47. auto-updater:
  48. check-for-new-versions: true
  49. # When check-for-new-versions is true, Autorank will tell you when a new version is available.
  50.  
  51. advanced dependency output: true
  52. # If this is true, Autorank will tell you in the console what dependencies were found and which ones weren't found.
  53. # Turn this off to remove the console spam from Autorank about dependencies.
  54. # This feature can be useful when Autorank can't find your dependency, but you have it installed.
  55.  
  56. show help command based on permission: true
  57. # If this is true, the /ar help command will only show the available commands for a certain player.
  58. # If a player doesn't have the permission to perform the command, it will not show that command on the help page.
  59.  
  60. use debug: true
  61. # Only set this to true when you want to debug Autorank
  62. # When this is true, Autorank will spit out debug messages
  63.  
  64. show warnings: true
  65. # Whether Autorank has to show critical warnings.
  66. # Leave this set to true. You can only change it to false when Autorank is giving you false warnings.
  67.  
  68. use primary group for vault: true
  69. # Most permission plugins will only work properly with Autorank if you let it only get the primary group.
  70. # Some need to get all the groups however. You probably only need to change this when a dev tells you to.
  71.  
  72. broadcast resetting of data files: true
  73. # Autorank keeps track of amount of time played per day, week and month.
  74. # When a new day, week or month starts, Autorank will reset the times of all players (except the total time, this is always preserved).
  75. # If this value is set to true, Autorank will broadcast to all players when their storage gets reset.
  76.  
  77. use global time in leaderboard: false
  78. # By default, Autorank will use the local time of a player when for the leaderboard. When this is set to true,
  79. # /ar leaderboard will be sorted on the global time of a player (provided that it exists).
  80.  
  81. disable automatic path checking: false
  82. # By default, Autorank will check whether a player meets all requirements for its path every x minutes.
  83. # If you want to disable this feature and let players manually check whether they completed all requirements, set this to true.
  84.  
  85. automatically archive old data: true
  86. # This is turned on by default. When this is set to true, Autorank will archive storage of players that haven't seen been online for some time.
  87.  
  88. primary storage provider: flatfile
  89. # Set the primary storage provider for Autorank. By default, this is the flatfile provider that stores data in the
  90. # /storage folder. The primary storage provider is used to get the time a player has played when for example
  91. # /ar times is requested. You can choose from 'flatfile' or 'mysql'.
  92.  
  93. automatically remove backups if older than: 14
  94. # Set how old a backup must be before it will be removed (in days).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement