Advertisement
Guest User

Untitled

a guest
Aug 11th, 2015
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. #############################################################################
  2. # #
  3. # Autorank 2 Advanced Config #
  4. # #
  5. # Please use the SimpleConfig unless you know what you are doing and #
  6. # need functionality that the SimpleConfig doesn't provide. #
  7. # #
  8. #############################################################################
  9.  
  10. use advanced config: true
  11. # all other advanced settings are ignored if this is set to false
  12.  
  13. afk integration: true
  14. # If a compatible AFK plugin is found autorank will not count online time for AFK players
  15. # This option is always on when using the SimpleConfig
  16. # Currently supports: Essentials
  17.  
  18. use partial completion: true
  19. # When this is true, players can use /ar complete # to complete a requirement at any moment they like.
  20. # 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.
  21.  
  22. leaderboard layout: '&6&r | &b&p - &7&d day(s), &h hour(s) and &m minute(s).'
  23. leaderboard length: 5
  24. # changes the appearance of the /ar leaderboard command
  25. # &r : Ranking in the leaderboard
  26. # &p : Player name
  27. # &m : Minutes (with full days and full hours not counted)
  28. # &h : Hours (with full days not counted)
  29. # &d : Days
  30. # &tm : Total amount of minutes
  31. # &th : Total amount of hours
  32.  
  33. language: english
  34. # Languages available: English, Dutch
  35.  
  36.  
  37.  
  38. ranks:
  39. recruit:
  40. requirements:
  41. time: 1h
  42. results:
  43. rank change: recruit; privateI
  44. command: 'manuaddv &p suffix PvtI'
  45. command: 'say &p Just ranked up to PvtI'
  46. message: 'You have ranked up to PvtI'
  47. test:
  48. requirements:
  49. has item: 264(;1)
  50. results:
  51. rank change: test
  52. command: 'manuaddv &p suffix [TEST]'
  53. command: 'say test was successfull'
  54.  
  55.  
  56. # new requirements and results can be added by other plugins that hook into the Autorank API
  57. # these are the ones that are included in the main plugin:
  58. #
  59. # requirements:
  60. # time: 1d 1h 1m
  61. # exp: 20 (level)
  62. # money: 2000 (requires vault ! Player has to have at least this amount of money)
  63. # world: world_nether (player has to be in this world to get ranked)
  64. # gamemode: 1 (player has to have a certain gamemode, 0 = Survival mode, 1 = Creative mode, 2 = Adventure mode)
  65. # has item: id(;amount;data) (checks the players inventory for the item)
  66. # blocks broken: id(;amount;data) (a player has to have broken x amount blocks of item id and data) (Requires Stats) (when no data or amount is given, it will check total blocks)
  67. # Example: break 10 magenta wool would be: 'blocks broken: 35;10;2' 35 = itemid, 10 = amount, 2 = damagevalue
  68. # blocks placed: id(;amount;data) (a player has to have placed x amount blocks of item id and data) (Requires Stats) (when no data or amount is given, it will check total blocks)
  69. # votes: 10 (player has to have voted at least 10 times) (Requires Stats and Votifier)
  70. # results:
  71. # rank change: new-rank
  72. # rank change: old-rank; new-rank
  73. # rank change: old-rank; new-rank; world (only works for permissions plugins that support this)
  74. # message: 'You got ranked up'
  75. # command: 'say &p hi; give &p 1 100'(executes a console command. &p will be replaced by the player name) You can perform more commands with the ';' sign.
  76. # effect: STEP_SOUND;8 (first argument is the effect name, second is the effect data. For a list of possible effects go to http://jd.bukkit.org/rb/doxygen/d8/db9/enumorg_1_1bukkit_1_1Effect.html)
  77. # tp: x;y;z;world;yaw;pitch (tp: 0;0;0;world_nether;1.0;2.0)
  78.  
  79. sql:
  80. enabled: false
  81. hostname: localhost:3306
  82. username: root
  83. password: ''
  84. database: minecraft
  85. table: autorank
  86. #
  87. #
  88.  
  89. auto-updater:
  90.  
  91. # When check-for-new-versions is true, Autorank will tell you when a new version is available.
  92. check-for-new-versions: false
  93.  
  94. # When auto-download is true, Autorank will automatically download the most recent version
  95. auto-download: false
  96.  
  97. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement