Configuration File

The main config file and how to use it

#Config version
#This defines the version of your configuration.
version: 1.1

#Auto-backup enabled or not
#This sets whether the automatic backup feature is on or off.
autoBackup: true

#If true, each world is backed up one by one at intervals, determined by dividing the total worlds by the backup interval.
#If false, all worlds will be backed up at once based on the backup interval.
asyncBackup: true

#Time in minutes between world backups
#This sets the interval at which world backups are performed.
backupInterval: 360

#The worlds chosen to backup
#These are the worlds that will be backed up.
worldsToBackup: 
  - world
  - world_nether
  - world_the_end

#Display name for the plugin
#This is the tag that will be shown for the plugin.
tag: '&3[&bQuickSave&3]'

#When a player has no permission
#This message is displayed when a player doesn't have the necessary permissions.
perms: '&cNo permission.'

#When a world is not found
#This message is displayed when a world isn't found in the configuration.
noWorld: '&cWorld not Found in Config.'

#Message upon reloading the plugin
#This is the message that will be shown when the plugin is reloaded.
reload: '&aReloaded.'

#The maximum folder size a world can be backed up in megabytes
#This is the maximum folder size allowed for each world.
folder_size:
  maximum_enabled: true
  maximum_value: 3000

#The maximum amount of backups a world can have
#This sets the maximum number of backups a world can have.
amount:
  maximum_enabled: true
  maximum_value: 10

Last updated