Skip to content

Custom Gateways Configuration

All of the configuration files for Custom Gateways are located in the <game_directory>/config/custom_gateways/ directory.

Configuration Files:

  • server.toml - Server side configuration options for Custom Gateways.
server.toml
#Custom Gateways Server Configuration
[server]
#Teleport Validation Configuration
[server.teleportValidation]
cooldownMS = 5000
safeSearchRadius = 5
allowNonPlayerTeleport = false
#Remote Dialer Configuration
[server.remoteDialer]
maxPortalEntries = 32

Allows configuration of the teleportation validation settings for Custom Gateways, including cooldowns and safe search radius.

The cooldown in milliseconds between teleportation attempts.

  • Type: Integer
  • Default: 5000
  • Range: 0 ~ 9223372036854775807

The radius in blocks to search for a safe teleportation location.

  • Type: Integer
  • Default: 5
  • Range: > 0

Whether to allow non-player entities to teleport using the custom gateways.

  • Type: Boolean
  • Default: false

Allows configuration of the Remote Dialer item settings for Custom Gateways, including maximum portal entries.

The maximum number of portal entries that can be stored in a Remote Dialer item.

  • Type: Integer
  • Default: 32
  • Range: > 1