Advertisement
djacobson

Autorank settings.yml

May 16th, 2015
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.33 KB | None | 0 0
  1. #############################################################################
  2. # #
  3. # Autorank 2 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: true
  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: 10
  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: Autorank
  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. # If no valid time plugin was found, it defaults to Autorank
  36.  
  37. leaderboard layout: '&6&r | &b&p - &7&d day(s), &h hour(s) and &m minute(s).'
  38. leaderboard length: 5
  39. # changes the appearance of the /ar leaderboard command
  40. # &r : Ranking in the leaderboard
  41. # &p : Player name
  42. # &m : Minutes (with full days and full hours not counted)
  43. # &h : Hours (with full days not counted)
  44. # &d : Days
  45. # &tm : Total amount of minutes
  46. # &th : Total amount of hours
  47.  
  48. check command layout: '&p has played for &time and is in &groups. Requirements to be ranked up: &reqs'
  49. # Changes the layout of the /ar check command.
  50. # &p : Player name
  51. # &time : time in hours, minutes and seconds
  52. # &groups : Groups the player is in. Most of the time this is only one group.
  53. # &reqs : a list of all requirements
  54.  
  55. sql:
  56. enabled: false
  57. hostname: localhost:3306
  58. username: root
  59. password: ''
  60. database: minecraft
  61. table: autorank
  62. # All these options are for configuring your MySQL database with Autorank.
  63. # Hostname has to include a port, but doesn't have to be port 3306.
  64.  
  65. auto-updater:
  66. check-for-new-versions: true
  67. # When check-for-new-versions is true, Autorank will tell you when a new version is available.
  68.  
  69. auto-download: false
  70. # When auto-download is true, Autorank will automatically download the most recent version
  71.  
  72. advanced dependency output: false
  73. # If this is true, Autorank will tell you in the console what dependencies were found and which ones weren't found.
  74. # Turn this off to remove the console spam from Autorank about dependencies.
  75. # This feature can be useful when Autorank can't find your dependency, but you have it installed.
  76.  
  77. show help command based on permission: false
  78. # If this is true, the /ar help command will only show the available commands for a certain player.
  79. # If a player doesn't have the permission to perform the command, it will not show that command on the help page.
  80.  
  81. use debug: false
  82. # Only set this to true when you want to debug Autorank
  83. # When this is true, Autorank will spit out debug messages
  84.  
  85. allow infinite ranking: false
  86. # When this is false, players will only be able to rank up a certain rank once.
  87. # 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.
  88. # Set this to true when you're having problems with players not ranking up.
  89.  
  90. show warnings: true
  91. # Whether Autorank has to show critical warnings.
  92. # Leave this set to true. You can only change it to false when Autorank is giving you false warnings.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement