Advertisement
Guest User

Untitled

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