Advertisement
Guest User

BackPack CFG

a guest
Sep 25th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. #
  2. # BackPacks 2.1.0
  3. # By michael1011
  4. #
  5.  
  6. # Don't touch this variable! It would destroy your config files!
  7. configVersion: 0
  8.  
  9. # Setup your MySQL connection here
  10. MySQL:
  11. host: "46.105.146.159"
  12. port: "3306"
  13. database: "freebuildserver_backpack"
  14. username: "xxx"
  15. password: "xxx"
  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.  
  22. # Delete the defaults and create your own backpacks here
  23. # Find all materials here: http://bit.ly/21vbetj
  24.  
  25. # Important: every description must be unique!
  26. BackPacks:
  27. # List all BackPacks that should be enabled
  28. enabled:
  29. 1: "kleinerBackPack"
  30. 2: "reiseBackPack"
  31. 3: "enderBackPack"
  32. 5: "craftingBackPack"
  33. 4: "ofenBackPack"
  34. 5: "grosserBackPack"
  35.  
  36. kleinerBackPack:
  37. name: "&bKleiner &3Rucksack"
  38. type: "normal"
  39.  
  40. description:
  41. 1: "&fDer &bkleine &3Rucksack&f."
  42. 2: "&8Rechtsklick um es zu oeffnen."
  43.  
  44. # Must be divisible by 9
  45. slots: 9
  46.  
  47. material: "COMPASS"
  48.  
  49. crafting:
  50. 1: "I+L+I"
  51. 2: "L+C+L"
  52. 3: "I+L+I"
  53.  
  54. materials:
  55. I: "IRON_INGOT"
  56. L: "LEATHER"
  57. C: "COMPASS"
  58.  
  59. reiseBackPack:
  60. name: "&fMittlerer &eReise-&6Rucksack"
  61. type: "normal"
  62.  
  63. description:
  64. 1: "&fDer &eReise-&6Rucksack&f."
  65. 2: "&8Rechtsklick um es zu oeffnen."
  66.  
  67. slots: 27
  68.  
  69. material: "CLOCK"
  70.  
  71. crafting:
  72. 1: "R+G+R"
  73. 2: "G+W+G"
  74. 3: "R+G+R"
  75.  
  76. materials:
  77. R: "REDSTONE_BLOCK"
  78. G: "GOLD_BLOCK"
  79. W: "CLOCK"
  80.  
  81. enderBackPack:
  82. name: "&5Ender-&dRucksack"
  83. type: "ender"
  84.  
  85. description:
  86. 1: "&5Ender-&dRucksack&f."
  87. 2: "&8Rechtsklick um es zu oeffnen."
  88.  
  89. material: "ENDER_CHEST"
  90.  
  91. crafting:
  92. 1: "P+O+P"
  93. 2: "O+W+O"
  94. 3: "P+O+P"
  95.  
  96. materials:
  97. P: "ENDER_PEARL"
  98. W: "ENDER_CHEST"
  99. O: "OBSIDIAN"
  100.  
  101. craftingBackPack:
  102. name: "&7Crafting &8Rucksack"
  103. type: "crafting"
  104.  
  105. description:
  106. 1: "&fDer &7Crafting-&8Rucksack."
  107. 2: "&8Rechtsklick um es zu oeffnen."
  108.  
  109. material: "WORKBENCH"
  110.  
  111. crafting:
  112. 1: "R+W+R"
  113. 2: "W+W+W"
  114. 3: "R+W+R"
  115.  
  116. materials:
  117. R: "REDSTONE"
  118. W: "WORKBENCH"
  119.  
  120. ofenBackPack:
  121. name: "&cOfen-&4Rucksack"
  122. type: "furnace"
  123.  
  124. description:
  125. 1: "&fDer &cOfen-&4Rucksack&f."
  126. 2: "&8Rechtsklick um es zu oeffnen."
  127.  
  128. gui:
  129. enabled: true
  130.  
  131. material: "FURNACE"
  132.  
  133. crafting:
  134. 1: "C+B+C"
  135. 2: "B+F+B"
  136. 3: "C+B+C"
  137.  
  138. materials:
  139. C: "COAL"
  140. B: "COAL_BLOCK"
  141. F: "FURNACE"
  142.  
  143.  
  144. grosserBackPack:
  145. name: "&cGrosser Reise-&4Rucksack"
  146. type: "normal"
  147.  
  148. description:
  149. 1: "&fDer &cGrosse &4ReiseRucksack&f."
  150. 2: "&8Rechtsklick um es zu oeffnen."
  151.  
  152. slots: 45
  153.  
  154. material: "FIRE_CHARGE"
  155.  
  156. crafting:
  157. 1: "X+T+X"
  158. 2: "Y+Z+Y"
  159. 3: "X+T+X"
  160.  
  161. materials:
  162. X: "BOOKSHELF"
  163. Y: "NETHER_STAR"
  164. Z: "CHEST"
  165. T: "LEATHER"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement