WorldResetter

โญ โ€” (2 endorsements) ๐Ÿ“ฅ 45 downloads ๐Ÿ“Œ vKch1DDNf ๐Ÿ“… 7/6/2026
๐ŸŸก Updated this year

By MrGodzilla ยท adventure

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 7/9/2026 ๐Ÿ“… Created: 7/6/2026

๐Ÿ” Analysis

  • ๐Ÿ† #234 of 331 adventure mods in this game by downloads

๐Ÿ“‹ About This Mod

# ๐ŸŒ WorldResetter A minimal **Paper** plugin that deletes the overworld folder on every server startup and creates a fresh world with configurable seed, type, gamerules, time, weather, and Paper-specific performance tuning. --- ## โš™๏ธ How It Works On every startup (before worlds load), WorldResetter deletes the `world` folder, then programmatically creates a new overworld using `Bukkit.createWorld()` with your configured seed and world type. It also applies your gamerules, time, weather, and per-world performance settings, and writes the seed and spawn protection radius into `server.properties`. > โ„น๏ธ `world_nether` and `world_the_end` are **not** touched. --- ## ๐Ÿ’ก Why It Exists Built for lava rising minigame servers where every match should feel different. Instead of playing the same map over and over, the world resets on every server restart โ€” giving players a brand new terrain each time. --- ## ๐Ÿ“œ Commands | Command | Description | |---|---| | ๐Ÿ”€ `/wr toggle` | Toggles world reset on/off | | โœ… `/wr toggle on` | Enables world reset on next startup | | โŒ `/wr toggle off` | Disables world reset on next startup | | โ„น๏ธ `/wr settings info` | Shows current settings | | ๐ŸŒฑ `/wr settings seed <seed\|random>` | Sets the world seed (or random) | | ๐Ÿ—บ๏ธ `/wr settings worldtype <type>` | โš ๏ธ Currently under maintenance โ€” disabled | | ๐ŸŽฒ `/wr settings gamerule <rule> <value>` | Sets a gamerule | | ๐ŸŽฒ `/wr settings gamerule list` | Lists configured gamerules | | ๐ŸŽฒ `/wr settings gamerule reset` | Clears all gamerules | | โ˜€๏ธ `/wr settings time <day\|night\|0-24000>` | Sets world time | | โ›ˆ๏ธ `/wr settings weather <clear\|rain\|thunder>` | Sets weather | | ๐Ÿ›ก๏ธ `/wr settings spawnprotection <radius>` | Sets spawn protection radius | | ๐Ÿ–ฅ๏ธ `/wr settings viewdistance <2-32\|default>` | Sets this world's view distance (Paper-only) | | ๐ŸŒ `/wr settings simulationdistance <2-32\|default>` | Sets this world's simulation distance (Paper-only) | | ๐Ÿ›๏ธ `/wr settings structures <true\|false>` | Toggles structure generation (villages, strongholds, etc.) | | โ™ป๏ธ `/wr settings reset` | Resets all settings to defaults | | ๐Ÿ“ฆ `/wr version` | Shows current version vs latest available | | ๐Ÿ“ฅ `/wr version update` | Downloads and applies the latest version from Modrinth | **Alias:** `/worldresetter` can be used in place of `/wr` **Permission:** `worldresetter.admin` (default: op) --- ## ๐Ÿ› ๏ธ Configuration (`config.yml`) ```yaml enabled: false settings: seed: '' world-type: 'normal' time: -1 weather: '' spawn-protection: -1 view-distance: -1 simulation-distance: -1 generate-structures: true gamerules: {} ``` --- ## ๐Ÿ“‹ Requirements - โ˜• Java 21+ - ๐Ÿ“ฆ Paper or a Paper-based fork (e.g. Purpur) โ€” **1.21.11+ recommended** > โš ๏ธ Not compatible with vanilla Spigot or CraftBukkit โ€” see (#-platform-support) below. --- ## ๐Ÿงฉ Platform Support WorldResetter uses the **Paper Plugin** system (not Bukkit's `plugin.yml`) and only works on **Paper** and Paper-based servers like **Purpur** โ€” it does not work on plain Spigot or CraftBukkit. This isn't a bug, it's intentional: some of the plugin's features (like per-world view distance and the modern command API) simply don't exist outside of Paper. If your server runs on Purpur, you're fine โ€” Purpur is built on top of Paper, so everything works the same. --- ## ๐Ÿš€ Performance Optimizations A few things this plugin does to keep your server running smoothly: - **โšก Faster restarts** โ€” Deleting the old world used to happen one file at a time, which could take a while on large maps. Now it deletes everything at once using multiple CPU cores, so your server starts back up much faster โ€” especially noticeable on SSD/NVMe drives. - **๐Ÿชถ Lighter load per world** โ€” You can lower the view distance and simulation distance just for this world, without affecting your other worlds. Small minigame maps don't need long render distances, so turning this down reduces lag with no downside. - **โญ๏ธ Skip unnecessary generation** โ€” If players never explore for loot, you can turn off village/stronghold generation entirely โ€” this makes new worlds generate faster. --- ## ๐Ÿ”„ Auto-Update WorldResetter checks the Modrinth API every 6 hours for new releases. OPs are notified on join when an update is available. Use `/wr version` to check manually and `/wr version update` to download and apply the update automatically. --- ## ๐Ÿ“„ License MIT --- ## โš™๏ธ Source Code (https://github.com/MrGodzilla38/WorldResetter)

# ๐ŸŒ WorldResetter

A minimal Paper plugin that deletes the overworld folder on every server startup and creates a fresh world with configurable seed, type, gamerules, time, weather, and Paper-specific performance tuning.

