Advertisement
Guest User

Untitled

a guest
May 5th, 2017
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.71 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. use advanced config: true
  12. # If this is false, the SimpleConfig will be used for ranking.
  13.  
  14. afk integration: true
  15. # If a compatible AFK plugin is found Autorank will not count online time for AFK players
  16. # This option is always on when using the SimpleConfig
  17. # Currently supports: Essentials, RoyalCommands and UltimateCore
  18. # Autorank automatically chooses what plugin to use for AFK integration.
  19.  
  20. use partial completion: false
  21. # When this is true, players can use /ar complete # to complete a requirement at any moment they like.
  22. # When this is false, players will only be able to /ar check and check for all requirements at one time. They would need to have all requirements at that moment.
  23.  
  24. interval check: 2
  25. # This is the interval between checks of Autorank (in minutes).
  26. # Lowering this number will increase accuracy but will also increase server lag.
  27.  
  28. use time of: OnTime
  29. # You can specify what time plugin Autorank will use to calculate the time that a player has played.
  30. # This only changes the local time.
  31. # A list to choose from:
  32. # 1. Autorank
  33. # 2. Stats
  34. # 3. OnTime
  35. # 4. Statz
  36. # If no valid time plugin was found, it defaults to Autorank
  37.  
  38. leaderboard layout: '&6&r | &b&p - &7&d %day%, &h %hour% and &m %minute%.'
  39. leaderboard length: 5
  40. # changes the appearance of the /ar leaderboard command
  41. # &r : Ranking in the leaderboard
  42. # &p : Player name
  43. # &m : Minutes (with full days and full hours not counted)
  44. # &h : Hours (with full days not counted)
  45. # &d : Days
  46. # &tm : Total amount of minutes
  47. # &th : Total amount of hours
  48.  
  49. check command layout: '&p has played for &time and is in &groups. Requirements to be ranked up: &reqs'
  50. # Changes the layout of the /ar check command.
  51. # &p : Player name
  52. # &time : time in hours, minutes and seconds
  53. # &groups : Groups the player is in. Most of the time this is only one group.
  54. # &reqs : a list of all requirements
  55.  
  56. sql:
  57. enabled: true
  58. hostname: localhost:3306
  59. username: root
  60. password: Digitalknights1
  61. database: lobby
  62. table: autorank
  63. # All these options are for configuring your MySQL database with Autorank.
  64. # Hostname has to include a port, but doesn't have to be port 3306.
  65.  
  66. auto-updater:
  67. check-for-new-versions: true
  68. # When check-for-new-versions is true, Autorank will tell you when a new version is available.
  69.  
  70. auto-download: true
  71. # When auto-download is true, Autorank will automatically download the most recent version
  72.  
  73. advanced dependency output: false
  74. # If this is true, Autorank will tell you in the console what dependencies were found and which ones weren't found.
  75. # Turn this off to remove the console spam from Autorank about dependencies.
  76. # This feature can be useful when Autorank can't find your dependency, but you have it installed.
  77.  
  78. show help command based on permission: true
  79. # If this is true, the /ar help command will only show the available commands for a certain player.
  80. # If a player doesn't have the permission to perform the command, it will not show that command on the help page.
  81.  
  82. use debug: false
  83. # Only set this to true when you want to debug Autorank
  84. # When this is true, Autorank will spit out debug messages
  85.  
  86. allow infinite ranking: true
  87. # When this is false, players will only be able to rank up a certain rank once.
  88. # When a player ranks up, and gets deranked manually by a staff member, he will be stuck on that rank forever, as he has already completed that rank before.
  89. # Set this to true when you're having problems with players not ranking up.
  90.  
  91. show warnings: true
  92. # Whether Autorank has to show critical warnings.
  93. # Leave this set to true. You can only change it to false when Autorank is giving you false warnings.
  94.  
  95. use primary group for vault: true
  96. # Most permission plugins will only work properly with Autorank if you let it only get the primary group.
  97. # Some need to get all the groups however. You probably only need to change this when a dev tells you to.
  98.  
  99. broadcast resetting of data files: false
  100. # Autorank keeps track of amount of time played per day, week and month.
  101. # When a new day, week or month starts, Autorank will reset the times of all players (except the total time, this is always preserved).
  102. # If this value is set to true, Autorank will broadcast to all players when their data gets reset.
  103.  
  104. allow deranking: true
  105. # Sometimes you want a player to derank when certain requirements are not met.
  106. # When this is set to true, a player that does not have the requirements that have a derankable flag, will be deranked to their previous rank.
  107. # You will also have to specify which requirements are 'derankable'.
  108. # When you set this to true, make sure to also set 'allow infinite ranking' to true.
  109. # For more info, see this wiki article: https://github.com/Armarr/Autorank-2/wiki/What-are-these-derankable-requirements-you-are-talking-about%3F
  110.  
  111. use global time in leaderboard: true
  112. # By default, Autorank will use the local time of a player when for the leaderboard. When this is set to true,
  113. # /ar leaderboard will be sorted on the global time of a player (provided that it exists).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement