WildRTP 图标

Minecraft 服务端插件

WildRTP

Another RTP Plugin build on Performance & Features

冒险类游戏机制管理类bukkitfoliapaperpurpurspigot
版本范围
1.13–26.2
下载量
7.8 万

插件介绍

WildRTP

  • Algorithms CIRCLE & SQUARE
  • Adjust teleport settings
  • Multi Worlds Support
  • Cooldown
  • MoveTimer
  • CustomRTP
  • AutoRTP

Please let me know if you have any issues

Commands

  • /wild - Teleport to a random location Aliases: [/rtp /randomtp /randomteleport /wildrtp]
  • /wild reload - Reloads the config
  • /wild info - Display plugin information
  • /wild updates - Checks for plugin updates
  • /wild help - Display help message
  • /customrtp [params...]

Note <> are required arguments, [] are only optional arguments and can be omitted. %player% is a placeholder for the player that executed the command (only in /customrtp).

Permissions

  • wildrtp.rtp - Allows you to run /wild - Default
  • wildrtp.reload - Allows you to run /wild reload
  • wildrtp.updates - Allows you to run /wild updates
  • wildrtp.custom - Allows you to run /customrtp
  • wildrtp.cooldown.bypass - Bypass the cooldown, if enabled
  • wildrtp.movetimer.bypass - Bypass the movetimer, if enabled
  • wildrtp.list.bypass - Bypass the list of disallowed worlds
  • wildrtp.list.bypass.world_name - Bypass a specific world from the list of disallowed worlds (blacklist or whitelist, whichever is enabled)
  • wildrtp.help - Allows you to run /wild help
  • wildrtp.admin - Grants all WildRTP permissions

Config

#  __          ___ _     _ _____ _______ _____
#  \ \        / (_) |   | |  __ \__   __|  __ \
#   \ \  /\  / / _| | __| | |__) | | |  | |__) |
#    \ \/  \/ / | | |/ _` |  _  /  | |  |  ___/
#     \  /\  /  | | | (_| | | \ \  | |  | |
#      \/  \/   |_|_|\__,_|_|  \_\ |_|  |_|
#
# by Joni - Thank you for using this plugin

# Language setting
# Available: [en, de, ru]
# You can add/edit languages in the plugin folder (/lang)
lang: "en"

# Global RTP settings
# This section defines the main settings for random teleportation
# Custom settings per world can be defined in the custom section
global:
  # Min & max teleportation range
  min: 1000
  max: 2500

  # Shape of the teleportation area [CIRCLE/SQUARE]
  shape: CIRCLE

  # Teleportation center
  center:
    player: false # If true, teleportation is centered on the player; x and z will be ignored
    x: 0 # X coordinate of center
    z: 0 # Z coordinate of center

  # Cooldown settings
  cooldown:
    enabled: true # Enable cooldown between RTP uses
    time: 5 # Cooldown time in seconds

  # Move timer settings
  movetimer:
    enabled: true # If true, no movement allowed before teleportation
    time: 5 # Time in seconds
    sound-canceled: ENTITY_VILLAGER_NO # Set to 'false' to disable.

  # Message settings
  messages:
    start: false # Show message when RTP starts
    end: true # Show message when RTP ends

  # Title messages displayed when RTP starts/ends
  titles:
    start:
      enabled: false
      fadeIn: 0.5
      stay: 2
      fadeOut: 0.5
    end:
      enabled: true
      fadeIn: 0.5
      stay: 2
      fadeOut: 0.5

  # Sound settings
  sound:
    start: false # Play a sound when teleport starts. Set to 'false' to disable.
    end: ENTITY_PLAYER_LEVELUP  # Use any valid Bukkit Sound enum, e.g., ENTITY_PLAYER_LEVELUP.

  # Blocks to avoid when teleporting
  blocks:
    - LAVA
    - WATER
    - AIR

  # Y-limits for teleporting
  # null = no limit
  y-min: null
  y-max: null

  # Biomes to avoid when teleporting
  # Example: biomes: [OCEAN, DESERT, PLAINS, FOREST, TAIGA, MUSHROOM_FIELDS, JUNGLE]
  # Set to '[]' to disable.
  biomes: [ ]

  # Teleport to another world
  # If set to a valid world name, players will be teleported to that world instead of their current one.
  # Set to 'false' to teleport within the same world.
  tp-in-other-world: false

  # If true, the player's individual spawn point will be set to the new location upon teleporting.
  # Set to 'false' to disable.
  set-spawnpoint: false

  # RTP generation strategy used to determine how safe locations are found.
  # This controls the algorithm used to pick valid teleport positions.
  #
  # Available strategies:
  # AUTO          - Automatically chooses the best strategy based on the world environment.
  # HIGHEST_BLOCK - Uses the highest non-air block. Extremely fast. Perfect for normal Overworld and The End.
  # BOTTOM_UP     - Scans from minY upwards for a solid block with space above it. Essential for the Nether or Cave worlds.
  # TOP_DOWN      - Scans from maxY downward.
  #
  # Recommended: AUTO (handles most worlds correctly without configuration)
  strategy: AUTO

# Auto-RTP settings
# Should the plugin teleport players automatically?
auto-rtp:
  onfirstjoin: false # When a player first joins the server
  onjoin: false # Every time a player joins the server
  ondeath: false # After a player dies

# List mode: use 'blacklist' or 'whitelist'
list: blacklist

# Set to '[]' to disable the blacklist.
blacklist: [ ] # Add blocked worlds here

# Set to '[]' to disable the whitelist.
whitelist: [ ] # Add allowed worlds here

# Uncomment and modify to customize settings for specific worlds
# YOU CAN remove any fields you don’t want to customize,
# BUT missing values will be set to the global values
# (e.g. max in global is 2500 and if not set here it will be 2500 as well)
# To enable, remove { } and add your worlds below:
# A short example is shown below:
custom: { }
#  my_custom_world:
#    min: 500
#    max: 1500
#    cooldown:
#      time: 30
#    biomes: [OCEAN, DESERT]

# Maximum attempts to find a safe location before failing
max-tries: 25

# If you want to change the prefix, you can do it here
prefix: "[&2WildRTP&f] &6"

# Hook settings for third-party plugins
hooks:
  worldguard:
    enabled: false # When enabled, checks if a location is inside any protected region and skips it if so
  protectionstones:
    enabled: false # When enabled, checks if a location is inside any protected region and skips it if so
  towny:
    enabled: false # When enabled, checks if a location is claimed and skips it if so
  residence:
    enabled: false # When enabled, checks if a location is claimed and skips it if so
  griefdefender:
    enabled: false # When enabled, checks if a location is in the wilderness

# Check for updates
check-updates: true

# Notify admins about plugin updates when they join
notify-updates-on-join: true

# If I am allowed to collect anonymous data about your server and this plugin. So I can see how many servers are using this plugin :)
# And you can see the data as well here https://bstats.org/plugin/bukkit/WildRTP/17799
metrics: true

# Advanced settings
force-close-inventories: true
per-world-cooldowns: false
prevent-spam: true  # Block multiple searches while one is in progress

# Debug mode
debug: false

# Config version (do not change)
config-version: 13

Placeholders

To view both internal placeholders and external placeholders, please visit the wiki.

Integrations

  • WorldGuard
  • ProtectionStones
  • Towny
  • Residence

Addons

Performance

Using async chunk loading on paper servers should have no impact on the performance besides the time it takes to load a chunk async. You can use Chunky to pre-generate chunks, which makes the teleporting maybe a bit faster.

Need help?

If you need any help, feel free to join my discord support server, or if you have found a bug, you can also use the github issue system. If you have a feature request, you can also make a request via discord or github.

bStats

Loading...

版本与下载

推荐下载

WildRTP-all.jar版本 2.2 · 81.6 KBSHA-1 d95cf00b63c5ef34a7842e72b735244e883497bf下载 WildRTP-all.jar

3.6

正式版
加载器
bukkit · folia · paper · purpur · spigot
MC 版本
1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
WildRTP.jar528.4 KBSHA-1 fa18575a300f179a4d103584693edecda3b5f6b4获取文件 WildRTP.jar
展开更新日志
  • Folia compatibility
  • 1.18 backwards compatibility
  • small optimization

3.5

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
WildRTP.jar518.4 KBSHA-1 542e854d01bb5e86984b862f8a40389439fbea43获取文件 WildRTP.jar
展开更新日志
  • added effects
  • added custom commands to run before/after rpt

3.4.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
WildRTP-3.4.3.jar516.8 KBSHA-1 26ec2013fc78f3f0029b9593a776a20f0a4b3359获取文件 WildRTP-3.4.3.jar
展开更新日志
  • PATTERN FOR HEX COLOR CHANGED FROM &#HEEEX TO <#HEEEX>
  • => to improve readability in config
  • other small internal changes

3.4.2

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.4.2.jar516.6 KBSHA-1 50dd62a09c1dcefda4af161aa7683a6f2cdef36b获取文件 WildRTP-3.4.2.jar
展开更新日志
  • spawnpoint now applies to autortp if enabled
  • prevents rtp outside of world border now

3.4.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.4.1.jar514.5 KBSHA-1 f6a6abd5046b5cc1f76e301e5dc78c2d8b016d01获取文件 WildRTP-3.4.1.jar
展开更新日志
  • promoted to stable
  • added set spawn point on rtp (won't work with autortp currently)
  • improved customrtp cmd, see wiki

3.4.1-beta

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.4.1-beta.jar512.6 KBSHA-1 08763c01601e6ef6fba9c3325a3361e6d34703c5获取文件 WildRTP-3.4.1-beta.jar
展开更新日志
  • BETA! This isn't fully tested yet, bugs could exists
  • major refactor of code base (command logic)
  • improves maintainability

3.4

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.4.jar508.5 KBSHA-1 a0c38ff8774725e50f2cc7643b4b46bf3d1175dc获取文件 WildRTP-3.4.jar
展开更新日志
  • fixed bugs (maybe introduced some new ones)
  • added GriefDefender hook
  • added anti-spam, so players can’t send multiple RTP requests while a location is still being searched
  • fixed Spigot compatibility
  • fixed inconsistent debug message

3.3.5

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.3.5.jar505.8 KBSHA-1 510e2f0bc9351df4db40983c81e60fe895fa39fe获取文件 WildRTP-3.3.5.jar
展开更新日志
  • fixed minor bugs
  • improved code base

3.3.4

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.3.4.jar505.3 KBSHA-1 25b30fbd9c4f291c24089e63143f2c1ab779a245获取文件 WildRTP-3.3.4.jar
展开更新日志
  • added more placeholders
  • %wildrtp_player_cooldown_%
  • %wildrtp_world_cooldown_time_%
  • %wildrtp_world_movetimer_time_%

3.3.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.3.3.jar505 KBSHA-1 abc82817384e133c27be61300f2633b44d06bdc0获取文件 WildRTP-3.3.3.jar
展开更新日志
  • fixed residence hook

3.3.2

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.3.2.jar505 KBSHA-1 f1360fae92d99819a2dd5f59675872c1014a3f98获取文件 WildRTP-3.3.2.jar
展开更新日志
  • residence hook

3.3.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.3.1.jar503.7 KBSHA-1 0354004d329806a418c9d0ff29ed326a203337a4获取文件 WildRTP-3.3.1.jar
展开更新日志
  • fixed comments in config.yml
  • improved update checking

3.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2
WildRTP-3.3.jar503.4 KBSHA-1 3d17ce3c3edec90907a2d1614fd5ed02ef515c72获取文件 WildRTP-3.3.jar
展开更新日志
  • per world cooldowns
  • imrpoved cooldowns
  • improved customrtp and it's tab completion
  • force close inventories on teleport (glitch prevention)
  • strategies: allow changing the strategy used to determine how safe locations are found (AUTO, HIGHEST_BLOCK, BOTTOM_UP, TOP_DOWN)
  • updated some config comments

3.2.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP-3.2.3.jar498.1 KBSHA-1 37faebfb0421f0cec0746bf2929e5bfc3e231895获取文件 WildRTP-3.2.3.jar
展开更新日志
  • delay:seconds as an optional parameter for customrtp command that delays the rtp for seconds
  • towny hook

3.2.2

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP-3.2.2.jar496.6 KBSHA-1 e2076ef1e3ec36b5fcbdd6e0998d834c2ef2dd3d获取文件 WildRTP-3.2.2.jar
展开更新日志
  • new PlaceholderAPI placeholder: %wildrtp_player_cooldown_time%
  • added ProtectionStones Hook

3.2.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP-3.2.1.jar494.7 KBSHA-1 f95505abb0fc63eb83a17fb58c4b146e3619813d获取文件 WildRTP-3.2.1.jar
展开更新日志
  • fixed hex color support to allow both uppercase and lowercase patterns
  • added \n support in language files

3.2

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar494.6 KBSHA-1 15553859186393315a828c3d3a7576ce0d974001获取文件 WildRTP.jar
展开更新日志
  • reworked /wild info command and unknown command response
  • added worldguard support (hook)

3.1.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar492.8 KBSHA-1 19c08f49c669a3f0257f1629ff05ccdef594597d获取文件 WildRTP.jar
展开更新日志
  • improved /wildrtp help
  • added more internal Placeholder to lang files (click here to see them all)
  • new permissions:
  • wildrtp.admin - Grants all WildRTP permissions
  • wildrtp.list.bypass - Bypass the list of disallowed worlds
  • wildrtp.list.bypass.world_name - Bypass a specific world from the list of disallowed worlds

3.1.2

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar491.1 KBSHA-1 8f268bdfc92b19ef4bdd0ff4691c27f0b8836071获取文件 WildRTP.jar
展开更新日志

3.1.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar490.4 KBSHA-1 8ccd697ecfe697f8bfebbd236dacb3e97a9791cf获取文件 WildRTP.jar
展开更新日志
  • fixed tab complete not exposing world names when not having wildrtp.custom

3.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar490.4 KBSHA-1 a8b78ce7cc4218df6956318ddcee5c0e954c265d获取文件 WildRTP.jar
展开更新日志
  • new placeholders using PlaceholderAPI
  • %wildrtp_player_is_cooldown% - true/false if player is on cooldown
  • %wildrtp_player_is_movetimer% - true/false if player is on movetimer

3.0

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar489.2 KBSHA-1 24d90286632bae7339b097fe7bc3721f9f15d415获取文件 WildRTP.jar
展开更新日志
  • promoted to stable

3.0-alpha.5

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar489.1 KBSHA-1 70e82dd1948aeae6956b133752df3929d89c3437获取文件 WildRTP.jar
展开更新日志
  • Simplified per-world config handling (unset values now fall back to global defaults)

3.0-alpha.4

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar489.1 KBSHA-1 8be581a020ee8b8ccbac4c85285368d25d0440df获取文件 WildRTP.jar
展开更新日志
  • migrate your v2.6.1 config automatically
  • customrtp now supports feedback:true and cooldown:true
  • (their are using the values from your config)
  • tp-in-other-world added for global section
  • (only useful if you want all worlds to RTP to a single one)

3.0-alpha.3

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP.jar484.4 KBSHA-1 44040ee3ec7cb8827f830d04191cffd4bfc1ef7b获取文件 WildRTP.jar
展开更新日志
  • major refactor of internal checks for safe rtp
  • added y-min and y-max in configuration
  • updated bstats
  • enhanced customrtp with optional parameters (use tab completion to see them):
    • shape
    • tries
    • y-min
    • y-max

NOTE: I haven’t found any bugs during my testing, but I also haven’t fully tested this release yet. Apparently, alpha.2 is stable. Please report any bugs you encounter in this release (if there are any).

3.0-alpha.2

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
WildRTP.jar480.8 KBSHA-1 ea56608c613f966179fe61f33aa3616223d262e2获取文件 WildRTP.jar
展开更新日志
  • Internal optimization
  • Internal restructure
  • Fixed cooldown counting issue
  • Added sound settings for start, end, and cancel of movetimer

NOTE: This release isn’t fully tested. It is recommended to back up your old configuration files before updating.

UPDATE: No bugs reported after quite some time. Should be mostly stable.

3.0-alpha.1

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
WildRTP.jar479.9 KBSHA-1 50a52369801bf5e04236ba1834990a00688b8e93获取文件 WildRTP.jar
展开更新日志
  • improvement of update checking
  • internal restructure

3.0-alpha.0

测试版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
WildRTP.jar478.9 KBSHA-1 f0dcdab3fe91967a77a1879be0a08dd1f4660da6获取文件 WildRTP.jar
展开更新日志

🚀 WildRTP Version 3.0 (Alpha)

This is a complete rewrite of the plugin, bringing highly requested features and major performance improvements.

⚠️ IMPORTANT: READ BEFORE UPDATING

  1. Alpha Status: This release is mostly stable but not fully battle-tested. Unexpected bugs may occur.
  2. Breaking Change: Old configurations are NOT compatible. You must delete your WildRTP folder and let the plugin generate the new files.

🔗 Useful Links


✨ Key Changes

  • 🌍 Custom World Support: You can now set specific RTP parameters (radius, center, shape) for different worlds.
  • ⚡ Async Performance: Rewritten teleportation logic to prevent server lag (Paper).
  • 🛠️ Full Recode: A modern codebase that is easier to maintain and update.
  • 🛡️ Safer Teleports: Improved logic for avoiding water, lava, and blocked biomes.

See it in action


Found a bug? Please report it on Discord!

2.6.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
WildRTP-all.jar83.8 KBSHA-1 11433595446bd0a58990c692e2cb2064724576c0获取文件 WildRTP-all.jar
展开更新日志

CustomRTP

  • %player% placeholder for the player that executed the command

2.6

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
WildRTP-all.jar83.7 KBSHA-1 57db042b8cae7f8e4b552694944d84a1a5e792fc获取文件 WildRTP-all.jar
展开更新日志
  • Added option for customrtp to include global cooldowns and messages.
  • Updated error messages for customrtp to improve clarity and readability.

CustomRTP

The command has been updated with two new optional arguments, indicated as (optional argument).

New command:

/customrtp <player> <world> <startRadius> <endRadius> <originX> <originZ> (cooldown true/false) (messages true/false)

Old command:

/customrtp <player> <world> <startRadius> <endRadius> <originX> <originZ>

Since these new arguments are optional, nothing changes if you omit them. You can still use the old, simpler format as before.

2.5

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
WildRTP-all.jar82.9 KBSHA-1 d8ab61e75ffe392630f45f84639eac1604bbdb49获取文件 WildRTP-all.jar
展开更新日志
  • fixed whitelist
  • fixed config creation

2.4

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
WildRTP-all.jar82.2 KBSHA-1 f024629020e7dceda697cf382f55229266891b6b获取文件 WildRTP-all.jar
展开更新日志
  • notify updates on join
  • SQUARE fixed

2.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
WildRTP-all.jar81.7 KBSHA-1 824cd9d811355665a088f200596cef78b4a1dc22获取文件 WildRTP-all.jar
展开更新日志
  • Fixed cooldown even if RTP is cancelled due to move timer.

2.2

正式版推荐
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
WildRTP-all.jar81.6 KBSHA-1 d95cf00b63c5ef34a7842e72b735244e883497bf获取文件 WildRTP-all.jar
展开更新日志
  • Whitelist
  • CustomRTP

2.1

正式版推荐
加载器
bukkit · paper · purpur · spigot
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6
WildRTP-all.jar79.2 KBSHA-1 dbbc58fa7d4c96ef0a12f515ee4420c7a30b1f5c获取文件 WildRTP-all.jar
展开更新日志
  • Spigot compatibility

Known Issues

  • /wild reload might not work
  • you may need to restart / reload the server
  • square algorithm combined with player centre stops working after some time

2.0

正式版
加载器
paper · purpur
MC 版本
1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2
WildRTP-all.jar77.5 KBSHA-1 931e74c18164bac616eb4a6f86d8abe16e249dbf获取文件 WildRTP-all.jar
展开更新日志

Better Performance

  • Async Chunk Loading using PaperLib on Paper servers
  • using multiple threads

Also new / rewritten

  • Update Checker
  • Movetimer
  • Cooldown with custom cooldowns using permissions
  • Titles
  • Some API
  • algorithms like CIRCLE and SQUARE
  • AutoRTP when join, first join and death
  • language system

1.3.1

正式版推荐
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
WildRTP-1.3.1-1.19 - 1.19.3.jar34.6 KBSHA-1 f53d03ffc46a8a96d36f463b659f61cdc78a873c获取文件 WildRTP-1.3.1-1.19 - 1.19.3.jar
展开更新日志
  • Added PvP-Timer fully
  • Fixed Bugs
  • Better Messages

1.3.1-legacy

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.13 · 1.13.1 · 1.13.2 · 1.14 · 1.14.1 · 1.14.2 · 1.14.3 · 1.14.4 · 1.15 · 1.15.1 · 1.15.2 · 1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2
WildRTP-1.3.1-1.13 - 1.18.2.jar34.4 KBSHA-1 1ccb6ba2b841786a9a81537699c1eca75a6522c8获取文件 WildRTP-1.3.1-1.13 - 1.18.2.jar
展开更新日志
  • Added PvP-Timer fully
  • Fixed Bugs
  • Better Messages

1.3-legacy

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.13 · 1.13.1 · 1.13.2 · 1.14 · 1.14.1 · 1.14.2 · 1.14.3 · 1.14.4 · 1.15 · 1.15.1 · 1.15.2 · 1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2
WildRTP-1.3-1.13 - 1.18.2.jar32.2 KBSHA-1 df64c620a174c3967c58fac7412729c79b0430b6获取文件 WildRTP-1.3-1.13 - 1.18.2.jar
展开更新日志
  • Added messages.yml
  • Fixed permission bug
  • Added bStats
  • updated config.yml to support upcoming features

Important Note:

  • If you are running below 1.16 you can't use Hex-Colors

1.3

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3
WildRTP-1.3-1.19 - 1.19.3.jar32.4 KBSHA-1 1a826e98429bc4628d1d0137c82cdd72f4cc27f0获取文件 WildRTP-1.3-1.19 - 1.19.3.jar
展开更新日志
  • Added messages.yml
  • Fixed permission bug
  • Added bStats
  • updated config.yml to support upcoming features

1.2-legacy

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.13 · 1.13.1 · 1.13.2 · 1.14 · 1.14.1 · 1.14.2 · 1.14.3 · 1.14.4 · 1.15 · 1.15.1 · 1.15.2 · 1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2
WildRTP-1.2-1.13 - 1.18.2.jar7 KBSHA-1 a6ae461f9b8d552487195b7b13ef21093ce5344c获取文件 WildRTP-1.2-1.13 - 1.18.2.jar
展开更新日志
  • Support for 1.8 - 1.19.3
  • Better Anti-Crash Prevention
  • Config Version
  • MinX and MinZ
  • Fixed cooldown bug (counting wrong)

1.2

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3
WildRTP-1.2-1.19 - 1.19.3.jar7 KBSHA-1 808a7d1318c7213208a8bca9bcd5e0187b701939获取文件 WildRTP-1.2-1.19 - 1.19.3.jar
展开更新日志
  • Support for 1.8 - 1.19.3
  • Better Anti-Crash Prevention
  • Config Version
  • MinX and MinZ
  • Fixed cooldown bug (counting wrong)

1.1

正式版
加载器
bukkit · paper · purpur · spigot
MC 版本
1.19 · 1.19.1 · 1.19.2 · 1.19.3
WildRTP-1.1-1.19 - 1.19.3.jar6.5 KBSHA-1 04d7de2d30411eca7b19cde16b21ff7ba73c2f89获取文件 WildRTP-1.1-1.19 - 1.19.3.jar
展开更新日志

1.19 - 1.19.3