## โš™๏ธ How It Works

On every startup (before worlds load), WorldResetter deletes the `world` folder, then programmatically creates a new overworld using `Bukkit.createWorld()` with your configured seed and world type.

It also applies your gamerules, time, weather, and per-world performance settings, and writes the seed and spawn protection radius into `server.properties`.

> โ„น๏ธ `world_nether` and `world_the_end` are not touched.

## ๐Ÿ’ก Why It Exists

Built for lava rising minigame servers where every match should feel different. Instead of playing the same map over and over, the world resets on every server restart โ€” giving players a brand new terrain each time.

## ๐Ÿ“œ Commands

| Command | Description | |---|---| | ๐Ÿ”€ `/wr toggle` | Toggles world reset on/off | | โœ… `/wr toggle on` | Enables world reset on next startup | | โŒ `/wr toggle off` | Disables world reset on next startup | | โ„น๏ธ `/wr settings info` | Shows current settings | | ๐ŸŒฑ `/wr settings seed ` | Sets the world seed (or random) | | ๐Ÿ—บ๏ธ `/wr settings worldtype ` | โš ๏ธ Currently under maintenance โ€” disabled | | ๐ŸŽฒ `/wr settings gamerule ` | Sets a gamerule | | ๐ŸŽฒ `/wr settings gamerule list` | Lists configured gamerules | | ๐ŸŽฒ `/wr settings gamerule reset` | Clears all gamerules | | โ˜€๏ธ `/wr settings time ` | Sets world time | | โ›ˆ๏ธ `/wr settings weather ` | Sets weather | | ๐Ÿ›ก๏ธ `/wr settings spawnprotection ` | Sets spawn protection radius | | ๐Ÿ–ฅ๏ธ `/wr settings viewdistance <2-32\|default>` | Sets this world's view distance (Paper-only) | | ๐ŸŒ `/wr settings simulationdistance <2-32\|default>` | Sets this world's simulation distance (Paper-only) | | ๐Ÿ›๏ธ `/wr settings structures ` | Toggles structure generation (villages, strongholds, etc.) | | โ™ป๏ธ `/wr settings reset` | Resets all settings to defaults | | ๐Ÿ“ฆ `/wr version` | Shows current version vs latest available | | ๐Ÿ“ฅ `/wr version update` | Downloads and applies the latest version from Modrinth |

Alias: `/worldresetter` can be used in place of `/wr`

Permission: `worldresetter.admin` (default: op)

## ๐Ÿ› ๏ธ Configuration (`config.yml`)

```yaml enabled: false settings: seed: '' world-type: 'normal' time: -1 weather: '' spawn-protection: -1 view-distance: -1 simulation-distance: -1 generate-structures: true gamerules: {} ```

## ๐Ÿ“‹ Requirements

  • โ˜• Java 21+
  • ๐Ÿ“ฆ Paper or a Paper-based fork (e.g. Purpur) โ€” 1. 21. 11+ recommended

> โš ๏ธ Not compatible with vanilla Spigot or CraftBukkit โ€” see (#-platform-support) below.

## ๐Ÿงฉ Platform Support

WorldResetter uses the Paper Plugin system (not Bukkit's `plugin.yml`) and only works on Paper and Paper-based servers like Purpur โ€” it does not work on plain Spigot or CraftBukkit.

This isn't a bug, it's intentional: some of the plugin's features (like per-world view distance and the modern command API) simply don't exist outside of Paper. If your server runs on Purpur, you're fine โ€” Purpur is built on top of Paper, so everything works the same.

## ๐Ÿš€ Performance Optimizations

A few things this plugin does to keep your server running smoothly:

  • โšก Faster restarts โ€” Deleting the old world used to happen one file at a time, which could take a while on large maps. Now it deletes everything at once using multiple CPU cores, so your server starts back up much faster โ€” especially noticeable on SSD/NVMe drives.
  • ๐Ÿชถ Lighter load per world โ€” You can lower the view distance and simulation distance just for this world, without affecting your other worlds. Small minigame maps don't need long render distances, so turning this down reduces lag with no downside.
  • โญ๏ธ Skip unnecessary generation โ€” If players never explore for loot, you can turn off village/stronghold generation entirely โ€” this makes new worlds generate faster.

## ๐Ÿ”„ Auto-Update

WorldResetter checks the Modrinth API every 6 hours for new releases. OPs are notified on join when an update is available. Use `/wr version` to check manually and `/wr version update` to download and apply the update automatically.

## ๐Ÿ“„ License

## โš™๏ธ Source Code

(https://github.com/MrGodzilla38/WorldResetter)

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
MrGodzilla
Version
Kch1DDNf
Downloads
45
Endorsements
2
Category
adventure
Created
7/6/2026
Updated
7/9/2026
Game Versions
aiglndEu, oMaFdkJ6, uZ3AUIPN, Qc4aJRot, 3x4UVJaY
Tags
adventure, utility, worldgen

๐Ÿ”ง How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

๐Ÿ“– Full step-by-step install guide for Minecraft Plugins โ†’

Visit the official mod page for specific installation instructions for this mod.

๐ŸŽฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

โ“ Frequently Asked Questions

Which Minecraft Plugins versions does WorldResetter support?

The author lists aiglndEu, oMaFdkJ6, uZ3AUIPN, Qc4aJRot, 3x4UVJaY, Kch1DDNf. Other versions may work but are untested by the author.

What is the latest version of WorldResetter?

Version Kch1DDNf, published 2026-07-09 with 45 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More adventure ๐Ÿ‘ค More by MrGodzilla ๐Ÿ”Ž Similar Mods ๐ŸŒ Best adventure (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods