Compatibility
Minecraft: Java Edition
26.2
26.1.x
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
Platforms
Links
Tags
Creators
Details
Licensed MIT
Published last year
Updated last month
๐ WorldAccessBlocker
WorldAccessBlocker temporarily restricts access to the Nether, the End, elytra flight, and custom worlds โ by a fixed date or a recurring weekly schedule. Built for Paper and its forks (Purpur, Folia).
โจ Features
- โณ Date-based restrictions โ block a feature until a specific date and time.
- ๐ Recurring schedules โ allow access only on certain days and time windows (e.g. weekends, or Sundays 15:00โ17:00).
- ๐ Nether blocker โ cancels portal creation, portal travel, and ender-pearl teleports.
- ๐ End blocker โ prevents End portal activation (and the trip to the End).
- ๐ชฝ Elytra control โ block equipping and/or flight independently.
- ๐บ๏ธ Custom worlds โ restrict any named world by date or schedule.
- ๐ช Fallback teleport โ send blocked players to a configurable world spawn.
- ๐ซ Per-player bypasses โ grant a timed bypass with
/wab bypass, revoke with/wab remove. - ๐ PlaceholderAPI support โ expose restriction state and time-left to scoreboards / TAB.
- ๐ Multi-language โ English and Russian included; add your own
.yml. - โป๏ธ Live reload โ apply config changes without a restart via
/wabreload. - ๐งต Folia-native โ uses the regional scheduler on Folia (no thread-safety warnings).
- ๐ Update notifications โ admins get an in-game alert when a new version is out.
๐ฆ Installation
- Download the latest
WorldAccessBlocker.jar. - Drop it into your server's
plugins/folder. - Restart the server.
- Edit
plugins/WorldAccessBlocker/config.ymlto taste, then run/wabreload.
โ๏ธ Configuration
# Message language: "en" or "ru"
language: "en"
# Server time zone (important for recurring schedules!)
time-zone: "Europe/Moscow"
nether:
disable: true
# Used only when there is NO `recurring` block (blocked until this date):
restriction-date: "2025-03-10 00:00:00"
disable-portal-creation: true
disable-teleportation: true
# Weekly schedule. If this block is present, `restriction-date` is IGNORED.
# Each period is an OPEN (allowed) window โ outside these windows access is blocked.
recurring:
periods:
# Open only on Sundays, 15:00โ17:00
- days: [SUNDAY]
start-time: "15:00"
end-time: "17:00"
# Open all day on weekends
- days: [SATURDAY, SUNDAY]
end:
disable: true
disable-portal-activation: true
# Empty list = no open windows = ALWAYS blocked
recurring:
periods: []
elytra:
disable: true
disable-equip: true
disable-flight: true
custom-worlds:
lobby_world:
disable: true
recurring:
periods:
- days: [MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY]
start-time: "09:00"
end-time: "17:00"
# Where blocked players are teleported (world name โ its spawn)
fallback-spawns:
default: "world"
nether: "hub"
How the schedule works: when
recurring:is set, each period defines an open window. If the current day/time falls inside a period, access is open; otherwise it is blocked. An emptyperiods: []means always blocked.
๐งฉ Commands & Permissions
| Command | Permission | Default | Description |
|---|---|---|---|
/wab bypass <player> <feature> <seconds> |
wab.bypass |
op | Grant a timed bypass |
/wab remove <player> <feature> |
wab.bypass |
op | Remove a bypass |
/wab status [player] |
wab.status |
all | Show restriction status |
/wabreload |
wab.reload |
op | Reload config without a restart |
<feature> is nether, end, elytra, or a custom world name.
๐ง PlaceholderAPI
| Placeholder | Returns |
|---|---|
%wab_nether_blocked% |
true / false |
%wab_end_blocked% |
true / false |
%wab_elytra_blocked% |
true / false |
%wab_time_left_nether% |
time remaining (or schedule) |
%wab_time_left_end% |
time remaining (or schedule) |
%wab_time_left_elytra% |
time remaining (or schedule) |
๐ป Compatibility
| Platform | Versions | Status |
|---|---|---|
| Paper | 1.20.5 โ 1.21.4 | โ Full support |
| Purpur | 1.20.5 โ 1.21.4 | โ Full support |
| Folia | 1.20.5+ | โ Native scheduler |
Requires Java 21. Spigot/Bukkit are not supported (the plugin uses Paper's Adventure & scheduler APIs).
๐ Stats
๐ Bugs & Suggestions
Open an issue on GitHub or leave a comment here on Modrinth.


