Advertisement
Guest User

Untitled

a guest
Jul 13th, 2018
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. # Timed Rewards by ImABradley
  2. #
  3. # /Contact
  4. # Spigot: https://www.spigotmc.org/members/imabradley.292138/
  5. # Discord: Bradley#4169
  6. #
  7. # /Information
  8. # Timed Rewards is a plugin much alike Hypixel's 'Delivery Man'
  9. # and Mineplex's 'Carl the Creeper' in which players can claim
  10. # rewards over set periods of times. You can specify the times
  11. # of each individual reward, as well as adding your own
  12. # commands when the reward is claimed.
  13. #
  14. # If you have an invalid setting, the plugin will do its best
  15. # to use its default setting without causing any issues.
  16. #
  17. # If you have any questions, suggestions, features you'd like
  18. # to see added or report any bugs, do not hesitate to contact
  19. # me.
  20. #
  21. # I hope you enjoy! :)
  22.  
  23.  
  24. # Do not change this number. You will be notified if a new
  25. # configuration version is available.
  26. config-version: 1
  27.  
  28.  
  29. # Choose from a pre-made locale file and edit it to your liking,
  30. # and of course with full chat colour support.
  31. #
  32. # I only speak English, if you would like to translate a locale
  33. # then please contact me and I will add it to the next update.
  34. #
  35. # Locales: 'en_GB', 'de_CH'
  36. # Default: 'en_GB'
  37. locale: 'en_GB'
  38.  
  39.  
  40. backend:
  41.  
  42. # Types: flat, mysql
  43. # Default: 'flat'
  44. type: 'flat'
  45.  
  46. mysql:
  47.  
  48. # You will only need to fill out the below if the backend
  49. # type is 'mysql'.
  50. #
  51. # Warning: The plugin will fallback to flat file if it
  52. # cannot establish a connection or if the connection is
  53. # dropped at any time.
  54. credentials:
  55. hostname: 'localhost'
  56. port: '3306'
  57. database: 'server'
  58. table: 'timed_rewards'
  59. username: 'root'
  60. password: 'password'
  61.  
  62. # When a reward is deleted or removed from the
  63. # rewardmenu.yml file, should the plugin remove the SQL
  64. # column from the table?
  65. # Default: false
  66. clean: false
  67.  
  68.  
  69. # If 'true' then all players will be able to view the current
  70. # version and author (me!) with /tr version. Otherwise it will
  71. # return as an unknown argument.
  72. # Default: true
  73. about-enabled: true
  74.  
  75.  
  76. # If 'true' then players will be able to type /rewards
  77. # <menu_name> to open the rewards menu.
  78. # Default: true
  79. rewards-enabled: true
  80.  
  81.  
  82. # Here you can block certain commands from being added
  83. # with the '/tr addcmd <cmd>'. This is to prevent admins
  84. # creating rewards then adding commands which they
  85. # should not have access to. For example /op or /deop.
  86. blocked-commands:
  87. - op
  88. - deop
  89.  
  90.  
  91. npcs:
  92.  
  93. # A list of NPCs who will open the rewards menu (/rewards)
  94. # when punched or interacted with.
  95. open-rewards:
  96. - 'delivery-man'
  97. - 'carl'
  98.  
  99. # If you are using another NPC plugin such as Citizens, and
  100. # want to open the rewards menu with an NPC then add their
  101. # name to the list. You do not have to include colours.
  102. external-open-rewards:
  103. - 'The Delivery Man'
  104. - 'Carl the Creeper'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement