Advertisement
Charflow

ASB config

Apr 15th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.91 KB | None | 0 0
  1. schematicsection:
  2.   # All schematics should be put in the schematics folder
  3.  
  4.    # Schematic panel - if more than one schematic is available to the player
  5.    # Show a panel to choose. If this is false, no panel is shown and the starter
  6.    # island is picked by permission. If a player has more than one permission
  7.    # the island selected is undefined - the plugin will pick one.
  8.   useschematicspanel: false
  9.  
  10.   # This section lists all the schematics available
  11.   # You can add or remove from this list. If this section is missing, only the default
  12.   # island works.
  13.   schematics:
  14.    # default heading is required
  15.     default:
  16.      # Icon - if this is missing or wrong, it will be a MAP
  17.       icon: DIRT
  18.       # Short name - color codes with & okay
  19.       name: "The Original"
  20.       # Longer description. Use | for new lines. Color codes okay.
  21.       description: "Challenging|starter|island!"
  22.       # Filename of the schematic in the schematic folder
  23.       filename: island.schematic
  24.       # Use default chest if true, or use schematic chest contents if false
  25.       useDefaultChest: true
  26.     # Additional heading names can be anything you like, but must be unique
  27.     island1:
  28.      # Credit to Antal1609 for this schematic!
  29.       icon: RED_ROSE
  30.       name: "Island Duo"
  31.       description: "Two close islands!|Double the fun,|but a little easier.|&a[Credit] Antal1609"
  32.       filename: double.schematic
  33.       # Schematics can have biomes set when they are created
  34.       biome: FLOWER_FOREST
  35.       useDefaultChest: true
  36.       #permission: any.perm.you.like
  37.     extrahard:
  38.       icon: OBSIDIAN
  39.       name: "&lBlack &bDiamonds"
  40.       description: "Experts only!|&aMinimal resources|&awith a few diamonds."
  41.       filename: hard.schematic
  42.       useDefaultChest: false
  43.       # Schematics that require water or lava to hover can prevent physics when pasting
  44.       usephysics: false
  45.       #permission: any.perm.you.like
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement