{"id":171643,"date":"2026-06-10T00:36:30","date_gmt":"2026-06-09T21:36:30","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/"},"modified":"2026-06-10T00:36:30","modified_gmt":"2026-06-09T21:36:30","slug":"worldtimer","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/","title":{"rendered":"WorldTimer"},"content":{"rendered":"<p># WorldTimer<\/p>\n<p>A Paper 1.20.1 plugin that enforces configurable time limits for specific worlds (e.g., resource worlds) with rank-based overrides via LuckPerms.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **Per-world time limits** \u2014 Configure how long players can stay in each world<br \/>\n&#8211; **Rank-based overrides** \u2014 Different ranks get different time limits and cooldowns via LuckPerms permissions<br \/>\n&#8211; **Cooldown system** \u2014 Players must wait before re-entering a world after their time expires<br \/>\n&#8211; **Warning messages** \u2014 Configurable warnings at specific time thresholds<br \/>\n&#8211; **Expiry actions** \u2014 Run commands when a player&#8217;s time expires (e.g., titles, effects)<br \/>\n&#8211; **Return teleport** \u2014 Players are teleported back to their exact pre-entry location<br \/>\n&#8211; **Persistent storage** \u2014 SQLite database survives restarts and crashes<br \/>\n&#8211; **Bypass permission** \u2014 Staff can bypass all restrictions per-world<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; **Paper 1.20.1+** (or compatible fork)<br \/>\n&#8211; **Java 17+**<\/p>\n<p>### Optional Dependencies<\/p>\n<p>&#8211; **LuckPerms** \u2014 For permission-based time limits and cooldowns. Without it, all players use the default values from config.<br \/>\n&#8211; **Multiverse-Core** \u2014 Works seamlessly with Multiverse-managed worlds<\/p>\n<p>## Installation<\/p>\n<p>1. Download the latest `world-timer-x.x.jar` from releases<br \/>\n2. Place it in your server&#8217;s `plugins\/` folder<br \/>\n3. Restart the server<br \/>\n4. Edit `plugins\/WorldTimer\/config.yml` to configure your worlds<br \/>\n5. Reload with `\/worldtimer reload`<\/p>\n<p>## Configuration<\/p>\n<p>&#8220;`yaml<br \/>\n# How often the plugin checks timers (in seconds)<br \/>\ntick-seconds: 1<\/p>\n<p>storage:<br \/>\n  type: sqlite<\/p>\n<p>messages:<br \/>\n  prefix: &#8220;&#038;8[&#038;bWorldTimer&#038;8] &#038;r&#8221;<br \/>\n  warn: &#8220;&#038;eYou have &#038;6%time_remaining% &#038;eremaining in &#038;6%world%&#038;e.&#8221;<br \/>\n  expired: &#8220;&#038;cYour time in &#038;6%world% &#038;chas expired.&#8221;<br \/>\n  cooldown: &#8220;&#038;cYou must wait &#038;6%cooldown_remaining% &#038;cbefore re-entering &#038;6%world%&#038;c.&#8221;<\/p>\n<p>worlds:<br \/>\n  resource:                              # World name (case-insensitive)<br \/>\n    enabled: true<br \/>\n    main-world: &#8220;survival&#8221;               # Fallback teleport world<br \/>\n    teleport-location: &#8220;spawn&#8221;           # Currently uses return point or spawn<br \/>\n    default-limit-seconds: 1800          # 30 minutes (used if no permission)<br \/>\n    default-cooldown-seconds: 600        # 10 minutes (used if no permission)<br \/>\n    limit-permission-prefix: &#8220;worldtimer.limit.resource.&#8221;<br \/>\n    cooldown-permission-prefix: &#8220;worldtimer.cooldown.resource.&#8221;<br \/>\n    bypass-permission: &#8220;worldtimer.bypass.resource&#8221;<br \/>\n    warn-at-seconds: [600, 300, 60, 10]  # Warn at 10m, 5m, 1m, 10s remaining<br \/>\n    expire-commands:<br \/>\n      &#8211; &#8220;title %player% title {&#8220;text&#8221;:&#8221;Time is up!&#8221;,&#8221;color&#8221;:&#8221;red&#8221;}&#8221;<br \/>\n&#8220;`<\/p>\n<p>## Permissions<\/p>\n<p>### Time Limit Permissions<\/p>\n<p>Format: `worldtimer.limit.<world>.<duration>`<\/p>\n<p>| Permission | Effect |<br \/>\n|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8211;|<br \/>\n| `worldtimer.limit.resource.30m` | 30 minute limit |<br \/>\n| `worldtimer.limit.resource.1h` | 1 hour limit |<br \/>\n| `worldtimer.limit.resource.2h` | 2 hour limit |<br \/>\n| `worldtimer.limit.resource.unlimited` | No time limit |<\/p>\n<p>**Duration formats:** `30s`, `30m`, `2h`, `1d`, `unlimited`<\/p>\n<p>If a player has multiple limit permissions, the **highest** value is used.<\/p>\n<p>### Cooldown Permissions<\/p>\n<p>Format: `worldtimer.cooldown.<world>.<duration>`<\/p>\n<p>| Permission | Effect |<br \/>\n|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8211;|<br \/>\n| `worldtimer.cooldown.resource.5m` | 5 minute cooldown |<br \/>\n| `worldtimer.cooldown.resource.10m` | 10 minute cooldown |<br \/>\n| `worldtimer.cooldown.resource.0s` | No cooldown |<\/p>\n<p>If a player has multiple cooldown permissions, the **highest** value is used.<\/p>\n<p>### Other Permissions<\/p>\n<p>| Permission | Description |<br \/>\n|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `worldtimer.bypass.<world>` | Bypass all restrictions for a world |<br \/>\n| `worldtimer.admin` | Full access to all commands |<br \/>\n| `worldtimer.reload` | Access to `\/worldtimer reload` |<br \/>\n| `worldtimer.manage` | Access to reset\/addtime\/setcooldown commands |<br \/>\n| `worldtimer.status` | Access to `\/worldtimer status` |<\/p>\n<p>## Commands<\/p>\n<p>| Command | Description |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/worldtimer reload` | Reload configuration |<br \/>\n| `\/worldtimer status [player]` | View timer status for yourself or another player |<br \/>\n| `\/worldtimer reset <player> <world>` | Reset a player&#8217;s timer and cooldown |<br \/>\n| `\/worldtimer addtime <player> <world> <time>` | Add time to a player&#8217;s allowance |<br \/>\n| `\/worldtimer setcooldown <player> <world> <time>` | Set or clear a player&#8217;s cooldown |<\/p>\n<p>**Alias:** `\/wt`<\/p>\n<p>## How It Works<\/p>\n<p>### Entry Flow<br \/>\n1. Player teleports to a configured world<br \/>\n2. Plugin checks for bypass permission \u2192 if present, allow freely<br \/>\n3. Plugin checks for active cooldown \u2192 if active, block entry and show message<br \/>\n4. Plugin saves the player&#8217;s current location as their **return point**<br \/>\n5. Plugin resolves time limit from permissions (or uses default)<br \/>\n6. Timer tracking begins<\/p>\n<p>### While In World<br \/>\n&#8211; Timer increments every tick interval<br \/>\n&#8211; Warnings are sent at configured thresholds<br \/>\n&#8211; Time is tracked per-player per-world<\/p>\n<p>### On Expiry<br \/>\n1. Expiry message is sent<br \/>\n2. Configured expire-commands are executed<br \/>\n3. Cooldown begins (based on permissions or default)<br \/>\n4. Player is teleported back to their **saved return point**<br \/>\n5. If no return point exists, player goes to main world spawn<\/p>\n<p>### Disconnect Safety<br \/>\n&#8211; If a player disconnects while in a limited world, their timer is saved<br \/>\n&#8211; On rejoin, if their timer is expired or cooldown is active, they&#8217;re teleported to safety<br \/>\n&#8211; This prevents bypassing limits by disconnecting or switching servers<\/p>\n<p>## LuckPerms Setup Example<\/p>\n<p>&#8220;`bash<br \/>\n# Default rank: 30 minute limit, 10 minute cooldown<br \/>\n\/lp group default permission set worldtimer.limit.resource.30m true<br \/>\n\/lp group default permission set worldtimer.cooldown.resource.10m true<\/p>\n<p># VIP rank: 1 hour limit, 5 minute cooldown<br \/>\n\/lp group vip permission set worldtimer.limit.resource.1h true<br \/>\n\/lp group vip permission set worldtimer.cooldown.resource.5m true<\/p>\n<p># MVP rank: 2 hour limit, no cooldown<br \/>\n\/lp group mvp permission set worldtimer.limit.resource.2h true<br \/>\n\/lp group mvp permission set worldtimer.cooldown.resource.0s true<\/p>\n<p># Staff: bypass all restrictions<br \/>\n\/lp group staff permission set worldtimer.bypass.resource true<br \/>\n&#8220;`<\/p>\n<p>## Without LuckPerms<\/p>\n<p>If LuckPerms is not installed, the plugin still works:<br \/>\n&#8211; All players use `default-limit-seconds` from config<br \/>\n&#8211; All players use `default-cooldown-seconds` from config<br \/>\n&#8211; Bypass permissions still work via Bukkit&#8217;s permission system<br \/>\n&#8211; A warning is logged on startup<\/p>\n<p>## Storage<\/p>\n<p>Data is stored in `plugins\/WorldTimer\/data.db` (SQLite):<br \/>\n&#8211; **timer_data** \u2014 Per-player per-world: seconds used, cooldown timestamp<br \/>\n&#8211; **player_worlds** \u2014 Last known world for each player<br \/>\n&#8211; **return_locations** \u2014 Saved return points (world, x, y, z, yaw, pitch)<\/p>\n<p>## Placeholders<\/p>\n<p>Available in messages:<br \/>\n&#8211; `%player%` \u2014 Player name<br \/>\n&#8211; `%world%` \u2014 World name<br \/>\n&#8211; `%time_remaining%` \u2014 Formatted time remaining (e.g., &#8220;5m 30s&#8221;)<br \/>\n&#8211; `%cooldown_remaining%` \u2014 Formatted cooldown remaining<\/p>\n<p>## Building<\/p>\n<p>&#8220;`bash<br \/>\nmvn clean package<br \/>\n&#8220;`<\/p>\n<p>Output: `target\/world-timer-1.0-SNAPSHOT.jar`<\/p>\n<p>## License<\/p>\n<p>MIT<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WorldTimer adds per\u2011world playtime limits with rank-based overrides, warnings, cooldowns, and safe return teleports. Ideal for limiting time in resource\/mining worlds while keeping your main world unrestricted.<\/p>\n","protected":false},"featured_media":171644,"template":"","meta":{"_minecraft_slug":"worldtimer","_minecraft_project_id":"r9dnN0Km","_minecraft_author":"blueobsidian196","_minecraft_license":"MIT","_minecraft_downloads":11,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"worldtimer.zip","_minecraft_size_bytes":63936,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-15T23:06:07.504913Z","_minecraft_date_created":"2026-02-25T01:40:05.764783Z","_minecraft_date_modified":"2026-02-22T02:11:32.685706Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/worldtimer","_minecraft_icon_attachment_id":171644,"_minecraft_imported_at":"2026-06-09T21:36:30+00:00","_minecraft_import_hash":"179dad81a88deb752fff1a7df867baa3","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,127],"mod_loader":[130,132],"minecraft_version":[59,36,60,93,94,101,102],"class_list":["post-171643","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-paper","mod_loader-bukkit","mod_loader-paper","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WorldTimer - 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\/worldtimer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WorldTimer - Minecraft\" \/>\n<meta property=\"og:description\" content=\"WorldTimer adds per\u2011world playtime limits with rank-based overrides, warnings, cooldowns, and safe return teleports. Ideal for limiting time in resource\/mining worlds while keeping your main world unrestricted.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/\",\"name\":\"WorldTimer - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/worldtimer-icon-381c9e21dfecc85dab018a99cd4410a385b513e2_96.webp\",\"datePublished\":\"2026-06-09T21:36:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/worldtimer-icon-381c9e21dfecc85dab018a99cd4410a385b513e2_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/worldtimer-icon-381c9e21dfecc85dab018a99cd4410a385b513e2_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/worldtimer\\\/#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\":\"WorldTimer\"}]},{\"@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":"WorldTimer - 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\/worldtimer\/","og_locale":"en_US","og_type":"article","og_title":"WorldTimer - Minecraft","og_description":"WorldTimer adds per\u2011world playtime limits with rank-based overrides, warnings, cooldowns, and safe return teleports. Ideal for limiting time in resource\/mining worlds while keeping your main world unrestricted.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/","name":"WorldTimer - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/worldtimer-icon-381c9e21dfecc85dab018a99cd4410a385b513e2_96.webp","datePublished":"2026-06-09T21:36:30+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/worldtimer-icon-381c9e21dfecc85dab018a99cd4410a385b513e2_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/worldtimer-icon-381c9e21dfecc85dab018a99cd4410a385b513e2_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/worldtimer\/#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":"WorldTimer"}]},{"@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\/171643","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\/171644"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=171643"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=171643"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=171643"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=171643"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}