Skip to content

Escape Rope Configuration

All of the configuration files for Cobblemon Escape Rope are located in the <game_directory>/config/cobblemon_escape_rope/ directory.

Configuration files:

  • server.toml - Server side configuration options for Cobblemon Escape Rope.
server.toml
#General Configuration
[generalConfig]
#The number of ticks between server saves. Default is 20 ticks
# Default: 20
# Range: > 1
serverSaveTicks = 20
#Escape Rope Item Configuration
[escapeRopeItemConfig]
#The number of seconds before the Escape Rope can be used again after use. Default is 60 seconds.
# Default: 60
# Range: > 1
cooldownSeconds = 60
#The number of seconds it takes to use the Escape Rope. Default is 5 seconds.
# Default: 5
# Range: > 1
useTimeSeconds = 5
#The radius in blocks to search for a safe teleport location when using the Escape Rope. Default is 5 blocks.
# Default: 5
# Range: > 1
safeSearchRadius = 5
#Whether the Escape Rope item is consumed on use. Default is false.
consumeOnUse = false
#List of dimension IDs where the Escape Rope cannot be used. Default is an empty list.
blacklistedWorlds = []

Allows configuration of general server settings for Cobblemon Escape Rope.

An integer that determines how many ticks between server saves. This can be used to reduce server lag caused by frequent saves.

  • Type: integer
  • Default: 20

Allows configuration of the Escape Rope item behavior.

The number of seconds before the Escape Rope can be used again after use.

  • Type: integer
  • Default: 60

The number of seconds it takes to use the Escape Rope.

  • Type: integer
  • Default: 5

The radius in blocks to search for a safe teleport location when using the Escape Rope.

  • Type: integer
  • Default: 5

Whether the Escape Rope item is consumed on use.

  • Type: boolean
  • Default: false

A list of dimension IDs where the Escape Rope cannot be used. This can be used to prevent players from using the Escape Rope in certain dimensions.

  • Type: array
  • Default: []