{"id":30532,"date":"2026-06-01T16:03:22","date_gmt":"2026-06-01T13:03:22","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/"},"modified":"2026-06-01T16:03:22","modified_gmt":"2026-06-01T13:03:22","slug":"beyond-border-unlocked","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/","title":{"rendered":"Beyond Border Unlocked"},"content":{"rendered":"<div align=\"center\">\n<p>  ![Discord](https:\/\/discord.gg\/2UTkYj26B4)<br \/>\n  ![JitPack](https:\/\/jitpack.io\/#max1mde\/BeyondBorderUnlocked)<br \/>\n  ![Minecraft version](https:\/\/github.com\/max1mde\/BeyondBorderUnlocked)<\/p>\n<p>  <img decoding=\"async\" src=\"https:\/\/github.com\/user-attachments\/assets\/012f91e1-d872-4c0c-a9f8-829f5004d262\"><\/p>\n<p>Break or place blocks &#038; damage entities behind the vanilla worldborder without any client side-mods!<\/p>\n<\/div>\n<p>## Features<br \/>\n&#8211; Bypass world border restrictions for:<br \/>\n  &#8211; Placing blocks (only possible by left clicking with a block)<br \/>\n  &#8211; Breaking blocks<br \/>\n  &#8211; Combat and entity interactions<br \/>\n  &#8211; Player movement through border<br \/>\n&#8211; Visual block outline system for blocks beyond border (using display entities)<br \/>\n&#8211; Block breaking animations and effects<br \/>\n&#8211; Realistic combat mechanics with critical hits &#038; damage calculation based on armor and weapons<\/p>\n<p>## Installation<br \/>\n1. Place the plugin JAR and packetevents.jar in your server&#8217;s `plugins\/` folder<br \/>\n2. Restart\/reload your server<br \/>\n3. Configure `plugins\/BeyondBorderUnlocked\/config.yml` to your needs<\/p>\n<p>> [!WARNING]<br \/>\n> These actions beyond the world border are not intended by game design.<br \/>\n> Unexpected bugs may occur, and the experience will differ from normal gameplay.<br \/>\n> Test thoroughly before production use.<\/p>\n<p>## Configuration (`config.yml`)<br \/>\n&#8220;`yaml<br \/>\nbuilding: false        # Allow block placement beyond border (left click)<br \/>\nbreaking: true        # # Allow block breaking beyond border (left click)<br \/>\nwalkthrough: true     # Allow walking through border<br \/>\nhitting: true         # Allow hitting entities beyond border<\/p>\n<p>damage:<br \/>\n  enabled: true      # Enable custom border damage settings below (if false, the plugin does not modify the values below in your worlds)<br \/>\n  buffer: 5.0        # Distance before damage starts<br \/>\n  amount: 0.2        # Damage per second<\/p>\n<p>blockOutline:<br \/>\n  enabled: true      # Show block outlines beyond border<br \/>\n  size: 0.009        # Size of outline segments<br \/>\n  block: black_stained_glass  # Block type for outline<br \/>\n&#8220;`<\/p>\n<p>## Commands<br \/>\n&#8211; `\/beyondborder reload` &#8211; Reload configuration<br \/>\n&#8211; `\/beyondborder set <setting> <value>` &#8211; Change settings<\/p>\n<p>Available settings:<br \/>\n&#8211; `building`, `breaking`, `walkthrough`, `blockOutline.enabled`, `hitting` (true\/false)<br \/>\n&#8211; `damage.enabled`, `damage.buffer`, `blockOutline.size`, `damage.amount` (numbers)<br \/>\n&#8211; `blockOutline.block` (text)<\/p>\n<p>**Permissions**:<br \/>\n`beyondborder.commands` &#8211; Access to commands (default: op)<\/p>\n<p>## API Documentation<\/p>\n<p>To use the api add `depends: BeyondBorderUnlocked` to your plugin.yml<br \/>\nand this plugin as a compile-only dependency:<\/p>\n<p>&#8220;`groovy<br \/>\nrepositories {<br \/>\n\tmaven { url &#8220;https:\/\/jitpack.io&#8221; }<br \/>\n}<br \/>\ndependencies {<br \/>\n\tcompileOnly(&#8220;com.github.max1mde:BeyondBorderUnlocked:1.0.0&#8221;)<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Accessing the API<br \/>\n&#8220;`java<br \/>\nBeyondBorderUnlocked plugin = BeyondBorderUnlocked.getInstance();<br \/>\nConfig config = plugin.getPluginConfig();<br \/>\n&#8220;`<\/p>\n<p>### Events<br \/>\n| Event Class | Async | Cancellable |<br \/>\n|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `BlockBreakBorderEvent` | No | Yes |<br \/>\n| `BlockPlaceBorderEvent` | No | Yes |<br \/>\n| `AsyncEntityDamageBorderEvent` | Yes | Yes |<br \/>\n| `AsyncEntityInteractBorderEvent` | Yes | Yes |<\/p>\n<p>**Example Event Usage**:<br \/>\n&#8220;`java<br \/>\n@EventHandler<br \/>\npublic void onEntityDamage(AsyncEntityDamageBorderEvent event) {<br \/>\n    if (event.getDamager() instanceof Player) {<br \/>\n        event.setDamage(event.getDamage() * 1.5); \/\/ 50% more damage for example<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## Known Issues<\/p>\n<p>&#8211; Blocks can only be placed using the left mouse button<br \/>\n&#8211; Walking through the world border is buggy due to required player teleportation<br \/>\n&#8211; Blocks sometimes continue breaking without holding the mouse button, or breaking progress resets even when holding the left mouse button<br \/>\n&#8211; The block selection outline box has incorrect sizing for certain blocks<br \/>\n&#8211; Mechanics such as block breaking, damage calculations, and other interactions are not entirely accurate<\/p>\n<p>## How does it work?<\/p>\n<p>By default, Minecraft clients don&#8217;t send certain packets when behind the world border:<br \/>\n&#8211; No block break\/place packets<br \/>\n&#8211; No block break progress packets<br \/>\n&#8211; No block selection outline is displayed by the client<\/p>\n<p>This plugin works by:<br \/>\n1. Listening for arm swing animation packets (which are always sent)<br \/>\n2. Calculating which block the player is looking at<br \/>\n3. Simulating the appropriate action server-side:<br \/>\n   &#8211; Block breaking with animations and effects<br \/>\n   &#8211; Block placement with sound effects<\/p>\n<p>The block selection outline is created using:<br \/>\n&#8211; 12 item display entities forming a 3D outline<br \/>\n&#8211; Custom packets to spawn and position these entities<br \/>\n&#8211; Only visible to the player looking at the block<\/p>\n<p>Because of that, the `building` feature does not work when right-clicking, as the client does not send any packets when right-clicking beyond the world border. The only packet sent is the arm animation packet when the player left-clicks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bypass the vanilla worldborder building &#038; combat limitations.<\/p>\n","protected":false},"featured_media":30533,"template":"","meta":{"_minecraft_slug":"beyond-border-unlocked","_minecraft_project_id":"qGmA7c36","_minecraft_author":"maximjsx","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":284,"_minecraft_follows":4,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"beyond-border-unlocked.zip","_minecraft_size_bytes":338744,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T11:54:09.428528Z","_minecraft_date_created":"2025-02-14T07:52:48.577489Z","_minecraft_date_modified":"2025-02-09T12:18:18.652907Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/beyond-border-unlocked","_minecraft_icon_attachment_id":30533,"_minecraft_imported_at":"2026-06-01T13:03:23+00:00","_minecraft_import_hash":"f2c5c3ab1d84fca07c57a84961af3ac6","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,89,127,128,129,123],"mod_loader":[130,132,133,134],"minecraft_version":[53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,73,74,38],"class_list":["post-30532","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-game-mechanics","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-technology","mod_loader-bukkit","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Beyond Border Unlocked - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Beyond Border Unlocked - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Bypass the vanilla worldborder building &amp; combat limitations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta property=\"og:image\" content=\"https:\/\/github.com\/user-attachments\/assets\/012f91e1-d872-4c0c-a9f8-829f5004d262\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/\",\"name\":\"Beyond Border Unlocked - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/beyond-border-unlocked-icon-c8ed2273bf549779408c2ae03235194c8ddcb057_96.webp\",\"datePublished\":\"2026-06-01T13:03:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/beyond-border-unlocked-icon-c8ed2273bf549779408c2ae03235194c8ddcb057_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/beyond-border-unlocked-icon-c8ed2273bf549779408c2ae03235194c8ddcb057_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/beyond-border-unlocked\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Beyond Border Unlocked\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Beyond Border Unlocked - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/","og_locale":"en_US","og_type":"article","og_title":"Beyond Border Unlocked - Minecraft","og_description":"Bypass the vanilla worldborder building & combat limitations.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/","og_site_name":"Minecraft","og_image":[{"url":"https:\/\/github.com\/user-attachments\/assets\/012f91e1-d872-4c0c-a9f8-829f5004d262","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/","name":"Beyond Border Unlocked - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/beyond-border-unlocked-icon-c8ed2273bf549779408c2ae03235194c8ddcb057_96.webp","datePublished":"2026-06-01T13:03:22+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/beyond-border-unlocked-icon-c8ed2273bf549779408c2ae03235194c8ddcb057_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/beyond-border-unlocked-icon-c8ed2273bf549779408c2ae03235194c8ddcb057_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/beyond-border-unlocked\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Beyond Border Unlocked"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/30532","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/30533"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=30532"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=30532"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=30532"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=30532"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}