{"id":171406,"date":"2026-06-10T00:23:21","date_gmt":"2026-06-09T21:23:21","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/"},"modified":"2026-06-10T00:23:21","modified_gmt":"2026-06-09T21:23:21","slug":"world-levels","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/","title":{"rendered":"World Levels"},"content":{"rendered":"<p>![](https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/assets\/banner.png)<\/p>\n<p>Work together to level up your multiplayer Minecraft server to unlock features and rewards!<\/p>\n<p>## Features<\/p>\n<p>&#8211; Level up your multiplayer server by gaining XP through normal gameplay<br \/>\n&#8211; **Reward your players** for leveling up the world with:<br \/>\n    &#8211; Items<br \/>\n    &#8211; Increasing the world border<br \/>\n    &#8211; Permissions, groups, and currency (requires [Vault][vault])<br \/>\n&#8211; **Control what players can access** based on World Level:<br \/>\n    &#8211; Building Nether or The End portals<br \/>\n    &#8211; Mining blocks<br \/>\n    &#8211; Placing blocks<br \/>\n    &#8211; Crafting items<br \/>\n&#8211; **Trigger any command** upon world level up<br \/>\n&#8211; Highly [**customizable**][config] with a full config [schema][schema]<br \/>\n    &#8211; Add custom XP sources globally or at a per-level basis<br \/>\n    &#8211; Scale leveling exactly to your liking<br \/>\n    &#8211; Specify groups of levels per-world or groups of worlds<br \/>\n    &#8211; Exclude certain worlds from the plugin<br \/>\n    &#8211; Support for infinite level scaling and rewards<br \/>\n    &#8211; Optionally reward offline or new players for level gains<br \/>\n&#8211; **Customizable messages**, with [MiniMessage][minimessage]<br \/>\n  formatting support<br \/>\n&#8211; Optionally add [Vault]() for **full<br \/>\n  integration with your permission and economy plugin** of<br \/>\n  choice<\/p>\n<p>![Usage GIF](https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/assets\/usage.gif)<\/p>\n<p>*GIF showing leveling up, Nether access, and world border increases*<\/p>\n<p>### Customizable Server XP Bar<\/p>\n<p>![Server XP bar](https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/assets\/bossbar.png)<\/p>\n<p>### Level Up Alerts<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/assets\/levelup.png\" height=\"200px\" alt=\"Level up alerts\" \/><\/p>\n<p>## Configuration<\/p>\n<p>**This plugin likely requires configuration before it can be useful to you.**<br \/>\nThe default configuration file will be created for you, but it can also be found<br \/>\n[here][config]. If your text editor<br \/>\nsupports JSON\/YAML schemas,<br \/>\nyou will also get configuration autocomplete suggestions and linting.<\/p>\n<p>You can find a more detailed example<br \/>\nconfig here.<\/p>\n<p>### Config Examples<\/p>\n<p>*These are partial configurations for the `levels` section specifically.*<\/p>\n<details>\n<summary>How level ranges and XP requirements work<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    # level 1 should always require 0 XP<br \/>\n    xp: 0.0<br \/>\n  &#8216;2&#8217;:<br \/>\n    # level 2 requires 100 XP to get to<br \/>\n    xp: 100.0<br \/>\n  &#8216;3&#8217;:<br \/>\n    xpStep:<br \/>\n      # level 3 adds 50 to the previous requirement, making it 150 XP to get to<br \/>\n      add: 50.0<br \/>\n  &#8216;4&#8217;:<br \/>\n    xpStep:<br \/>\n      # level 4 multiplies the previous requirement by 2, making it 300 XP to get to<br \/>\n      mult: 2.0<br \/>\n  &#8216;5-10&#8217;:<br \/>\n    xpStep:<br \/>\n      # levels 5-10 adds 50 to the previous requirement, making the following for each:<br \/>\n      # level 5 requires 350<br \/>\n      # level 6 requires 400<br \/>\n      # level 7 requires 450<br \/>\n      # level 8 requires 500<br \/>\n      # level 9 requires 550<br \/>\n      # level 10 requires 600<br \/>\n      add: 50.0<br \/>\n  &#8217;11-&#8216;:<br \/>\n    # Level 11 and beyond (scales infinitely) requires 1000 XP to get to<br \/>\n    xp: 1000.0<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Lock the Nether and The End at the start, and unlock them when the<br \/>\nserver reaches level 2 and 3, respectively<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    xp: 0.0<br \/>\n    # Prevent Nether and End portals from being used initially<br \/>\n    allowEnd: false<br \/>\n    allowNether: false<br \/>\n  &#8216;2&#8217;:<br \/>\n    xp: 2000.0<br \/>\n    # Unlock Nether portals at level 2<br \/>\n    allowNether: true<br \/>\n    titles:<br \/>\n      &#8211; title: <red>Nether<\/red> <green>unlocked!<\/green><br \/>\n  &#8216;3&#8217;:<br \/>\n    xp: 4000.0<br \/>\n    # Unlock End portals at level 3<br \/>\n    allowEnd: true<br \/>\n    titles:<br \/>\n      &#8211; title: <light_purple>The End<\/light_purple> <green>unlocked!<\/green><br \/>\n  &#8216;4-&#8216;:<br \/>\n    xp: 8000.0<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Award players with different items, and unlock crafting and mining<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    xp: 0.0<br \/>\n    items:<br \/>\n      IRON_INGOT: 1<br \/>\n      levels:<br \/>\n    crafting:<br \/>\n      DIAMOND_HELMET: false<br \/>\n      DIAMOND_CHESTPLATE: false<br \/>\n      DIAMOND_LEGGINGS: false<br \/>\n      DIAMOND_BOOTS: false<br \/>\n    mining:<br \/>\n      DIAMOND_ORE: false<br \/>\n    placing:<br \/>\n      DIAMOND_ORE: false<br \/>\n  &#8216;2&#8217;:<br \/>\n    xp: 2000.0<br \/>\n    items:<br \/>\n      COPPER_INGOT: 1<br \/>\n    # crafting: is omitted here because by default all crafting is allowed<br \/>\n    # so, at level 2, players can craft diamond armor<br \/>\n    # mining: and placing: are omitted for the same reason<br \/>\n  &#8216;3-4&#8217;:<br \/>\n    xp: 4000.0<br \/>\n    items:<br \/>\n      # Since &#8216;3-4&#8217; is a range, this awards a diamond for both levels 3 and 4<br \/>\n      DIAMOND: 1<br \/>\n  &#8216;5-&#8216;:<br \/>\n    xp: 8000.0<br \/>\n    items:<br \/>\n      # Since &#8216;5-&#8216; scales infinitely, this awards a netherite ingot every single<br \/>\n      # level from 5 onwards<br \/>\n      NETHERITE_INGOT: 1<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>How you can manipulate the world border for each level.<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    xp: 0.0<br \/>\n    # Sets the initial world border to have a radius of 128, centered at 0,0<br \/>\n    worldBorder:<br \/>\n      radius: 128<br \/>\n      center:<br \/>\n        x: 0<br \/>\n        z: 0<br \/>\n  &#8216;2&#8217;:<br \/>\n    xp: 2000.0<br \/>\n    # Sets the radius of the world border for achieving level 2 at 256<br \/>\n    worldBorder:<br \/>\n      radius: 256<br \/>\n  &#8216;3&#8217;:<br \/>\n    xp: 4000.0<br \/>\n    # Adds the radius of the world border for achieving level 3 to the previous<br \/>\n    # radius, making it 512<br \/>\n    worldBorder:<br \/>\n      radiusStep:<br \/>\n        add: 256<br \/>\n  &#8216;4-&#8216;:<br \/>\n    xp: 8000.0<br \/>\n    # Multiplies the radius of the world border for achieving level 4 and onward<br \/>\n    # to the previous radius, making it 768, 1152, 1728, and so on<br \/>\n    worldBorder:<br \/>\n      radiusStep:<br \/>\n        mult: 1.5<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Award permissions, groups, and currency for certain levels (requires Vault)<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    xp: 0.0<br \/>\n  &#8216;2&#8217;:<br \/>\n    xp: 2000.0<br \/>\n    # Assigns &#8216;mypermission.one&#8217; to all players<br \/>\n    permissions:<br \/>\n      &#8211; &#8220;mypermission.one&#8221;<br \/>\n    # Gives all players 50.0 currency<br \/>\n    currency:<br \/>\n      add: 50.0<br \/>\n  &#8216;3&#8217;:<br \/>\n    xp: 4000.0<br \/>\n    # Assigns &#8216;mypermission.two&#8217; to all players<br \/>\n    permissions:<br \/>\n      &#8211; &#8220;mypermission.two&#8221;<br \/>\n    # Multiply all player&#8217;s current currency by 2<br \/>\n    currency:<br \/>\n      mult: 2.0<br \/>\n  &#8216;4&#8217;:<br \/>\n    xp: 8000.0<br \/>\n    # Adds all players to the &#8216;mygroup&#8217; group<br \/>\n    groups:<br \/>\n      &#8211; &#8220;mygroup&#8221;<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Run commands on level up<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    xp: 0.0<br \/>\n  &#8216;2&#8217;:<br \/>\n    xp: 2000.0<br \/>\n    # Runs the &#8216;time set day&#8217; command via the server console<br \/>\n    commands:<br \/>\n      &#8211; &#8220;time set day&#8221;<br \/>\n  &#8216;3&#8217;:<br \/>\n    xp: 4000.0<br \/>\n    # Runs the &#8216;say You leveled up!&#8217; command via the server console<br \/>\n    commands:<br \/>\n      &#8211; &#8220;say You leveled up!&#8221;<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Require the server&#8217;s players to collectively mine a certain amount of<br \/>\ndifferent tiers of ore to get to the next level.<\/summary>\n<p>&#8220;`yaml<br \/>\nlevels:<br \/>\n  &#8216;1&#8217;:<br \/>\n    xp: 0.0<br \/>\n    xpWeights:<br \/>\n      # This makes it so no vanilla XP sources contribute world level XP<br \/>\n      DEFAULT: 0.0<br \/>\n    customXPSources:<br \/>\n      mineIgnoresSilkTouch: true # set this to prevent XP gains for mining with silk touch<br \/>\n      playerMine:<br \/>\n        COAL_ORE: 1 # Awards 1 XP for each coal ore mined<br \/>\n  &#8216;2&#8217;:<br \/>\n    xp: 100.0 # requires 100 coal ore mined (defined in level 1) to get this level<br \/>\n    xpWeights:<br \/>\n      DEFAULT: 0.0<br \/>\n    customXPSources:<br \/>\n      mineIgnoresSilkTouch: true<br \/>\n      playerMine:<br \/>\n        COPPER_ORE: 1<br \/>\n  &#8216;3&#8217;:<br \/>\n    xp: 200.0 # requires 200 copper ore mined (defined in level 2) to get this level<br \/>\n    xpWeights:<br \/>\n      DEFAULT: 0.0<br \/>\n    customXPSources:<br \/>\n      mineIgnoresSilkTouch: true<br \/>\n      playerMine:<br \/>\n        IRON_ORE: 1<br \/>\n  &#8216;4&#8217;:<br \/>\n    xp: 300.0 # requires 300 iron ore mined (defined in level 3) to get this level<br \/>\n    xpWeights:<br \/>\n      DEFAULT: 0.0<br \/>\n    customXPSources:<br \/>\n      mineIgnoresSilkTouch: true<br \/>\n      playerMine:<br \/>\n        DIAMOND_ORE: 1<br \/>\n  &#8216;5&#8217;:<br \/>\n    xp: 400.0 # requires 400 diamond ore mined (defined in level 4) to get this level<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Specify levels based on world and share rewards<\/summary>\n<p>&#8220;`yaml<br \/>\ngroups:<br \/>\n  WorldGroup:<br \/>\n    name: The Overworld<br \/>\n    # This group only applies to the world named &#8220;world&#8221;<br \/>\n    worlds:<br \/>\n      &#8211; world<br \/>\n    # When this group levels up, it will share items and permission rewards to players in<br \/>\n    # the groups listed<br \/>\n    rewardOtherGroups:<br \/>\n      &#8211; NetherGroup<br \/>\n      &#8211; EndGroup<br \/>\n    # Rewards players past rewards when they join the group for the first time<br \/>\n    rewardNewPlayers: true<br \/>\n    # Rewards players past rewards when they join the group after being offline<br \/>\n    rewardOffline: true<br \/>\n    levels:<br \/>\n      &#8220;1-&#8220;:<br \/>\n        xp: 0.0<br \/>\n        xpStep:<br \/>\n          add: 100.0<br \/>\n        # Every level, this will reward every player in any of the groups a<br \/>\n        # gold ingot, due to rewardOtherGroups<br \/>\n        items:<br \/>\n          GOLD_INGOT: 1<br \/>\n  NetherGroup:<br \/>\n    name: The Nether<br \/>\n    worlds:<br \/>\n      &#8211; world_nether<br \/>\n    rewardOtherGroups:<br \/>\n      &#8211; WorldGroup<br \/>\n      &#8211; EndGroup<br \/>\n    levels:<br \/>\n      &#8220;1-&#8220;:<br \/>\n        xp: 0.0<br \/>\n        xpStep:<br \/>\n          add: 100.0<br \/>\n  EndGroup:<br \/>\n    name: The End<br \/>\n    worlds:<br \/>\n      &#8211; world_the_end<br \/>\n    rewardOtherGroups:<br \/>\n      &#8211; NetherGroup<br \/>\n      &#8211; WorldGroup<br \/>\n    levels:<br \/>\n      &#8220;1-&#8220;:<br \/>\n        xp: 0.0<br \/>\n        xpStep:<br \/>\n          add: 100.0<br \/>\n&#8220;`<\/p>\n<\/details>\n<p>## Messages<\/p>\n<p>The default messages file will be created for you, but it can also be found<br \/>\n[here][messages]. If your text editor<br \/>\nsupports JSON\/YAML schemas,<br \/>\nyou will also get configuration autocomplete suggestions and linting.<\/p>\n<p>Messages support [MiniMessage][minimessage], and have the following custom replacements<br \/>\navailable:<\/p>\n<p>| Replacement                         | Description                                                     |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br \/>\n| `<level>`                           | Current world level                                             |<br \/>\n| `<relative_xp>`                     | Amount of current XP relative to the current level requirements |<br \/>\n| `<level_xp>`                        | XP requirement to reach the next level                          |<br \/>\n| `<total_xp>`                        | Absolute total current XP                                       |<br \/>\n| `<group_name>`                      | Name of the level group                                         |<br \/>\n| `<version>`                         | Plugin version                                                  |<br \/>\n| `<modrinth>`                        | Plugin Modrinth URL                                             |<br \/>\n| `<click-modrinth><\/click-modrinth>` | Makes inner text clickable for the Modrinth URL                 |<\/p>\n<p>## Permissions<\/p>\n<p>| Permission                  | Description                                                                        |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `worldlevels.earn.exempt`   | Prohibit the player from gaining World Levels XP (by default, all players earn XP) |<br \/>\n| `worldlevels.help`          | Access to the `worldlevels help` command                                           |<br \/>\n| `worldlevels.reload`        | Access to the `worldlevels reload` command                                         |<br \/>\n| `worldlevels.reset.all`     | Access to the `worldlevels reset all` command                                      |<br \/>\n| `worldlevels.reset.rewards` | Access to the `worldlevels reset rewards` command                                  |<br \/>\n| `worldlevels.update`        | Access to the `worldlevels update` command                                         |<br \/>\n| `worldlevels.version`       | Access to the `worldlevels version` command                                        |<br \/>\n| `worldlevels.xp.add`        | Access to the `worldlevels xp add` command                                         |<br \/>\n| `worldlevels.xp.get`        | Access to the `worldlevels xp` command                                             |<br \/>\n| `worldlevels.xp.set`        | Access to the `worldlevels xp set` command                                         |<\/p>\n<p>## Commands<\/p>\n<p>All the following are prefixed with `worldlevels`. For example, `worldlevels help`.<\/p>\n<p>*Arguments in `<>` are required, arguments in `[]` are optional.*<\/p>\n<p>| Command                  | Description                                                                                           |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `help`                   | Shows a list of commands                                                                              |<br \/>\n| `reload`                 | Reload the plugin configuration and save from file                                                    |<br \/>\n| `xp`                     | Gets the current XP total and level                                                                   |<br \/>\n| `xp add <xp>`            | Add the given amount of XP to the total, supports negatives                                           |<br \/>\n| `xp set <xp>`            | Sets the total XP to the given amount                                                                 |<br \/>\n| `update`                 | Checks for plugin updates                                                                             |<br \/>\n| `version`                | Prints the plugin version                                                                             |<br \/>\n| `reset all`              | Resets total XP back to 0 and allows all players to regain rewards                                    |<br \/>\n| `reset rewards [player]` | Resets rewards for the given player (or all players), allowing them to regain rewards for past levels |<\/p>\n<p><\/p>\n<p>## Metrics<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/bstats.org\/signatures\/bukkit\/World%20Levels.svg\" alt=\"Usage statistics\" height=\"200px\"\/><\/p>\n<p>This plugin collects anonymized usage statistics via [bStats][bstats]. bStats is<br \/>\nused by many plugins and provides useful statistics for development, but it can<br \/>\nbe disabled in the bStats `config.yml` for your server.<\/p>\n<p>In addition to the default stats collected, World Levels also counts a few<br \/>\nstats to better gauge how the plugin is used. These are:<\/p>\n<p>&#8211; The number of level groups your server uses<br \/>\n&#8211; The average number of worlds in each level group<br \/>\n&#8211; The average number of levels in each level group<\/p>\n<p>[config]: https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/blob\/main\/src\/main\/resources\/config.yml<\/p>\n<p>[messages]: https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/blob\/main\/src\/main\/resources\/messages.yml<\/p>\n<p>[minimessage]: https:\/\/docs.papermc.io\/adventure\/minimessage\/<\/p>\n<p>[schema]: https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/src\/main\/resources\/config-schema.json<\/p>\n<p>[vault]: https:\/\/github.com\/milkbowl\/Vault<\/p>\n<p>[bstats]: https:\/\/bstats.org\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Work together to level up your Minecraft worlds to unlock features and rewards!<\/p>\n","protected":false},"featured_media":171407,"template":"","meta":{"_minecraft_slug":"world-levels","_minecraft_project_id":"URTtNjuQ","_minecraft_author":"ASTRELION","_minecraft_license":"AGPL-3.0-only","_minecraft_downloads":268,"_minecraft_follows":2,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"world-levels.zip","_minecraft_size_bytes":26799939,"_minecraft_version_count":16,"_minecraft_updated_at":"2026-05-16T12:08:58.341363Z","_minecraft_date_created":"2025-10-16T02:35:56.647481Z","_minecraft_date_modified":"2026-02-13T03:19:18.653253Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/world-levels","_minecraft_icon_attachment_id":171407,"_minecraft_imported_at":"2026-06-09T21:23:21+00:00","_minecraft_import_hash":"f186020c56f998ea539a9ccfbb963b5f","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[844,125,89,126,866,127,128,867,92],"mod_loader":[131,132,133],"minecraft_version":[36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-171406","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-economy","mod_category-folia","mod_category-game-mechanics","mod_category-management","mod_category-minigame","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-utility","mod_loader-folia","mod_loader-paper","mod_loader-purpur","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-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>World Levels - 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\/world-levels\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"World Levels - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Work together to level up your Minecraft worlds to unlock features and rewards!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta property=\"og:image\" content=\"https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/assets\/levelup.png\" \/>\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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/\",\"name\":\"World Levels - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/world-levels-icon-054d2bcbf5e1cb182469c7afe3b6410b2fa23bfa.png\",\"datePublished\":\"2026-06-09T21:23:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/world-levels-icon-054d2bcbf5e1cb182469c7afe3b6410b2fa23bfa.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/world-levels-icon-054d2bcbf5e1cb182469c7afe3b6410b2fa23bfa.png\",\"width\":640,\"height\":640},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-levels\\\/#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\":\"World Levels\"}]},{\"@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":"World Levels - 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\/world-levels\/","og_locale":"en_US","og_type":"article","og_title":"World Levels - Minecraft","og_description":"Work together to level up your Minecraft worlds to unlock features and rewards!","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/","og_site_name":"Minecraft","og_image":[{"url":"https:\/\/gitlab.com\/ASTRELION\/worldlevels\/-\/raw\/main\/assets\/levelup.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/","name":"World Levels - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/world-levels-icon-054d2bcbf5e1cb182469c7afe3b6410b2fa23bfa.png","datePublished":"2026-06-09T21:23:21+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/world-levels-icon-054d2bcbf5e1cb182469c7afe3b6410b2fa23bfa.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/world-levels-icon-054d2bcbf5e1cb182469c7afe3b6410b2fa23bfa.png","width":640,"height":640},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-levels\/#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":"World Levels"}]},{"@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\/171406","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\/171407"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=171406"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=171406"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=171406"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=171406"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}