Configuration

The configuration of this plugin is split into two files: config.yml and groups.yml that get created when the plugin is ran.

config.yml

#If we should use mySQL
useSQL: false
#Should we split the health between groups?
splitHealth: true
#Should we split the hunger between groups?
splitHunger: true
#Does this plugin control the player's gamemode?
controlGamemode: true
#Do we separate the player's creative and survival inventories on the same map?
separateGamemodeInventories: true
# Should we allow players to place enderchests?
allowEnderChestPlacement: true
# Only enable this if a plugin's commands seem to be bypassing MultiInv and carrying inventories over worlds.
compatibilityMode: true
#If we are controlling the gamemode which groups should we switch the user to creative mode for?
creativeGroups:
- creative

#mySQL connection details
sql:
  host: localhost
  port: '3306'
  username: multiinv
  password: password
  database: multiinv

groups.yml

# Shares are now stored using a group method
# You choose a world group name and place all the worlds you want in that group
# Any worlds that are not specifically set in a group will be in a separate group
# with that world name. # e.g. # groupName: # - world1 # - world2 # groupName2: # - world3 # - world4 # # An alternative method is: # groupName: [world1, world2] # groupName2: [world3, world4] # This is the config I use on my server setup default: - world - world_nether - world_the_end - elite - elite_the_end - elite_nether - builders creative: - creative - creative_nether