Skip to content
These docs are a work in progress and may be incomplete or contain inaccuracies. (Or be for a newer unreleased version of the mod)

Escape Rope Configuration

A config file is generated automatically at:

  • config/cobblemon_escape_rope/config.json

Default values:

{
"serverSaveTicks": 20,
"escapeRopeItem": {
"cooldownInSeconds": 300,
"consumeOnUse": false,
"useTimeInSeconds": 3,
"teleportSafeSearchRadius": 5,
"blacklistedDimensions": []
}
}
  • serverSaveTicks: How often (in ticks) to save player positions to disk. Default: 20 (1 second).
  • cooldownInSeconds: Cooldown duration after using the rope. Default: 300 (5 minutes).
  • consumeOnUse: Whether to consume the rope item on use. Default: false.
  • useTimeInSeconds: Time required to use the rope (hold right-click). Default: 3 seconds.
  • teleportSafeSearchRadius: Radius to search for a safe landing spot around the saved position. Default: 5 blocks.
  • blacklistedDimensions accepts dimension IDs (for example: minecraft:the_nether).

Sample:

{
"escapeRopeItem": {
"blacklistedDimensions": [
"minecraft:the_nether",
"minecraft:the_end"
]
}
}

When a dimension is blacklisted:

  • Escape Rope use is blocked in that dimension.
  • Open-sky return positions are not updated while you are in that dimension.