2015-09-16 13:31:39 +02:00
# Minepacks Config File
# Language settings
# Language to use, will load the file: /plugins/Minepacks/lang/<your language setting>.yml
Language : en
# How outdated language files should be treated. Overwrite/Update
2017-01-28 22:45:10 +01:00
# Overwrite = old language file will be replaced with new, use this only if you use the language files supplied from the plugin
2015-09-16 13:31:39 +02:00
# Update = the old language file will be updated with the new english messages, all your changes to the file will survive the update
LanguageUpdateMode : Overwrite
2017-01-24 20:16:21 +01:00
# Title to be shown for the opened inventory for everyone except the owner of the backpack. Can contain {OwnerName} (which will be replaced with the players name).
2016-03-25 00:49:45 +01:00
BackpackTitleOther : "&b{OwnerName}'s Backpack"
# The title of the inventory for the owner of the backpack.
BackpackTitle : "&bBackpack"
2015-09-16 13:31:39 +02:00
# Defines how long a player have to wait till he can reopen his backpack.
# Time is in seconds. Values < 1 disable the cooldown.
command_cooldown : -1
2017-01-24 20:16:21 +01:00
# If enabled whe cooldown will be synced between servers. It will also prevent players from leaving and joining to bypass the cooldown.
sync_cooldown : false
2017-01-28 22:45:10 +01:00
# Defines if the content of the backpack get dropped on the death of a player.
2015-09-16 13:31:39 +02:00
# If enabled, it can be disabled for individual players with the "backpack.KeepOnDeath" permission.
drop_on_death : true
2017-01-28 22:45:10 +01:00
# Defines the max amount of columns for a backpack
2016-04-06 18:38:39 +02:00
max_size : 6
2017-01-28 23:08:10 +01:00
# Defines in which game-modes a player can access his backpack (name or id)
allowed_game_modes : [ "SURVIVAL" ]
2015-09-16 13:31:39 +02:00
2017-01-28 22:45:10 +01:00
# Controls for the auto pickup on full inventory function
2015-09-16 13:31:39 +02:00
full_inventory :
# If items should be collected to the backpack if the players inventory is full
collect_items : false
# Interval in seconds how often items around the player should be collected, increase it if it lags the server
check_interval : 1
# Radius in which items get collected, in meter/blocks, allow decimals
collect_radius : 1.5
# Database settings
Database :
# Database type. MySQL, SQLite or Files
Type : SQLite
2017-01-28 22:45:10 +01:00
# Turn off if you want to use player ids created from an other plugin. When using shared tables please check the tables selection
2015-09-16 13:31:39 +02:00
UpdatePlayer : true
# Auto database cleanup settings
AutoCleanup :
# Defines the max amount of days backpacks will be stored. -1 to disable auto cleanup
MaxInactiveDays : -1
2017-01-28 22:45:10 +01:00
# If you would like to use UUIDs, it is recommended not to change this setting unless you know what you are doing!
2015-09-16 13:31:39 +02:00
# true: Only to use if your server is running in online mode and your minecraft version is 1.7.5 or newer
# false: In offline mode or for minecraft version below 1.7.5
2015-09-24 17:06:00 +02:00
# If you are using BungeeCord please set this setting based on your BungeeCord's online mode!!!
2015-09-16 13:31:39 +02:00
UseUUIDs : true
# Defines the storage format for UUIDs for compatibility with other plugins (shared tables)
# true: format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
# false: format: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
UseUUIDSeparators : false
# Settings only for MySQL
2016-12-19 22:06:08 +01:00
SQL :
2015-09-16 13:31:39 +02:00
Host : localhost:3306
Database : minecraft
User : minecraft
Password : minecraft
2016-03-06 20:29:12 +01:00
#The max amount of connections to the database the connection pool will open
2017-01-28 23:08:10 +01:00
MaxConnections : 2
2015-09-24 17:06:00 +02:00
# Tables settings for shared tables when using MySQL - Advanced MySQL Settings
# Use these settings only if you know what you are doing!!!!
2017-01-28 22:45:10 +01:00
# Do only change this settings if you know what you are doing and have some basic MySQL knowledge!!!
# Changing settings down here after you have used this plugin may result in data inconsistency!!!
2015-09-16 13:31:39 +02:00
Tables :
# Table names
2017-01-28 22:45:10 +01:00
# Don't change the players table if you have backpacks stored in your database already! Player id's might wont match anymore resulting data inconsistency.
2015-09-16 13:31:39 +02:00
User : backpack_players
Backpack : backpacks
2017-01-24 20:16:21 +01:00
Cooldown : backpack_cooldowns
2015-09-16 13:31:39 +02:00
# Field settings for the tables
2015-09-24 17:06:00 +02:00
# Do not change them after the tables have been generated!
2017-01-28 22:45:10 +01:00
# If you like to change them after the tables have been generated alter the tables manually or delete them (the system then will regenerate them).
2015-09-16 13:31:39 +02:00
Fields :
User :
Player_ID : player_id
Name : name
UUID : uuid
Backpack :
Owner_ID : owner
ItemStacks : itemstacks
Version : version
LastUpdate : lastupdate
2017-02-05 04:47:54 +01:00
Cooldown :
Player_ID : id
Time : time
2017-01-28 22:45:10 +01:00
# Settings controlling the cache behavior of the plugin. You may can optimize it a little bit depending on your player count, ram or cpu bottlenecks.
2016-12-19 22:06:08 +01:00
Cache :
UnCache :
2017-01-28 22:45:10 +01:00
# The strategie used to uncache offline players. Options
2016-12-19 22:06:08 +01:00
# interval (offline players get uncached every x seconds)
2017-01-28 22:45:10 +01:00
# intervalChecked (like interval, but also ensures that the player is already offline for at least the interval time, add's a cpu overhead)
# ondisconnect (player instantly gets uncached as soon as he disconnects, may adds overhead if other plugins try to access the player data when they go offline, also it may be problematic for players with unstable connections)
2016-12-19 22:06:08 +01:00
# ondisconnectdelayed (player gets uncached x seconds after he went offline, adds overhead on disconnect, you shouldn't use this with a lot of players joining and leaving.)
Strategie : interval
2017-01-28 22:45:10 +01:00
# Used for the interval based uncaching algorithms. Also used as delay for ondisconnectdelayed. Value in seconds. Default: 600 = 10 minutes
2016-12-19 22:06:08 +01:00
Interval : 600
Delay : 600
Shulkerboxes :
2017-01-28 22:45:10 +01:00
# This setting controls whether players can put shulkerboxes into their backpacks.
2016-12-19 22:06:08 +01:00
PreventInBackpack : true
2017-01-28 22:45:10 +01:00
# This setting allows to disable shulkerboxes all together. Players won't be able to craft or use them.
2016-12-19 22:06:08 +01:00
DisableShulkerboxes : false
2017-01-28 22:45:10 +01:00
# This settings controls how existing shulkerboxes are handled if they are disabled.
2016-12-19 22:06:08 +01:00
Existing :
2017-01-28 22:45:10 +01:00
# Every existing shulker-box will be removed when a player tries to interact with it. The content will be lost.
2016-12-19 22:06:08 +01:00
Remove : false
2017-01-28 22:45:10 +01:00
# Every existing shulker-box will be destroyed when a player tries to interact with it. The content will be dropped to the ground.
2016-12-19 22:06:08 +01:00
Destroy : false
2015-09-16 13:31:39 +02:00
2017-02-13 00:26:02 +01:00
ItemFilter :
# Enables the item filter. Make sure to define items to be filtered.
Enable : false
# List off items not allowed in the backpack. Can be name or id.
Blacklist : [ ]
2015-09-16 13:31:39 +02:00
# Enables/Disables the auto-update function of the plugin.
auto-update : true
2015-09-17 15:10:00 +02:00
# Config file version. Don't touch it!
2017-02-13 00:26:02 +01:00
Version : 14