Advertisement
NovaKevin

InventoryPages 1.1.1 - config.yml

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