Advertisement
Guest User

Untitled

a guest
Feb 1st, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 KB | None | 0 0
  1. #
  2. # BackPacks 2.2.2
  3. # By michael1011
  4. #
  5.  
  6. # Don't touch this variable! It would destroy your config files!
  7. configVersion: 2
  8.  
  9. # Setup your MySQL connection here
  10. MySQL:
  11. host: "localhost"
  12. port: "3306"
  13. database: "bp"
  14. username: "bp"
  15. password: "psswrd"
  16.  
  17.  
  18. # If a player dies with a backpack in his inventory should the content of backpack get dropped too?
  19. dropOnDeath: true
  20.  
  21. # Should players be able to store backpacks in backpacks?
  22. BackPackInBackPack: false
  23.  
  24.  
  25. # the updater will search for updates here: http://bit.ly/2cXN1dD
  26. # and it will only use versions with the type 'release'
  27. Updater:
  28. enabled: true
  29.  
  30. # in whole hours
  31. interval: 24
  32.  
  33. # if this is true the plugin will download the latest version and reload the server after the download automatically
  34. # if it's false it will send every player with the permission 'backpacks.update' a message that a new version is available on join
  35. autoUpdate: false
  36.  
  37.  
  38. # Delete the defaults and create your own backpacks here
  39. # You can create backpacks with the /bpcreate command too
  40. # Find all materials here: http://bit.ly/21vbetj
  41.  
  42. # Important: every description must be unique!
  43. BackPacks:
  44. # List all BackPacks that should be enabled
  45. enabled:
  46. 1: "BackPack"
  47. 2: "CoyotePack"
  48. 3: "AlicePack"
  49.  
  50. BackPack:
  51. name: "&fBack Pack"
  52. type: "normal"
  53.  
  54. # Important: every description must be unique!
  55. description:
  56. 1: "&7A small everyday backpack"
  57.  
  58. # Must be divisible by 9
  59. slots: 9
  60.  
  61. material: "FERMENTED_SPIDER_EYE"
  62.  
  63. crafting:
  64. 1: "I+I+I"
  65. 2: "I+I+I"
  66. 3: "I+I+I"
  67.  
  68. materials:
  69. I: "LEATHER"
  70. L: "AIR"
  71.  
  72. CoyotePack:
  73. name: "&fCoyote Pack"
  74. type: "normal"
  75.  
  76. # Important: every description must be unique!
  77. description:
  78. 1: "&7A big hikers backpack"
  79.  
  80. # Must be divisible by 9
  81. slots: 18
  82.  
  83. material: "BLAZE_POWDER"
  84.  
  85. crafting:
  86. 1: "I+L+I"
  87. 2: "L+C+L"
  88. 3: "I+L+I"
  89.  
  90. materials:
  91. I: "IRON_INGOT"
  92. L: "LEATHER"
  93. C: "COMPASS"
  94.  
  95. AlicePack:
  96. name: "&fAlice Pack"
  97. type: "normal"
  98.  
  99. # Important: every description must be unique!
  100. description:
  101. 1: "&7A large tactical backpack"
  102.  
  103. # Must be divisible by 9
  104. slots: 27
  105.  
  106. material: "MAGMA_CREAM"
  107.  
  108. crafting:
  109. 1: "I+L+I"
  110. 2: "L+C+L"
  111. 3: "I+L+I"
  112.  
  113. materials:
  114. I: "IRON_INGOT"
  115. L: "LEATHER"
  116. C: "COMPASS"
  117.  
  118.  
  119.  
  120. normalBackPack:
  121. name: "&eNormal &6BackPack"
  122. type: "normal"
  123.  
  124. description:
  125. 1: ""
  126. 2: "&fThis is the &eNormal &6BackPack&f."
  127. 3: "&8Right click to open it."
  128.  
  129. slots: 27
  130.  
  131. material: "WATCH"
  132.  
  133. crafting:
  134. 1: "R+G+R"
  135. 2: "G+W+G"
  136. 3: "R+G+R"
  137.  
  138. materials:
  139. R: "REDSTONE_BLOCK"
  140. G: "GOLD_BLOCK"
  141. W: "WATCH"
  142.  
  143. enderBackPack:
  144. name: "&5Ender &dBackPack"
  145. type: "ender"
  146.  
  147. description:
  148. 1: ""
  149. 2: "&fThis is the &5Ender &dBackPack&f."
  150. 3: "&8Right click to open it."
  151.  
  152. material: "ENDER_CHEST"
  153.  
  154. crafting:
  155. 1: "P+O+P"
  156. 2: "O+W+O"
  157. 3: "P+O+P"
  158.  
  159. materials:
  160. P: "ENDER_PEARL"
  161. W: "ENDER_CHEST"
  162. O: "OBSIDIAN"
  163.  
  164. craftingBackPack:
  165. name: "&7Crafting &8BackPack"
  166. type: "crafting"
  167.  
  168. description:
  169. 1: ""
  170. 2: "&fThis is the &7Crafting &8BackPack&f."
  171. 3: "&8Right click to open it."
  172.  
  173. material: "WORKBENCH"
  174.  
  175. crafting:
  176. 1: "R+W+R"
  177. 2: "W+W+W"
  178. 3: "R+W+R"
  179.  
  180. materials:
  181. R: "REDSTONE"
  182. W: "WORKBENCH"
  183.  
  184. furnaceBackPack:
  185. name: "&cFurnace &4BackPack"
  186. type: "furnace"
  187.  
  188. description:
  189. 1: ""
  190. 2: "&fThis is the &cFurnace &4BackPack&f."
  191. 2: "&8Right click to open it."
  192.  
  193. gui:
  194. enabled: true
  195.  
  196. material: "FURNACE"
  197.  
  198. crafting:
  199. 1: "C+B+C"
  200. 2: "B+F+B"
  201. 3: "C+B+C"
  202.  
  203. materials:
  204. C: "COAL"
  205. B: "COAL_BLOCK"
  206. F: "FURNACE"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement