Advertisement
Guest User

123

a guest
Oct 10th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. # PlaceholderInjector v1.6.3
  2. # Created by extended_clip and GGhost
  3. #
  4. # Allow placeholders in any chat window message from any plugin
  5. # If you want to use placeholders in your essentials chat formatting
  6. # you must use {<placeholder>} instead of %<placeholder>%
  7. # If you would like messages created by the Spigot chat API intercepted also,
  8. # (json messages with hover text, click events, etc)
  9. # set intercept_spigot_chat_api_messages to true
  10. # Set to false if you are not using Spigot!
  11. # chat:
  12. # enabled: true/false
  13. # intercept_spigot_chat_api_messages: true/false
  14. #
  15. # Allow placeholders in any ItemStack name, lore, or inventory title
  16. # inventory:
  17. # enabled: true/false
  18. #
  19. # Allow placeholders in any title or subtitle from any plugin
  20. # title:
  21. # enabled: true/false
  22. #
  23. # Allow placeholders in the tab list header and footer
  24. # tab:
  25. # enabled: true/false
  26. #
  27. # Allow placeholders in signs:
  28. # signs:
  29. # enabled: true/false
  30. # update_interval: <time in seconds to update sign placeholders, 0 to disable>
  31. #
  32. # Allow placeholders in HolographicDisplays holograms
  33. # holographicdisplays:
  34. # enabled: true/false
  35. # update_interval: <time in seconds to update holo placeholders>
  36. #
  37. #
  38. # To add placeholders in chat messages, you need the permission node:
  39. # placeholderinjector.chat.bypass
  40. #
  41. # To add placeholders in sign lines, you need the permission node:
  42. # placeholderinjector.signs.bypass
  43.  
  44. chat:
  45. enabled: true
  46. intercept_spigot_chat_api_messages: true
  47. inventory:
  48. enabled: true
  49. title:
  50. enabled: true
  51. tab:
  52. enabled: true
  53. signs:
  54. enabled: true
  55. update_interval: 1
  56. holographicdisplays:
  57. enabled: true
  58. update_interval: 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement