✨ Main Features
- 🧠 Smart Safe Teleport: Automatically finds safe locations avoiding dangerous blocks.
- 🎛 Custom GUI: Completely editable
menu.yml. - ⏳ Cooldowns & Delay: Teleports can be cancelled if the player moves during the delay.
- ✨ Particles: Add
FIREWORKS_SPARKorCLOUDeffects.
🔒 Advanced Safety System
Prevents teleportation into LAVA, MAGMA_BLOCK, CACTUS, FIRE, VOID, and SEAGRASS.
⚙️ API para Desarrolladores
XRtpAPI api = XRtpAPI.getInstance();
// Random teleport manually
api.randomTeleport(player, player.getWorld(), 100, 5000);
// Check Cooldown
long cooldown = api.getRemainingCooldown(player);
// Events
@EventHandler
public void onPreRtp(PreRtpEvent e) {
e.setMinRadius(500);
e.setMaxRadius(10000);
}