pre-v2/for-users/Configuration

This page is outdated and NOT recommended unless using 1.4 or older

When you first look at the configuration files of BananaSpace in plugins/BananaSpace/, they might look giant to you. But I tell you, in the end they are very simple - you just need to get used to editing them. This wiki page has all default configuration files with comments for almost every setting. These comments can also be found in your very own configuration files.

Main Configuration File

This file is the heart of BananaSpace. This file has all the spaceworlds, all main configuration and more. Planet generation settings have their own configuration file, remember that. You can see the version this configuration file is for in the header comment.

config.yml

# BananaSpace v1.4_1 - Main Configuration File 
# ----------------------------------------
#     This configuration has a pretty      
#    huge amount of documentation, but     
#   if you still have questions, please    
#        ask on BukkitDev! Thanks.
# Debugging mode
debug: false
# Global settings
global:
    # Spacesuit armortype
    armortype: iron
    # Spacehelmet block id
    blockid: 86
    # Other global settings
    givehelmet: false
    givesuit: false
    usespout: true
# Economy settings
economy:
  # True if economy should be enabled
  enabled: false
  entercommandcost: 20
  exitcommandcost: 20
  entercost: 20
  exitcost: 20
# Space worlds
worlds:
# Example world
# To use this space world please remove the comments. (if you know how)
#    world_space:
#        # World generation options
#        generation:
#            generateplanets: true
#            generateasteroids: true
#            generatesatellites: true
#            # From 1-200. These can be turned off with the generateasteroids-setting.
#            glowstonechance: 1
#            stonechance: 3
#            # From 1-1337. This can be turned off with the generatesatellites-setting.
#            satellitechance: 1
#        # Spacesuit options
#        suit:
#            required: false
#        # Spacehelmet options
#        helmet:
#            required: false
#        # Breathing area options
#        breathingarea:
#            maxroomheight: 5
#        # Miscellaneous options
#        weather: false
#        nethermode: false
#        alwaysnight: true
#        neutralmobs: true
#        hostilemobs: false

Planet Generation Configuration File

This configuration file changes the way planets are generated in spaceworlds that have planets enabled.

planets.yml

# BananaSpace v1.4_1 - Planet Generation Configuration File 
# ----------------------------------------------------- 
#            This configuration has a pretty                   
#           huge amount of documentation, but                  
#          if you still have questions, please                 
#                ask on BukkitDev! Thanks.              
# Remember, these settings affect all space worlds with 
# planet generation turned on!
seed: 4394682821756678415
density: 1000
minDistance: 100
bedrock: false
floorBlock: STATIONARY_WATER
# Alter this value if you want a floor
floorHeight: 0
# Minimum & maximum planet size
minSize: 10
maxSize: 40
# Minimum & maximum shell size
minShellSize: 10
maxShellSize: 20
blocks:
    # Planet shells & probabilities
    shells:
    - STONE-1.0
    - DIRT-1.0
    - LEAVES-0.9
    - ICE-0.9
    - SNOW_BLOCK-0.9
    - GLOWSTONE-0.4
    - BRICK-0.6
    - SANDSTONE-0.8
    - OBSIDIAN-0.5
    - MOSSY_COBBLESTONE-0.3
    - WOOL-0.4
    - GLASS-0.9
    # Planet cores & probabilities
    cores:
    - PUMPKIN-0.8
    - STATIONARY_LAVA-0.8
    - STATIONARY_WATER-1.0
    - COAL_ORE-1.0
    - IRON_ORE-0.8
    - DIAMOND_ORE-0.4
    - CLAY-0.3
    - LAPIS_ORE-0.4
    - LOG-1.0
    - GOLD_ORE-0.6
    - REDSTONE_ORE-0.75
    - SAND-1.0
    - BEDROCK-0.5
    - AIR-1.0

Comments

Posts Quoted:
Reply
Clear All Quotes