Advertisement
Guest User

Untitled

a guest
Sep 17th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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: "localhost"
  12.   port: "3306"
  13.   database: "bp"
  14.   username: "bp"
  15.   password: "bp"
  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: "littleBackPack"
  30.     2: "normalBackPack"
  31.     3: "enderBackPack"
  32.     5: "craftingBackPack"
  33.     4: "furnaceBackPack"
  34.     5: "bigBackPack"
  35.  
  36.   littleBackPack:
  37.     name: "&bLittle &3BackPack"
  38.     type: "normal"
  39.  
  40.     description:
  41.       1: "&fThis is the &bLittle &3BackPack&f."
  42.       2: "&8Right click to open it."
  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.   normalBackPack:
  60.     name: "&eNormal &6BackPack"
  61.     type: "normal"
  62.  
  63.     description:
  64.       1: "&fThis is the &eNormal &6BackPack&f."
  65.       2: "&8Right click to open it."
  66.  
  67.     slots: 27
  68.  
  69.     material: "WATCH"
  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: "WATCH"
  80.  
  81.   enderBackPack:
  82.     name: "&5Ender &dBackPack"
  83.     type: "ender"
  84.  
  85.     description:
  86.       1: "&fThis is the &5Ender &dBackPack&f."
  87.       2: "&8Right click to open it."
  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 &8BackPack"
  103.     type: "crafting"
  104.  
  105.     description:
  106.       1: "&fThis is the &7Crafting &8BackPack&f."
  107.       2: "&8Right click to open it."
  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.   furnaceBackPack:
  121.     name: "&cFurnace &4BackPack"
  122.     type: "furnace"
  123.  
  124.     description:
  125.       1: "&fThis is the &cFurnace &4BackPack&f."
  126.       2: "&8Right click to open it."
  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.   bigBackPack:
  145.     name: "&cBig &4BackPack"
  146.     type: "normal"
  147.  
  148.     description:
  149.       1: "&fThis is the &cBig &4BackPack&f."
  150.       2: "&8Right click to open it."
  151.  
  152.     slots: 90
  153.  
  154.     material: "IRON_INGOT"
  155.  
  156.     crafting:
  157.       1: "X+T+X"
  158.       2: "Y+Z+Y"
  159.       3: "X+T+X"
  160.  
  161.       materials:
  162.         X: "IRON_INGOT"7
  163.         Y: "NETHER_STAR"
  164.         Z: "CHEST"
  165.         T: "LEATHER"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement