Advertisement
Guest User

Untitled

a guest
Apr 17th, 2017
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 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. # This option is always on when using the SimpleConfig
  14. # Currently supports: Essentials, RoyalCommands and UltimateCore
  15. # Autorank automatically chooses what plugin to use for AFK integration.
  16.  
  17. use partial completion: true
  18. # When this is true, players can use /ar complete # to complete a requirement at any moment they like.
  19. # 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.
  20.  
  21. interval check: 2
  22. # This is the interval between checks of Autorank (in minutes).
  23. # Lowering this number will increase accuracy but will also increase server lag.
  24.  
  25. use time of: Autorank
  26. # You can specify what time plugin Autorank will use to calculate the time that a player has played.
  27. # This only changes the local time.
  28. # A list to choose from:
  29. # 1. Autorank
  30. # 2. Stats
  31. # 3. OnTime
  32. # 4. Statz
  33. # If no valid time plugin was found, it defaults to Autorank
  34.  
  35. leaderboard layout: '&6&r | &b&p - &7&d %day%, &h %hour% and &m %minute%.'
  36. leaderboard length: 5
  37. # changes the appearance of the /ar leaderboard command
  38. # &r : Ranking in the leaderboard
  39. # &p : Player name
  40. # &m : Minutes (with full days and full hours not counted)
  41. # &h : Hours (with full days not counted)
  42. # &d : Days
  43. # &tm : Total amount of minutes
  44. # &th : Total amount of hours
  45.  
  46. check command layout: "&p has played for &time and is on path ''&path''. Requirements to be ranked up: &reqs"
  47. # Changes the layout of the /ar check command.
  48. # &p : Player name
  49. # &time : time in hours, minutes and seconds
  50. # &path : Path the player has chosen.
  51. # &reqs : a list of all requirements
  52.  
  53. sql:
  54. enabled: false
  55. hostname: localhost:3306
  56. username: root
  57. password: ''
  58. database: minecraft
  59. table: autorank
  60. # All these options are for configuring your MySQL database with Autorank.
  61. # Hostname has to include a port, but doesn't have to be port 3306.
  62.  
  63. auto-updater:
  64. check-for-new-versions: true
  65. # When check-for-new-versions is true, Autorank will tell you when a new version is available.
  66.  
  67. advanced dependency output: false
  68. # If this is true, Autorank will tell you in the console what dependencies were found and which ones weren't found.
  69. # Turn this off to remove the console spam from Autorank about dependencies.
  70. # This feature can be useful when Autorank can't find your dependency, but you have it installed.
  71.  
  72. show help command based on permission: true
  73. # If this is true, the /ar help command will only show the available commands for a certain player.
  74. # If a player doesn't have the permission to perform the command, it will not show that command on the help page.
  75.  
  76. use debug: false
  77. # Only set this to true when you want to debug Autorank
  78. # When this is true, Autorank will spit out debug messages
  79.  
  80. show warnings: true
  81. # Whether Autorank has to show critical warnings.
  82. # Leave this set to true. You can only change it to false when Autorank is giving you false warnings.
  83.  
  84. use primary group for vault: true
  85. # Most permission plugins will only work properly with Autorank if you let it only get the primary group.
  86. # Some need to get all the groups however. You probably only need to change this when a dev tells you to.
  87.  
  88. broadcast resetting of data files: true
  89. # Autorank keeps track of amount of time played per day, week and month.
  90. # When a new day, week or month starts, Autorank will reset the times of all players (except the total time, this is always preserved).
  91. # If this value is set to true, Autorank will broadcast to all players when their data gets reset.
  92.  
  93. use global time in leaderboard: false
  94. # By default, Autorank will use the local time of a player when for the leaderboard. When this is set to true,
  95. # /ar leaderboard will be sorted on the global time of a player (provided that it exists).
  96.  
  97. disable automatic path checking: true
  98. # By default, Autorank will check whether a player meets all requirements for its path every x minutes.
  99. # If you want to disable this feature and let players manually check whether they completed all requirements, set this to true.
  100.  
  101. automatically archive old data: true
  102. # This is turned on by default. When this is set to true, Autorank will archive data of players that haven't seen been online for some time.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement