Guest User

settings

a guest
Aug 8th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.18 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: false
  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: 5
  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: Statz
  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(s), &h hour(s) and &m minute(s).'
  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: 127.0.0.1:3306
  59.     username: mc27373
  60.     password: 'be15b94477'
  61.     database: mc27373
  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: false
  71. #   When auto-download is true, Autorank will automatically download the most recent version    
  72.  
  73. advanced dependency output: true
  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.
Add Comment
Please, Sign In to add comment