Tutorial
TIPP: Use http://yamllint.com/ to prevent config errors ;)
Main Config
In your Main config file (config.yml) you can set several general things. The most things are self described but here are some Important settings:
# Enable this to log all information to the console. As Default this is Enabled logConsole: true # We use Plugin Metrics to collect Information about the Usage of the Plugin. That's just basic Information: System OS, Bukkit version, plugin version etc. Please let this true. useMetrics: true # This plugin has an easy API to add new Variables to this plugin. Let this true if you want that other plugins can add variables useAPI: true # This plugin has an Automatic plugin Updater. It will download the latest version into /plugins/updater and Install it automatically after the next reload/restart. useAutoUpdater: true # Download and Install the newest version of the plugin Automatically if enabled. If false you will just become a Message that a new Version is Available. autodownload: true # Enable this to refresh the content of the Tablist each x Seconds. This would be helpful if you have a dynamic content. Otherwise the tablist will only refresh if a Player joins, leaves the Server or the world. autoRefresh: false # This is the Interval to refresh the tablist each x Seconds if autoRefresh is enabled. refreshInterval: 10 # As default the config file for each world will be default.yml. If you set here a other file this will be used. Configs: supercoolconfigfile: //this will be the file name - world1 //This will be the world which will use the confg file - p_Playername //The player Playername will use this config - g_Groupname //If the player has the group Groupname he will use this config - perm_Permission //If the player has the permission Permission he will use this config
Tablist Config
//If you want to create a Tablist like this: // //_________________________________________________ //| | TutorialServer | | //| | | | //| Player 1 | Player 2 | Player 3 | // //Your config file should be: lines: '1': '1': '%empty%' '2': 'Tutorial Server' '3': '%empty%' '2': '1': '%empty%' '2': '%empty%' '3': '%empty%' '3': '1': '' '2': '' '3': ''
Each empty line will be replaced with players. The %empty% lines will be empty. For other variables look at the variables-list at the main page.
Comments