Advertisement
Trophonix

X-Ray Shield config.yml

Aug 17th, 2018
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.30 KB | None | 0 0
  1. #
  2. # X-ray Shield by Trophonix
  3. #
  4. # How to configure
  5. # -----------------
  6. #
  7. # ores:
  8. #  ore_name: (google "bukkit material names 1.12" and substitute the version you're using for 1.12)
  9. #    amount: (how many ores before it flags as suspicious)
  10. #    time: (the time in which the above amount would be considered suspicious - this can be a number in seconds or formatted like "5m" for 5 minutes)
  11. #
  12. # lang ---
  13. #
  14. # The lang section contains all the messages sent by this plugin.
  15. # You can use the & sign as a color code symbol.
  16. #
  17. # placeholders ---
  18. #
  19. # In the lang options, you can use the following placeholders and they will be replaced by the indicated text
  20. #
  21. # %player% - replaced with the relevant player's name
  22. # %ore% - replaced by the ore's name
  23. # %amount% - replaced by the amount of ores
  24. # %time% - replaced by the relevant time
  25. # %location% - replaced by the last known mining location
  26. # %n - new line
  27. #
  28.  
  29. ores:
  30.   iron_ore:
  31.     amount: 48
  32.     time: '10m'
  33.   gold_ore:
  34.     amount: 30
  35.     time: '10m'
  36.   diamond_ore:
  37.     amount: 15
  38.     time: '10m'
  39.   emerald_ore:
  40.     amount: 5
  41.     time: '5m'
  42.  
  43. sendAlertEachVein: true
  44.  
  45. sendAlertToOPs: false
  46.  
  47. lang:
  48.   alert: '&6[&eX-Ray Detector&6] &c%player% &8has mined &c%amount% %ore% &8in &c%time%&8!%n&8They may be x-raying. Last location: %location%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement