Advertisement
Guest User

Untitled

a guest
Dec 24th, 2018
869
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. # Timed Rewards by Bradley Steele (Ibiza).
  2. #
  3. # /Contact
  4. # Spigot: https://www.spigotmc.org/members/292138/
  5. # Discord: Bradley#4169
  6. # Discord Support Server: https://redirect.bradleysteele.me/bps
  7. #
  8. # /Information
  9. # Timed Rewards is a plugin much alike Hypixel's 'Delivery Man'
  10. # and Mineplex's 'Carl the Creeper' in which players can claim
  11. # rewards over set periods of times. You can specify the times
  12. # of each individual reward, as well as adding your own
  13. # commands when the reward is claimed.
  14. #
  15. # If you have an invalid setting, the plugin will do its best
  16. # to use its default setting without causing any issues.
  17. #
  18. # If you have any questions, suggestions, features you'd like
  19. # to see added or report any bugs, do not hesitate to contact
  20. # me.
  21.  
  22.  
  23. # Do not change this number. You will be notified if a new
  24. # configuration version is available.
  25. config-version: 4
  26.  
  27.  
  28. # Choose from a pre-made locale file and edit it to your
  29. # liking, and of course with full chat colour support.
  30. #
  31. # I only speak English, if you would like to translate a locale
  32. # then please contact me and I will add it to the next update.
  33. #
  34. # Locales: 'en_GB', 'cs_CZ'
  35. # Default: 'en_GB'
  36. locale: 'en_GB'
  37.  
  38.  
  39. backend:
  40.  
  41. # Types: flat, mysql
  42. # Default: 'flat'
  43. type: 'mysql'
  44.  
  45. mysql:
  46.  
  47. # You will only need to fill out the below if the backend
  48. # type is 'mysql'.
  49. #
  50. # Warning: The plugin will fallback to flat file if it
  51. # cannot establish a connection on startup.
  52. credentials:
  53. hostname: 'localhost'
  54. port: 3306
  55. database: 'timedrewards'
  56. username: '***************'
  57. password: '***************'
  58.  
  59.  
  60. # Allows all players to view the current version and author
  61. # with /tr version. If false, it will return as an unknown
  62. # argument.
  63. #
  64. # Default: true
  65. about-enabled: true
  66.  
  67.  
  68. menus:
  69.  
  70. # The default menu to open when a player types /rewards
  71. # and more than 1 is available.
  72. default: 'default'
  73.  
  74.  
  75. rewards:
  76.  
  77. # If true then players will be able to type /rewards
  78. # <menu_name> to open the rewards menu.
  79. #
  80. # Default: true
  81. enabled: true
  82.  
  83. # The permission node required to execute /rewards. Leave
  84. # blank to allow all users access to the command.
  85. #
  86. # Note: requires full server restart for changes to take place.
  87. permission: ''
  88.  
  89. # Other aliases for the /rewards command. If you do not
  90. # want any aliases, use: aliases: []
  91. #
  92. # Note: requires full server restart for changes to take place.
  93. aliases:
  94. - 'reward'
  95.  
  96.  
  97. # Here you can block certain commands from being added
  98. # with the '/tr addcmd <cmd>'. This is to prevent admins
  99. # creating rewards then adding commands which they
  100. # should not have access to, for example /op or /deop.
  101. blocked-commands:
  102. - op
  103. - deop
  104.  
  105.  
  106. npcs:
  107.  
  108. # A list of NPC keys which will open the rewards menu
  109. # (/rewards) when punched or interacted with.
  110. open-rewards:
  111. - 'delivery-man'
  112. - 'carl'
  113.  
  114. # If you are using another NPC plugin such as Citizens, and
  115. # want to open the rewards menu with an NPC then add their
  116. # name to the list. Do not include colour codes.
  117. external-open-rewards:
  118. - 'The Delivery Man'
  119. - 'Carl the Creeper'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement