RTP Configuration

Default configuration file

config-version: 2

sounds:
  enabled: true
  # Check out sounds at https://jd.papermc.io/paper/1.21.5/org/bukkit/Sound.html
  delay:
    enabled: true
    sound: BLOCK_NOTE_BLOCK_HAT
    pitch: 1.0 # Default 1
    volume: 1.0 # Default 1
  success:
    enabled: true
    sound: ENTITY_ENDERMAN_TELEPORT
    pitch: 1.0 # Default 1
    volume: 1.0 # Default 1
titles:
  enabled: true
  # When player is waiting the teleport
  delay:
    ui:
      # If true, the title will be sent to the player
      enabled: true
      # The animation name
      # See animations.yml
      # If you want to disable the title, subtitle or actionbar, just leave it empty
      # If you want a static title, subtitle or actionbar, just write the text
      title: ""
      subtitle: "subtitle-1"
      actionbar: "actionbar-1"
    message: true
  # Success section doesn't support animations :d
  success:
    ui:
      enabled: true
      title: "&aTeleport success!"
      subtitle: ""
      actionbar: ""
    message: true
teleport:
  attempts: 10
  delay: 5 # Seconds
  cooldown: 30 # Seconds
  money: 100 # The money necessary to use rtp, if the player not has the money, the rtp will ve cancel
  particle:
    enabled: true
    animation: VORTEX
  blacklisted_blocks:
    - WATER
    - LAVA
    - SAND
    - SEAGRASS
    - TALL_SEAGRASS
    - KELP
  blacklisted_biomes:
    - plains
  area:
    # Default area
    # If this option is enabled, the world border will be used as the area
    # And the centers will be ignored
    use_world_border: true
    radius: 200
    center_x: 150
    center_z: -150
    # Per world areas
    per_world:
      world:
        use_world_border: false
        radius: 300
        center_x: 100
        center_z: -50
      world_nether:
        use_world_border: true
        radius: 200
        center_x: 100
        center_z: -50

Sounds

If this option is enabled, sounds will be sent to the player, but each sound can also be disabled independently.

The "delay" section is the sound that will be sent when the player is waiting to be teleported. The "success" section is the sound that will be sent when the player has been successfully teleported.

Titles

If this option is enabled, titles, subtitles and actionbar will be sent to the player, along with this feature is included:

Animated Titles

Messages

If this option is enabled, messages will be sent to the player.

The "delay" section is for messages when the player is waiting to be teleported. The "success" section is when the player has been successfully teleported.

Teleport

Sections:

  • attempts: The number of attempts to generate possible teleport locations.

  • delay: The amount of time it will take for the player to be teleported.

  • cooldown: The cooldown for the command/teleport.

  • money: The amount of money required for your economy plugin.

  • particle: It is the particle animation that will be shown to the player when waiting for an rtp. enabled: to disable or enable this feature. animation: animation to be displayed in the teleportation. See info here.

  • blacklisted_blocks: The list of blocks that will be checked for the blocks they are currently on and those below the player. If a block is matched, the location will be invalid.

  • blacklisted_biomes: The list of biomes that will be checked for one of the possible teleport locations. If one is found in the list, the location will be invalid.

  • area: The section where teleport areas will be selected, such as radius, center, etc. Values ​​outside of "per_world" will be the default values ​​for a world not in "per_world".

    • use_world_border: Enable or disable center orientation based on the defined center of the world border.

    • radius: This is the teleport radius based on the center of the world border (if enabled) or the x and y centers.

    • center_x: This is the center of the x coordinate, which will serve as a guide for generating a possible teleportation coordinate.

    • center_z: This is the center of the z coordinate, which will serve as a guide for generating a possible teleportation coordinate.

    • per_world: In this section, you must enter a world name to generate a custom area for that world. The parameters for this section are the same as those for the area section.

Last updated