NovaKevin

InventoryPages 1.3.0 - config.yml

Jun 16th, 2019
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.66 KB | None | 0 0
  1. # Configuration file for InventoryPages
  2. # Created by KevinNovak
  3.  
  4. # ============================================
  5. # Metrics
  6. # ============================================
  7. # Whether or not to collect data on plugin usage
  8. # Viewable at http://mcstats.org/plugin/InventoryPages/
  9. metrics: true
  10.  
  11. # ============================================
  12. # Items
  13. # ============================================
  14. # ID
  15. #   Any item id (material)
  16. #   See https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html for a list
  17. #
  18. # position
  19. #   Inventory positions:
  20. #   ----------------------------------------------
  21. #   |  0 |  1 |  2 |  3 |  4 |  5 |  6 |  7 |  8 |
  22. #   ----------------------------------------------
  23. #   |  9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
  24. #   ----------------------------------------------
  25. #   | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
  26. #   ----------------------------------------------
  27. #   Hotbar: (Not usable)
  28. #   ----------------------------------------------
  29. #   |    |    |    |    |    |    |    |    |    |
  30. #   ----------------------------------------------
  31. #
  32. # name
  33. #   The item name
  34. #   Color codes are supported
  35. #     See http://minecraft.gamepedia.com/Formatting_codes for color codes
  36. #     Use the ampersand symbol "&" before the color code number
  37. #       Ex. "&6" would be gold.
  38. #
  39. # lore
  40. #   Item lore
  41. #   Color codes also apply here
  42. #   Place the variable "{CURRENT}" where you would like the current inventory page number
  43. #   Place the variable "{MAX}" where you would like the max inventory page number
  44.  
  45. items:
  46.  # The previous page button item
  47.   prev:
  48.     id: CYAN_STAINED_GLASS_PANE
  49.     position: 18
  50.     name: '&6Prev Page'
  51.     lore:
  52.      - '&3Page {CURRENT}/{MAX}'
  53.  
  54.   # The next page button item
  55.   next:
  56.     id: CYAN_STAINED_GLASS_PANE
  57.     position: 26
  58.     name: '&6Next Page'
  59.     lore:
  60.      - '&3Page {CURRENT}/{MAX}'
  61.  
  62.   # The no page button item
  63.   noPage:
  64.     id: GRAY_STAINED_GLASS_PANE
  65.     name: '&6No Pages'
  66.     lore:
  67.      - '&3Page {CURRENT}/{MAX}'
  68.  
  69. # ============================================
  70. # Commands
  71. # ============================================
  72. commands:
  73.  # Clears the current page and hotbar
  74.   #   Add "all" after a clear command to clear all pages and hotbar
  75.   clear:
  76.    # Will override any existing commands with same name
  77.     aliases:
  78.      - 'clear'
  79.       - 'clearinventory'
  80.       - 'clearinvent'
  81.       - 'ci'
  82.       - 'clean'
  83.  
  84. # ============================================
  85. # Saving
  86. # ============================================
  87. saving:
  88.  # Recommended to keep enabled
  89.   #   If disabled, inventories are only saved when players leave the server
  90.   enabled: true
  91.   # How often should inventories be saved to files, in seconds
  92.   interval: 900
  93.  
  94. # ============================================
  95. # Logging
  96. # ============================================
  97. logging:
  98.   saves:
  99.    # Show in the console when inventories are saved
  100.     enabled: true
  101.     # Message to be shown in the console
  102.     message: 'All inventories have been saved.'
  103.  
  104. # ============================================
  105. # Language
  106. # ============================================
  107. # Color codes are supported
  108. #   See http://minecraft.gamepedia.com/Formatting_codes for color codes
  109. #   Use the ampersand symbol "&" before the color code number
  110. #     Ex. "&6" would be gold.
  111. language:
  112.   noPermission: '&4You do not have access to that command.'
  113.   clear: '&6Cleared inventory items from hotbar and current page.'
  114.   clearAll: '&6Cleared inventory items from hotbar and all pages.'
  115.   itemsMerged: '&7Items have been moved to your inventory pages.'
  116.   itemsDropped: '&cYour inventory is full, some items have been dropped.'
Add Comment
Please, Sign In to add comment