Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. #
  2. # BackPacks 2.3.0
  3. # By michael1011
  4. #
  5.  
  6. # Don't touch this variable! It would destroy your config files!
  7. configVersion: 3
  8.  
  9. # Setup your MySQL connection here
  10. MySQL:
  11. host: ""
  12. port: "3306"
  13. database: ""
  14. username: ""
  15. password: ""
  16.  
  17. # Only useful for NamelessMC (https://github.com/NamelessMC/Nameless)
  18. syncBackPacks: false
  19.  
  20.  
  21. # If a player dies with a BackPack in his inventory should the content of BackPack get dropped too?
  22. dropOnDeath: true
  23.  
  24. # todo: add to updater (add when upgrading from configVersion 2 to 3)
  25. # The same as 'dropOnDeath' but will drop every BackPacks of the player even if they are not in the inventory
  26. # Only active when 'dropOnDeath' is also true
  27. dropOnDeathAll: true
  28.  
  29. # Should players be able to store BackPacks in BackPacks?
  30. BackPackInBackPack: false
  31.  
  32. # Disable right clicking backpack like a block
  33. disableRightClick: true
  34.  
  35. # Enable right click inside inventory to open backpack.
  36. enableInvClick: true
  37.  
  38. # Require the backpack to be in offhand slot.
  39. requireOffHand: true
  40.  
  41. # When you click on one of these items the BackPack won't open
  42. # You can find the materials here: http://bit.ly/21vbetj
  43. # The materials aren't case sensitive
  44. # A '*' will add any material that matches the characters before to the list
  45. doNotOpen:
  46. - WORKBENCH
  47. - FURNACE
  48. - BURNING_FURNACE
  49. - CHEST
  50. - TRAPPED_CHEST
  51. - ENDER_CHEST
  52. - ENCHANTMENT_TABLE
  53. - ANVIL
  54. - HOPPER
  55. - DISPENSER
  56. - SHULKER_BOX*
  57. - SPONGE
  58. - SIGN
  59. - MELON_BLOCK
  60.  
  61.  
  62.  
  63. # the updater will search for updates here: http://bit.ly/2cXN1dD
  64. # and it will only use versions with the type 'release'
  65. Updater:
  66. enabled: true
  67.  
  68. # in whole hours
  69. interval: 24
  70.  
  71. # if this is true the plugin will download the latest version and reload the server after the download automatically
  72. # if it's false it will send every player with the permission 'BackPacks.update' a message that a new version is available on join
  73. autoUpdate: false
  74.  
  75.  
  76. # Delete the defaults and create your own BackPacks here
  77. # You can create BackPacks with the /bpcreate command too
  78. # Find all materials here: http://bit.ly/21vbetj
  79.  
  80. # Important: every description must be unique!
  81. BackPacks:
  82. # List all BackPacks that should be enabled
  83. enabled:
  84. 1: "BackPack"
  85. 2: "CoyotePack"
  86. 3: "AlicePack"
  87. 4: "Bag"
  88. 5: "AssaultPack"
  89.  
  90. Bag:
  91. name: "&fBag"
  92. type: "normal"
  93.  
  94. # Important: every description must be unique!
  95. description:
  96. 1: "&8&oa make-shift tarp bag"
  97. 2: "&7Put in off-hand slot then"
  98. 3: "&aRight Click &7to Open"
  99.  
  100. # Must be divisible by 9
  101. slots: 9
  102.  
  103. material: "SPECKLED_MELON"
  104.  
  105. BackPack:
  106. name: "&fBack Pack"
  107. type: "normal"
  108.  
  109. # Important: every description must be unique!
  110. description:
  111. 1: "&8&oa normal everyday back pack"
  112. 2: "&7Put in off-hand slot then"
  113. 3: "&aRight Click &7to Open"
  114.  
  115. # Must be divisible by 9
  116. slots: 9
  117.  
  118. material: "FERMENTED_SPIDER_EYE"
  119.  
  120. CoyotePack:
  121. name: "&fCoyote Pack"
  122. type: "normal"
  123.  
  124. # Important: every description must be unique!
  125. description:
  126. 1: "&8&oa large hikers pack"
  127. 2: "&7Put in off-hand slot then"
  128. 3: "&aRight Click &7to Open"
  129.  
  130. # Must be divisible by 9
  131. slots: 18
  132.  
  133. material: "RABBIT_FOOT"
  134.  
  135. AssaultPack:
  136. name: "&fAssault Pack"
  137. type: "normal"
  138.  
  139. # Important: every description must be unique!
  140. description:
  141. 1: "&8&oa huge army pack"
  142. 2: "&7Put in off-hand slot then"
  143. 3: "&aRight Click &7to Open"
  144.  
  145. # Must be divisible by 9
  146. slots: 27
  147.  
  148. material: "BLAZE_POWDER"
  149.  
  150. AlicePack:
  151. name: "&f&lAlice Pack"
  152. type: "normal"
  153.  
  154. # Important: every description must be unique!
  155. description:
  156. 1: "&8&oa massive tactical pack"
  157. 2: "&7Put in off-hand slot then"
  158. 3: "&aRight Click &7to Open"
  159.  
  160. # Must be divisible by 9
  161. slots: 36
  162.  
  163. material: "MAGMA_CREAM"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement