WorldAccessBlocker
# 🌍 WorldAccessBlocker
[](https://bstats.org/plugin/bukkit/WorldAccessBlocker/26810)
[](https://bstats.org/plugin/bukkit/WorldAccessBlocker/26810)
**WorldAccessBlocker** is a lightweight and highly configurable Minecraft plugin for **Bukkit**, **Spigot**, **Paper**, and **Folia** servers that lets you **restrict access to the Nether, the End, and elytra usage** until specific dates.
Perfect for managing **progression-based survival**, **seasonal events**, or **timed unlocks** — with multi-language support, date-based control, and live reloads.
—
## ✨ Features
– 🔥 **Restrict Nether Access**
Prevent players from entering the Nether until a specified date.
– 🚫 **Block End Portal Activation**
Disallow activation of End portals before a configured time.
– 🛑 **Disable Elytra Usage**
Cancels gliding and disables elytra flight until allowed.
– 🌍 **Multi-Language Support**
Includes `English` and `Russian` by default — customizable via `.yml`.
– 📅 **Date-Based Restrictions**
Set unlock dates using `YYYY-MM-DD HH:MM:SS` (UTC).
– ♻️ **Live Reload**
Instantly reload configs and language files with `/wabreload`.
– ⚠️ **Folia Compatibility Notices**
Alerts admins about partial feature support on Folia servers.
—
## 📦 Installation
1. Download `WorldAccessBlocker.jar`.
2. Place it in your server’s `/plugins` folder.
3. Start or reload the server.
4. Configure `config.yml` and language files in:
`plugins/WorldAccessBlocker/lang/`
—
## ⚙️ Configuration Example
“`yaml
# ===================================================================
# WorldAccessBlocker v0.7
# ===================================================================
# Message language: “ru” or “en”
language: “ru”
# Server time zone (important for recurring!)
# List: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time-zone: “Europe/Moscow”
# ===================================================================
# Nether
# ===================================================================
nether:
disable: true
# If recurring is NO, this date is used (until when it is blocked)
restriction-date: “2025-03-10 00:00:00”
disable-portal-creation: true
disable-teleportation: true
# NEW: schedule by day and time
# If this block is present, restriction-date is IGNORED
recurring:
periods:
# Example 1: only on Sundays from 3:00 p.m. to 5:00 p.m.
– days: [SUNDAY]
start-time: “3:00 p.m.”
end-time: “5:00 p.m.”
# Example 2: all day on weekends
– days: [SATURDAY, SUNDAY]
# Example 3: every Monday from 6:00 p.m. to 11:59 p.m.
– days: [MONDAY]
start-time: “6:00 p.m.”
end-time: “11:59 p.m.”
“`
World TP Plus
—
**🌍 World TP Plus**
**A simple cross-dimension teleport plugin for Paper 1.21+**
**By RetroSapien**
—
**✨ Features**
* Extends `/tp [dimension]` with an optional 4th argument:
* `overworld` *(default)*
* `nether`
* `end`
* Fully preserves vanilla `/tp` behavior and permissions when no dimension is specified
* Tab completion for dimensions
* Friendly error message for unknown dimensions
* Works from both console and in-game
—
**📋 Usage Examples**
* `/tp 0 80 0`
→ Vanilla teleport in current world
* `/tp 0 80 0 nether`
→ Teleport to same coords in the Nether
* `/tp Steve 10 70 10 end`
→ Teleport player “Steve” to coords in the End
—
**🔐 Permissions**
* `minecraft.command.tp` *(same as vanilla)*
Requires permission level 2
—
**⚙️ Requirements**
* **Java 21+**
* **Paper 1.21+**
Works on forks that support the Paper API
—
**📦 Installation**
1. Drop the JAR into your `plugins/` folder
2. Restart or reload your server
—
**🔗 Links**
* Discord for support : [https://discord.gg/tHeFGB7Et4](https://discord.gg/tHeFGB7Et4)
—
*Crafted with ❤️ by RetroSapien*
World Levels

Work together to level up your multiplayer Minecraft server to unlock features and rewards!
## Features
– Level up your multiplayer server by gaining XP through normal gameplay
– **Reward your players** for leveling up the world with:
– Items
– Increasing the world border
– Permissions, groups, and currency (requires [Vault][vault])
– **Control what players can access** based on World Level:
– Building Nether or The End portals
– Mining blocks
– Placing blocks
– Crafting items
– **Trigger any command** upon world level up
– Highly [**customizable**][config] with a full config [schema][schema]
– Add custom XP sources globally or at a per-level basis
– Scale leveling exactly to your liking
– Specify groups of levels per-world or groups of worlds
– Exclude certain worlds from the plugin
– Support for infinite level scaling and rewards
– Optionally reward offline or new players for level gains
– **Customizable messages**, with [MiniMessage][minimessage]
formatting support
– Optionally add [Vault]() for **full
integration with your permission and economy plugin** of
choice

*GIF showing leveling up, Nether access, and world border increases*
### Customizable Server XP Bar

### Level Up Alerts

## Configuration
**This plugin likely requires configuration before it can be useful to you.**
The default configuration file will be created for you, but it can also be found
[here][config]. If your text editor
supports [JSON/YAML schemas](https://json-schema.org/understanding-json-schema/about),
you will also get configuration autocomplete suggestions and linting.
You can find a more detailed example
config [here](https://gitlab.com/ASTRELION/worldlevels/-/blob/main/src/main/resources/example.config.yml).
### Config Examples
*These are partial configurations for the `levels` section specifically.*
How level ranges and XP requirements work
“`yaml
levels:
‘1’:
# level 1 should always require 0 XP
xp: 0.0
‘2’:
# level 2 requires 100 XP to get to
xp: 100.0
‘3’:
xpStep:
# level 3 adds 50 to the previous requirement, making it 150 XP to get to
add: 50.0
‘4’:
xpStep:
# level 4 multiplies the previous requirement by 2, making it 300 XP to get to
mult: 2.0
‘5-10’:
xpStep:
# levels 5-10 adds 50 to the previous requirement, making the following for each:
# level 5 requires 350
# level 6 requires 400
# level 7 requires 450
# level 8 requires 500
# level 9 requires 550
# level 10 requires 600
add: 50.0
’11-‘:
# Level 11 and beyond (scales infinitely) requires 1000 XP to get to
xp: 1000.0
“`
Lock the Nether and The End at the start, and unlock them when the
server reaches level 2 and 3, respectively
“`yaml
levels:
‘1’:
xp: 0.0
# Prevent Nether and End portals from being used initially
allowEnd: false
allowNether: false
‘2’:
xp: 2000.0
# Unlock Nether portals at level 2
allowNether: true
titles:
– title: Nether unlocked!
‘3’:
xp: 4000.0
# Unlock End portals at level 3
allowEnd: true
titles:
– title: The End unlocked!
‘4-‘:
xp: 8000.0
“`
Award players with different items, and unlock crafting and mining
“`yaml
levels:
‘1’:
xp: 0.0
items:
IRON_INGOT: 1
levels:
crafting:
DIAMOND_HELMET: false
DIAMOND_CHESTPLATE: false
DIAMOND_LEGGINGS: false
DIAMOND_BOOTS: false
mining:
DIAMOND_ORE: false
placing:
DIAMOND_ORE: false
‘2’:
xp: 2000.0
items:
COPPER_INGOT: 1
# crafting: is omitted here because by default all crafting is allowed
# so, at level 2, players can craft diamond armor
# mining: and placing: are omitted for the same reason
‘3-4’:
xp: 4000.0
items:
# Since ‘3-4’ is a range, this awards a diamond for both levels 3 and 4
DIAMOND: 1
‘5-‘:
xp: 8000.0
items:
# Since ‘5-‘ scales infinitely, this awards a netherite ingot every single
# level from 5 onwards
NETHERITE_INGOT: 1
“`
How you can manipulate the world border for each level.
“`yaml
levels:
‘1’:
xp: 0.0
# Sets the initial world border to have a radius of 128, centered at 0,0
worldBorder:
radius: 128
center:
x: 0
z: 0
‘2’:
xp: 2000.0
# Sets the radius of the world border for achieving level 2 at 256
worldBorder:
radius: 256
‘3’:
xp: 4000.0
# Adds the radius of the world border for achieving level 3 to the previous
# radius, making it 512
worldBorder:
radiusStep:
add: 256
‘4-‘:
xp: 8000.0
# Multiplies the radius of the world border for achieving level 4 and onward
# to the previous radius, making it 768, 1152, 1728, and so on
worldBorder:
radiusStep:
mult: 1.5
“`
Award permissions, groups, and currency for certain levels (requires Vault)
“`yaml
levels:
‘1’:
xp: 0.0
‘2’:
xp: 2000.0
# Assigns ‘mypermission.one’ to all players
permissions:
– “mypermission.one”
# Gives all players 50.0 currency
currency:
add: 50.0
‘3’:
xp: 4000.0
# Assigns ‘mypermission.two’ to all players
permissions:
– “mypermission.two”
# Multiply all player’s current currency by 2
currency:
mult: 2.0
‘4’:
xp: 8000.0
# Adds all players to the ‘mygroup’ group
groups:
– “mygroup”
“`
Run commands on level up
“`yaml
levels:
‘1’:
xp: 0.0
‘2’:
xp: 2000.0
# Runs the ‘time set day’ command via the server console
commands:
– “time set day”
‘3’:
xp: 4000.0
# Runs the ‘say You leveled up!’ command via the server console
commands:
– “say You leveled up!”
“`
Require the server’s players to collectively mine a certain amount of
different tiers of ore to get to the next level.
“`yaml
levels:
‘1’:
xp: 0.0
xpWeights:
# This makes it so no vanilla XP sources contribute world level XP
DEFAULT: 0.0
customXPSources:
mineIgnoresSilkTouch: true # set this to prevent XP gains for mining with silk touch
playerMine:
COAL_ORE: 1 # Awards 1 XP for each coal ore mined
‘2’:
xp: 100.0 # requires 100 coal ore mined (defined in level 1) to get this level
xpWeights:
DEFAULT: 0.0
customXPSources:
mineIgnoresSilkTouch: true
playerMine:
COPPER_ORE: 1
‘3’:
xp: 200.0 # requires 200 copper ore mined (defined in level 2) to get this level
xpWeights:
DEFAULT: 0.0
customXPSources:
mineIgnoresSilkTouch: true
playerMine:
IRON_ORE: 1
‘4’:
xp: 300.0 # requires 300 iron ore mined (defined in level 3) to get this level
xpWeights:
DEFAULT: 0.0
customXPSources:
mineIgnoresSilkTouch: true
playerMine:
DIAMOND_ORE: 1
‘5’:
xp: 400.0 # requires 400 diamond ore mined (defined in level 4) to get this level
“`
Specify levels based on world and share rewards
“`yaml
groups:
WorldGroup:
name: The Overworld
# This group only applies to the world named “world”
worlds:
– world
# When this group levels up, it will share items and permission rewards to players in
# the groups listed
rewardOtherGroups:
– NetherGroup
– EndGroup
# Rewards players past rewards when they join the group for the first time
rewardNewPlayers: true
# Rewards players past rewards when they join the group after being offline
rewardOffline: true
levels:
“1-“:
xp: 0.0
xpStep:
add: 100.0
# Every level, this will reward every player in any of the groups a
# gold ingot, due to rewardOtherGroups
items:
GOLD_INGOT: 1
NetherGroup:
name: The Nether
worlds:
– world_nether
rewardOtherGroups:
– WorldGroup
– EndGroup
levels:
“1-“:
xp: 0.0
xpStep:
add: 100.0
EndGroup:
name: The End
worlds:
– world_the_end
rewardOtherGroups:
– NetherGroup
– WorldGroup
levels:
“1-“:
xp: 0.0
xpStep:
add: 100.0
“`
## Messages
The default messages file will be created for you, but it can also be found
[here][messages]. If your text editor
supports [JSON/YAML schemas](https://json-schema.org/understanding-json-schema/about),
you will also get configuration autocomplete suggestions and linting.
Messages support [MiniMessage][minimessage], and have the following custom replacements
available:
| Replacement | Description |
|————————————-|—————————————————————–|
| `` | Current world level |
| `` | Amount of current XP relative to the current level requirements |
| `` | XP requirement to reach the next level |
| `` | Absolute total current XP |
| `` | Name of the level group |
| `` | Plugin version |
| `` | Plugin Modrinth URL |
| `` | Makes inner text clickable for the Modrinth URL |
## Permissions
| Permission | Description |
|—————————–|————————————————————————————|
| `worldlevels.earn.exempt` | Prohibit the player from gaining World Levels XP (by default, all players earn XP) |
| `worldlevels.help` | Access to the `worldlevels help` command |
| `worldlevels.reload` | Access to the `worldlevels reload` command |
| `worldlevels.reset.all` | Access to the `worldlevels reset all` command |
| `worldlevels.reset.rewards` | Access to the `worldlevels reset rewards` command |
| `worldlevels.update` | Access to the `worldlevels update` command |
| `worldlevels.version` | Access to the `worldlevels version` command |
| `worldlevels.xp.add` | Access to the `worldlevels xp add` command |
| `worldlevels.xp.get` | Access to the `worldlevels xp` command |
| `worldlevels.xp.set` | Access to the `worldlevels xp set` command |
## Commands
All the following are prefixed with `worldlevels`. For example, `worldlevels help`.
*Arguments in `<>` are required, arguments in `[]` are optional.*
| Command | Description |
|————————–|——————————————————————————————————-|
| `help` | Shows a list of commands |
| `reload` | Reload the plugin configuration and save from file |
| `xp` | Gets the current XP total and level |
| `xp add ` | Add the given amount of XP to the total, supports negatives |
| `xp set ` | Sets the total XP to the given amount |
| `update` | Checks for plugin updates |
| `version` | Prints the plugin version |
| `reset all` | Resets total XP back to 0 and allows all players to regain rewards |
| `reset rewards [player]` | Resets rewards for the given player (or all players), allowing them to regain rewards for past levels |
## Metrics

This plugin collects anonymized usage statistics via [bStats][bstats]. bStats is
used by many plugins and provides useful statistics for development, but it can
be disabled in the bStats `config.yml` for your server.
In addition to the default stats collected, World Levels also counts a few
stats to better gauge how the plugin is used. These are:
– The number of level groups your server uses
– The average number of worlds in each level group
– The average number of levels in each level group
[config]: https://gitlab.com/ASTRELION/worldlevels/-/blob/main/src/main/resources/config.yml
[messages]: https://gitlab.com/ASTRELION/worldlevels/-/blob/main/src/main/resources/messages.yml
[minimessage]: https://docs.papermc.io/adventure/minimessage/
[schema]: https://gitlab.com/ASTRELION/worldlevels/-/raw/main/src/main/resources/config-schema.json
[vault]: https://github.com/milkbowl/Vault
[bstats]: https://bstats.org/
World Download
# DownloadPlugin for Minecraft
DownloadPlugin is a Minecraft server plugin that allows players to download the world they are currently in as a ZIP file. This is especially useful for large building servers or personal worlds.
## Features
– Download any world with `/download ` command.
– Only allows downloads from worlds that are not blocked.
– Generates ZIP files named as `...zip`.
– Provides clickable download links in chat.
– Logs all downloads if enabled.
– Automatically deletes old downloads based on expiration time.
– Deletes all ZIPs on server start to prevent storage issues.
– Supports internal HTTP port and public port via tunnels (like Playit.gg).
## Commands
/download
– ``: A numeric code chosen by the player to make the ZIP filename unique. Example: `/download 12345`
– Blocked worlds cannot be downloaded.
## Configuration (`config.yml`)
“`yaml
blocked-worlds:
– world_nether
– world_the_end
log-downloads: true
log-file: downloads.log
http-port: 8100 # Internal port where the HTTP server runs
public-port: 27429 # Public port that players use to access downloads
download-expiration: 3600 # Expiration time in seconds for automatic deletion
public-ip: “147.185.221.23” # Server’s public IP address or domain
World Altitude Control
# WAC World Altitude Control 世界高度控制
> 这个mod不能解决高度不能超过mc数据结构限制的问题,因为这会摧毁兼容性!
> This mod doesn’t solve the problem that the height can’t exceed the mc data structure limit because it would destroy compatibility
这个Mod用于控制Minecraft维度高度,可在配置文件或在HutoolCore的Web编辑器中进行配置。
This mod is used to control the height of Minecraft dimensions and can be configured in the configuration file or in HutoolCore’s web editor.
它的原理是Minecraft在创建ServerLevel(ServerWorld)时修改ServerLevel(ServerWorld)的高度配置。
It works by Minecraft modifying the height configuration of the ServerLevel (ServerWorld) when it is created.
以下为对参数的解释:
The following is an explanation of the parameters (note in Chinese):
|参数|注释|
|——-|——-|
|id|世界ID|
|logical_height|玩家使用紫颂果或下界传送门可以到达的总高度。不会影响超过该限制高度的既有传送门。取值为0到4064的闭区间,且不能大于 height。|
|min_y|该维度中可以存在方块的最低高度。数值必须在-2032至2031之间且为16的整数倍(也就是说,-2032是最小有效值,2016是最大有效值)。|
|height|该维度中可以存在方块的总高度。数值必须在16至4064之间且为16的整数倍。维度中可以存在方块的最大高度值为min_y与height值之和减去1,不能超过2031。|
原版与使用HutoolCoreWebConfig的配置文件样式:
The original and the profile style using HutoolCoreWebConfig:
“`json
{
“worldConfigs”: {
“minecraft:overworld”: {
“id”: “minecraft:overworld”,
“height”: 1024,
“min_y”: -64,
“logical_height”: 256
},
“minecraft:the_nether”: {
“id”: “minecraft:the_nether”,
“height”: 1024,
“min_y”: -64,
“logical_height”: 256
},
“minecraft:the_end”: {
“id”: “minecraft:the_end”,
“height”: 1024,
“min_y”: -64,
“logical_height”: 256
}
}
}
“`

WorkstationCommands
# WorkstationCommands
This is my first published minecraft plugin!
With this plugin, you can allow players to open menus for any workstation from anywhere.
You can enable/disable commands in the config, as well as manage the aliases of each command.
Use `/wcreload` to reload the config without restarting.
[](https://modrinth.com/plugin/workstationcommands)
## SPONGE ISSUES
The current version of the Sponge API does not allow for dynamic unregistration and registration of commands. This means that /wcreload IS NOT A PART OF THE SPONGE IMPLEMENTATION!!!
## Configuration
Configuration for this plugin is very simple!
Commands default to being disabled if their config is not found, so you can remove a command from the config to disable it, or set the “enabled” flag to false.
You can also define a list of aliases for the command. If this list is not found, it doesn’t create any.
To enable only the crafting table, your config may look like this:
“`yml
wccraft:
enabled: true
“`
That’s it, just two lines.
Now let’s say you dont want to run `/wccraft`, and you want a different command to open the gui.
This is where the aliases config comes into play. Let’s add `/craft` as an alias to `/wccraft` (This is in the default config)
“`yml
wccraft:
enabled: true
aliases:
– craft
“`
Note that you don’t need to include the forward slash when registering the alias.
## Commands
– `/wcreload`: Reloads the configuration file.
– `/wccraft [target]`: Opens the crafting table GUI for the executor or the specified target.
– `/wcstonecutter [target]`: Opens the stonecutter GUI for the executor or the specified target.
– `/wcloom [target]`: Opens the loom GUI for the executor or the specified target.
– `/wccartography [target]`: Opens the cartography table GUI for the executor or the specified target.
– `/wcfurnace [target]`: Opens the furnace GUI for the executor or the specified target.
– `/wcblastfurnace [target]`: Opens the blast furnace GUI for the executor or the specified target.
– `/wcsmoker [target]`: Opens the smoker GUI for the executor or the specified target.
– `/wcsmithing [target]`: Opens the smithing table GUI for the executor or the specified target.
– `/wcanvil [target]`: Opens the anvil GUI for the executor or the specified target.
– `/wcenchant [target]`: Opens the enchanting table GUI for the executor or the specified target.
– `/wcgrindstone [target]`: Opens the grindstone GUI for the executor or the specified target.
– `/wcbrew [target]`: Opens the brewing stand GUI for the executor or the specified target.
## Player Permissions
**Permissions given to every player**
– `wc.craft`: Allows the player to use `/wccraft`.
– `wc.stonecutter`: Allows the player to use `/wcstonecutter`.
– `wc.loom`: Allows the player to use `/wcloom`.
– `wc.cartography`: Allows the player to use `/wccartography`.
– `wc.furnace`: Allows the player to use `/wcfurnace`.
– `wc.blastfurnace`: Allows the player to use `/wcblastfurnace`.
– `wc.smoker`: Allows the player to use `/wcsmoker`.
– `wc.smithing`: Allows the player to use `/wcsmithing`.
– `wc.anvil`: Allows the player to use `/wcanvil`.
– `wc.enchant`: Allows the player to use `/wcenchant`.
– `wc.grindstone`: Allows the player to use `/wcgrindstone`.
– `wc.brew`: Allows the player to use `/wcbrew`.
## Operator Permissions
**Permissions given to every operator**
– `wc.reload`: Allows players to use `/wcreload`.
– `wc.craft.other`: Allows the player to use `/craft [target]`.
– `wc.stonecutter.other`: Allows the player to use `/stonecutter [target]`.
– `wc.loom.other`: Allows the player to use `/loom [target]`.
– `wc.cartography.other`: Allows the player to use `/cartography [target]`.
– `wc.furnace.other`: Allows the player to use `/furnace [target]`.
– `wc.blastfurnace.other`: Allows the player to use `/blastfurnace [target]`.
– `wc.smoker.other`: Allows the player to use `/smoker [target]`.
– `wc.smithing.other`: Allows the player to use `/smithing [target]`.
– `wc.anvil.other`: Allows the player to use `/anvil [target]`.
– `wc.enchant.other`: Allows the player to use `/enchant [target]`.
– `wc.grindstone.other`: Allows the player to use `/grindstone [target]`.
– `wc.brew.other`: Allows the player to use `/brew [target]`.
WLIB
WLIB
Static utility library built for dynamic bukkit plugins
WLIB is a utility library for bukkit servers that simplifies common plugin development tasks and reduces repetitive boilerplate code.
Features include:
* Dynamic command registration
* Static event management
* Plugin management APIs
* Debug and development tools
* Reflection and compatibility helpers
* Cross-platform Bukkit/Paper/Folia support
* General-purpose utility classes for plugin development
WLIB is intended as a lightweight developer library and is primarily used across projects from WebMC Development.
wldc
# WLDC – Discord Whitelist Manager
WLDC is a simple Minecraft-Discord integration plugin that allows you to manage your server’s whitelist directly through Discord commands.
## Commands
### General Commands [DISCORD]
– `/whitelist add ` – Add a player to the whitelist
– `/whitelist remove ` – Remove a player from the whitelist
– `/whitelist list` – View all whitelisted players
– `/whitelist check ` – Check if a player is whitelisted
### Admin Commands [Require ADMINISTATOR on the discord server]
– `/whitelist addadmin ` – Add a Discord user as whitelist admin
– `/whitelist removeadmin ` – Remove a Discord user from admins
– `/whitelist listadmins` – List all admin users
– `/whitelist setgroup ` – Set a Discord role as a whitelisted admin group
### Commands [MINECRAFT]
– `/wldc reload` – Reload the plugin configuration (requires `wldc.reload` permission)
## Configuration
The plugin uses a simple YAML configuration file with the following key settings:
“`yaml
discord:
token: “your-bot-token”
guild-id: “your-guild-id”
status:
type: “PLAYING” # PLAYING, WATCHING, LISTENING, COMPETING
text: “Minecraft” # Custom status text
“`
## Setup
1. Download and install the plugin on your Bukkit/Spigot server
2. Create a Discord bot and get its token
3. Configure the plugin with your Discord bot token and server ID
4. To add users to whitelist / add admins, you need to have Administrator permission on the server.
4. Start the server and use `/whitelist` commands in Discord
## Permissions
– Discord users need the “Send Messages” and “Create Commands” permissions to use whitelist commands.
– In-game reload command requires the `wldc.reload` permission
– Admins can be added via Discord to manage the whitelist
## License
This project is licensed under the MIT License – see the LICENSE file for details.
Made with ❤️ by timuzkas
WildCards SMP
# **WildCards**
WildCards adds craftable ability cards to your Minecraft server, each with unique powers, cooldowns, and playstyles.
# Designed for Paper-based servers and compatible with:
– Paper
– Purpur
– Leaf
– Minecraft 1.20.x – 1.21.x
Each card gives players powerful abilities that can be activated by holding the card and using different click combinations.
# Features
– Craftable ability cards
– Unique primary and secondary abilities
– Cooldown system for every power
– Only one active card at a time
– Configurable plugin files
– Designed for modern Paper-based servers
– Lightweight and easy to use
# How It Works
Hold a card in your hand to activate its abilities:
– Right Click → Primary Ability
– Shift + Right Click → Secondary Ability
Each ability has its own cooldown, so players must use them strategically.
Only one card can be active at a time, helping keep gameplay balanced.
# Cards
# Inferno Card
A fire-based card focused on burning enemies and explosive close-range damage.
**Blaze Form**
*Right Click — 20s cooldown*
– Grants Fire Resistance
– Your hits ignite enemies
– Leaves flame particles behind you
**Eruption Burst**
*Shift + Right Click — 25s cooldown*
– Creates a small fire explosion around you
– Damages nearby players
– Knocks back enemies
# Stormbreaker Card
A lightning-themed card built for speed and control.
**Static Surge**
*Right Click — 18s cooldown*
– Grants a Speed boost
– Lightning strikes near enemies
– No terrain damage
**Thunder Lock**
*Shift + Right Click — 30s cooldown*
– Strikes your target with lightning
– Applies brief Slowness
– Applies Blindness
# Abyss Card
A dark mobility and control card.
**Shadow Step**
*Right Click — 15s cooldown*
– Short instant teleport
– Prevents fall damage after use
**Void Grasp**
*Shift + Right Click — 25s cooldown*
– Pulls nearby players toward you
– Applies Weakness
# Frostbite Card
A freezing card focused on slowing and controlling enemies.
**Ice Walker**
*Passive Toggle*
– Freezes water beneath you
– Slows enemies you hit
**Blizzard Zone**
*Shift + Right Click — 20s cooldown*
– Creates a snowstorm around you
– Applies Slowness
– Applies Mining Fatigue to nearby players
# Titan Card
A heavy tank-style card with durability and area damage.
**Stone Skin**
*Right Click — 20s cooldown*
– Grants Resistance
– Increases knockback resistance
**Ground Slam**
*Shift + Right Click — 35s cooldown*
– Leap and smash the ground
– Damages nearby players
– Launches enemies upward
# Phantom Card
A stealth-focused card made for quick attacks and repositioning.
**Phase Walk**
*Right Click — 22s cooldown*
– Grants short invisibility
– Gives a Speed boost
**Backstab Mark**
*Shift + Right Click — 25s cooldown*
– Your next hit deals bonus damage
– Marks the target with Glowing
# Natureborn Card
A support/control card with healing and crowd control.
**Regrowth**
*Right Click — 20s cooldown*
– Grants Regeneration
– Slowly repairs worn armor
**Root Snare**
*Shift + Right Click — 25s cooldown*
– Traps nearby enemies
– Applies heavy Slowness
– Prevents jumping
# Configuration
WildCards automatically creates its plugin folder and configuration files when the server starts.
This allows server owners to customize and manage:
– plugin settings
– ability values
– cooldowns
– balancing options
– card behavior
# Commands
`/wildcards`
Main admin command
`/wc`
Alias of `/wildcards`
Example usage:
– `/wildcards start`
– `/wildcards stop`
– `/wildcards give`
– `/wildcards reload`
– `/wildcards crafteditor`
– `/wildcards list`
– `/wildcards status`
# Permissions
– `wildcards.admin` — Access to admin commands
– `wildcards.use` — Allows using ability cards
– `wildcards.craft` — Allows crafting ability cards
# Compatibility
Supported platforms:
– Paper
– Purpur
– Leaf
Supported versions:
– 1.20.x
– 1.21.x
# Notes
WildCards is built to be lightweight, fun, and easy to use for survival, PvP, and custom server gameplay.
If you want unique combat abilities, magical card powers, and more strategic PvP or events on your server, WildCards is made for you.
WidCore ️⚙️ Essentials / SunLight Alternative!
# WidCore Plugin
WidCore, sunucuyu zorlayan onlarca eklentiyi daha optimize bir şekilde tek bir merkezi yapı altında birleştiren, modüler mimariye sahip ve komutlardan permission yapılarına kadar %99 oranında özelleştirilebilir bir eklentidir. Sunucu yönetimi, güvenlik, ekonomi, optimizasyon ve daha birçok alanda kapsamlı çözümler sunarak sunucunuzun vazgeçilmez bir parçası olmayı hedeflemektedir.
**NOT: Eğer 1.16 sürümünde bir sunucunuz varsa, JDK17’yi yüklemek zorunludur. Bat dosyanıza (-DPaper.IgnoreJavaVersion=true) ekleyerek sunucunuzu JDK17 ile sorunsuz bir şekilde başlatabilirsiniz.**
WidCore is a plugin that consolidates dozens of performance-heavy plugins into a single, optimized central system, featuring a modular architecture and up to 99% customization, including commands and permission structures. It aims to become an indispensable part of your server by providing comprehensive solutions in server management, security, economy, optimization, and many other areas.
**NOTE: If you have a version 1.16 server, installing JDK17 is mandatory. You can start your server with JDK17 without any problems by adding (-DPaper.IgnoreJavaVersion=true) to your bat file.**
TELEMETRİ RAPORU / TELEMETRY REPORT
Widcore adındaki plugin, hatasız bir şekilde ilerlemem için kendisi ile ilgili konsolda oluşan hataları bana iletiyor.
The plugin named Widcore notifies me of its own errors in the console so that I can proceed without any issues.
—
**Support / Destek:** [https://discord.gg/dCDYQ3HPct](https://discord.gg/dCDYQ3HPct)
—
## 🛠 Technical Details / Teknik Detaylar
* **Platforms:** Spigot, Paper, Folia
* **Optional Dependencies:**
* **ProtocolLib:** Vanish ses gizleme / Vanish sound hiding
* **PacketEventsAPI:** Server brand gizleme / Hiding server brand
* **LuckPerms:** Sohbet prefix-suffix / Chat prefix-suffix
* **PlaceholderAPI:** Placeholder desteği / Placeholder support
* **Vault:** Ekonomi sistemi / Economy system
—
🇹🇷 Türkçe Tanıtım / Özellikler / Komutlar (Tıkla ve Aç)
### 🌟 ÖZELLİKLER
* **ANNOUNCER:** Zamanlı otomatik duyurular. Global/dünya bazlı, rastgele/sıralı.
* **ANTIMOBSPAWN:** Belirli mobların doğmasını engeller. Global veya dünya bazlı.
* **BACK:** Son ölüm noktasına ışınlanma.
* **BAN/TEMPBAN:** Kalıcı veya süreli yasaklama. Sebep kısayolları, muaf oyuncular.
* **BANNED ITEMS:** Belirli eşyaların envanterde bulunmasını engeller.
* **CHAT FORMAT:** LuckPerms prefix/suffix, grup bazlı format, PlaceholderAPI. [item]=eşya, [inv]=envanter, [ec]=enderchest paylaşımı.
* **CHATGUARD:** Spam, flood, reklam, yasaklı kelime koruması. Sohbet, örs, kitap, tabela için geçerli.
* **COMPASS TELEPORT:** Pusula ile sol tık = bakılan bloğun yanına ışınlan (maks 200 blok).
* **CUSTOM COMMANDS:** Config üzerinden özel komut. MESSAGE, P_COMMAND, C_COMMAND.
* **ECONOMY:** Vault tabanlı. eco (admin), pay (transfer), baltop (zenginler GUI).
* **ENDERCHEST:** Kendi veya başkasının enderchest’ini açar. Çevrimdışı desteği.
* **FEED:** Oyuncunun açlığını giderir.
* **FIREBALL:** Ateş topu fırlatma. Güç ayarlanabilir.
* **FIREBALL STICK:** Sol tık ile ateş topu fırlatan özel asa.
* **FLY:** Uçuş modunu açar/kapatır.
* **FREEZE:** Oyuncuyu tamamen dondurur. Hareket ve envanter engeli.
* **GAMEMODE:** Oyun modu değiştirme. s/c/a/sp veya 0/1/2/3.
* **GOD:** Ölümsüzlük modu. Hasar almaz, acıkmaz.
* **HEAL:** Oyuncunun canını doldurur.
* **HEAD:** Oyuncunun elindeki eşyayı başına yerleştirmesine olanak tanır.
* **HOME:** Kişisel ev noktaları. GUI menü, limit yetkisi, yasaklı dünyalar. GTA5 tarzı animasyon desteği.
* **INVENTORY ROLLBACK:** Ölüm/giriş/çıkış/dünya değişimi yedekleme. GUI ile geri yükleme.
* **INVSEE:** Başka oyuncuların envanterini canlı gör/düzenle. Çevrimdışı desteği.
* **ITEM:** Belirtilen eşyayı belirtilen miktarda verir.
* **ITEMEDIT:** Eşya düzenleme: isim, lore, büyü, özellik, gizleme, renk, kırılmazlık. Effect GUI: iksir efekti ekleme.
* **ITEM REMOVAL:** Yerdeki eşyaları zamanlı temizler. Hologram geri sayım.
* **JAIL:** Bölge tabanlı hapis. Altın balta + fener ile alan belirleme. Süreli/süresiz.
* **JOINLEAVE:** Giriş/çıkış mesajları. Sohbet/başlık/aksiyon çubuğu seçenekleri.
* **KICK:** Oyuncuyu sunucudan atar. Özelleştirilmiş atılma ekranı.
* **LIGHTNING:** Bakılan yere veya oyuncuya yıldırım düşürür.
* **MERGE EXPERIENCE ORBS:** Tecrübe (XP) kürelerini birleştirir. FPS artışı sağlar.
* **MESSAGING (MSG/R):** Özel mesajlaşma ve hızlı cevap.
* **MOBSTACKER:** Aynı tür mobları birleştirir. Sunucu performansını artırır.
* **MOTD:** Sunucu listesi görünümünü özelleştirme.
* **MUTE/TEMPMUTE:** Kalıcı veya süreli susturma.
* **PLUGIN-HIDER:** Server Brand ve pluginleri tamamen gizler.
* **REPAIR:** Eldeki eşyayı veya tüm envanteri tamir eder.
* **RTP:** Dünyada rasgele ışınlanmanızı sağlar.
* **SHOW ITEM:** Sohbette [item], [inv], [ec] ile paylaşım.
* **SPAWN:** Sunucu başlangıç noktası. GTA5 tarzı animasyon desteği.
* **SPEED:** Yürüme veya uçuş hızını 0-10 arası ayarlar.
* **STACK DEATH DROPS:** Ölümde etrafa saçılan eşyalar tek blokta toplanır.
* **TELEPORT:** tp, tpall, koordinata ışınlanma.
* **TPA:** İstek tabanlı ışınlanma. Hazırlık/bekleme süresi, hasar iptali.
* **TROLL:** 4 troll türü: mlg, rotate, moblook, creeperchest. GUI menü.
* **VANISH:** Tam görünmezlik. Moblar hedef alamaz, sesler gizlenir.
* **VOID SPAWN:** Y=-64 altına düşenleri ışınlar.
* **WARP:** Sunucu geneli ışınlanma noktaları. GTA5 animasyon desteği.
* **WORLDMANAGER [BETA]:** Dünya oluştur/sil/yükle/kaldır. Tipler: normal, flat, empty.
### 📋 KOMUTLAR VE YETKİLER
**ANA**
* `/widcore reload` – `widcore.reload`
**CEZA**
* `/ban [sebep]` – `widcore.ban`
* `/tempban [sebep]` – `widcore.tempban`
* `/unban ` – `widcore.unban`
* `/banlist` – `widcore.banlist`
* `/mute [sebep]` – `widcore.mute`
* `/tempmute [sebep]` – `widcore.tempmute`
* `/unmute ` – `widcore.unmute`
* `/mutelist` – `widcore.mutelist`
* `/kick [sebep]` – `widcore.kick`
* `/jail [sebep]` – `widcore.jail.use`
* `/unjail ` – `widcore.jail.remove`
* `/setjail ` – `widcore.jail.set`
* `/deljail ` – `widcore.jail.delete`
* `/freeze [süre]` – `widcore.freeze`
* `/unfreeze ` – `widcore.freeze`
**YÖNETİM**
* `/vanish [oyuncu]` – `widcore.vanish` (Görünmezleri görme: `widcore.vanish.see`)
* `/irp ` – `widcore.irp`
**IŞINLANMA**
* `/rtp [oyuncu] widcore.rtp`
* `(başkasına) widcore.rtp.other`
* `(ücretsiz kullanım) widcore.rtp.free`
* `(cooldown bypass) widcore.rtp.cooldown.bypass`
* `(özel cooldown süresi) widcore.rtp.cooldown.`
* `/tp ` – `widcore.tp`
* `/tp ` – `widcore.tp.other`
* `/tp ` – `widcore.tp.coords`
* `/tpall` – `widcore.tpall`
* `/tpa ` – `widcore.tpa.send`
* `/tpaaccept` – `widcore.tpa.accept`
* `/tpadeny` – `widcore.tpa.deny`
* `/tpatoggle` – `widcore.tpa.autoaccept`
* `/spawn` – `widcore.spawn`
* `/setspawn` – `widcore.setspawn`
* `/home [isim]` – `widcore.home.teleport`
* `/sethome ` – `widcore.home.create`
* `/delhome ` – `widcore.home.delete` (Limit: `widcore.home.limit.`)
* `/warp [isim]` – `widcore.warp`
* `/setwarp ` – `widcore.setwarp`
* `/delwarp ` – `widcore.delwarp`
* `/back` – `widcore.back`
* `/setvoidspawn` – `widcore.voidspawn.set`
* Pusula Işınlanma: `widcore.compass`
**OYUNCU**
* `/gm [oyuncu]` – `widcore.gamemode` (`widcore.gamemode.`, `widcore.gamemode.other`)
* `/fly [oyuncu]` – `widcore.fly` / `widcore.fly.other`
* `/god [oyuncu]` – `widcore.god` / `widcore.god.other`
* `/heal [oyuncu]` – `widcore.heal` / `widcore.heal.other`
* `/feed [oyuncu]` – `widcore.feed` / `widcore.feed.other`
* `/speed <0-10>` – `widcore.speed` / `widcore.speed.other`
* `/repair [all]` – `widcore.repair` / `widcore.repair.all`
* `/item [miktar]` – `widcore.i`
* `/ec [oyuncu]` – `widcore.enderchest` / `widcore.enderchest.other`
* `/invsee ` – `widcore.invsee`
* `/head` – `widcore.head`
**SOHBET**
* `/msg ` – `widcore.msg`
* `/r ` – `widcore.r`
* Paylaşım: `widcore.showitem`, `.i`,`.inv`, `.ec`
* ChatGuard: `widcore.chatguard.bypass`, `widcore.chatguard.alert`
**DÜNYA**
* `/wm create [biyom]` – `widcore.worldmanager.create`
* `/wm delete ` – `widcore.worldmanager.delete`
* `/wm load ` – `widcore.worldmanager.load`
* `/wm unload ` – `widcore.worldmanager.unload`
* `/wm tp ` – `widcore.worldmanager.tp`
* `/wm list` – `widcore.worldmanager.list`
* `/wm info [dünya]` – `widcore.worldmanager.info`
* `/wm settings` – `widcore.worldmanager.settings`
* `/wm setspawn` – `widcore.worldmanager.setspawn`
**EŞYA**
* `/itemedit name ` – `widcore.itemedit.name`
* `/ilore add|set|remove|clear` – `widcore.itemedit.lore`
* `/enchant ` – `widcore.itemedit.enchant`
* `/itemedit attribute add|remove|clear` – `widcore.itemedit.attribute`
* `/itemedit hide|hideall|show|showall` – `widcore.itemedit.hide`
* `/itemedit color add|clear` – `widcore.itemedit.color`
* `/itemedit unbreaking` – `widcore.itemedit.unbreaking`
* `/itemedit effect` – `widcore.itemedit.effect`
**EKONOMİ**
* `/eco ` – `widcore.eco.admin` (`widcore.eco.give`, `.set`, `.take`)
* `/pay ` – `widcore.pay`
* `/baltop` – `widcore.baltop`
**EĞLENCE**
* `/troll [tür]` – `widcore.troll`
* `/lightning [oyuncu]` – `widcore.lightning`
* `/fireball [güç]` – `widcore.fireball`
* `/fireballstick [güç]` – `widcore.fireball`
**DİĞER**
* Yasaklı eşya bypass: `widcore.banneditem.bypass`
* Özel komut kullanımı: `widcore.customcommand.`
### 📝 NOTLAR
* **aliases.yml:** Tüm komutları ve yetkileri özelleştirebileceğiniz dosya.
* **lang/*.yml:** Dil dosyaları.
* **modules//*.yml:** Modül ayarları.
—
🇺🇸 English Showcase / Features / Commands (Click to Expand)
### 🌟 FEATURES
* **ANNOUNCER:** Scheduled automatic announcements. Global/world-based, random/sequential.
* **ANTIMOBSPAWN:** Prevents specific mobs from spawning. Global or world-based.
* **BACK:** Teleport to the last death location.
* **BAN/TEMPBAN:** Permanent or temporary bans. Reason shortcuts, exempt players.
* **BANNED ITEMS:** Prevents specific items from being in the inventory.
* **CHAT FORMAT:** LuckPerms prefix/suffix, group-based formatting, PlaceholderAPI. [item]=item, [inv]=inventory, [ec]=enderchest sharing.
* **CHATGUARD:** Protection against spam, flood, ads, and banned words. Valid for chat, anvils, books, and signs.
* **COMPASS TELEPORT:** Compass Left Click = Teleport to targeted block (max 200 blocks).
* **CUSTOM COMMANDS:** Custom commands via config. MESSAGE, P_COMMAND, C_COMMAND.
* **ECONOMY:** Vault-based. eco (admin), pay (transfer), baltop (wealthy players GUI).
* **ENDERCHEST:** Open your own or others’ enderchest. Offline support.
* **FEED:** Restores player’s hunger.
* **FIREBALL:** Shoot fireballs. Adjustable power.
* **FIREBALL STICK:** Custom wand that shoots fireballs with left click.
* **FLY:** Toggles flight mode.
* **FREEZE:** Completely freezes the player. Disables movement and inventory.
* **GAMEMODE:** Change game modes. s/c/a/sp or 0/1/2/3.
* **GOD:** Invincibility mode. No damage, no hunger.
* **HEAL:** Restores player’s health.
* **HOME:** Personal home points. GUI menu, limit permissions, banned worlds. GTA5-style animation.
* **HEAD:** Allows the player to place the item in their hand on their head.
* **INVENTORY ROLLBACK:** Backup for death/join/leave/world change. Restore via GUI.
* **INVSEE:** View/edit other players’ inventories live. Offline support.
* **ITEM:** Gives specified item in specified quantity.
* **ITEMEDIT:** Item editing: name, lore, enchantments, attributes, hide, color, unbreaking. Effect GUI: add potion effects.
* **ITEM REMOVAL:** Timed cleanup of dropped items. Hologram countdown.
* **JAIL:** Region-based jail. Selection with golden axe + beacon. Timed/permanent.
* **JOINLEAVE:** Join/leave messages. Chat/title/action bar options.
* **KICK:** Kicks players from the server. Customized kick screen.
* **LIGHTNING:** Strikes lightning at target location or player.
* **MERGE EXPERIENCE ORBS:** Merges XP orbs to increase FPS.
* **MESSAGING (MSG/R):** Private messaging and quick reply.
* **MOBSTACKER:** Stacks mobs of the same type. Improves performance.
* **MOTD:** Customize server list appearance.
* **MUTE/TEMPMUTE:** Permanent or temporary muting.
* **REPAIR:** Repairs held item or entire inventory.
* **PLUGIN-HIDER:** Completely hides the server brand and plugins.
* **RTP:** It allows you to be randomly teleported around the world.
* **SHOW ITEM:** Share [item], [inv], [ec] in chat.
* **SPAWN:** Server spawn point. GTA5-style animation.
* **SPEED:** Sets walking or flying speed (0-10).
* **STACK DEATH DROPS:** Items dropped upon death collected into a single block.
* **TELEPORT:** tp, tpall, coordinate teleportation.
* **TPA:** Request-based teleportation. Warmup/cooldown, damage cancellation.
* **TROLL:** 4 types: mlg, rotate, moblook, creeperchest. GUI menu.
* **VANISH:** Total invisibility. Mobs cannot target, sounds hidden.
* **VOID SPAWN:** Teleports players who fall below Y=-64.
* **WARP:** Server-wide warp points. GTA5 animation support.
* **WORLDMANAGER [BETA]:** Create/Delete/Load/Unload worlds. Types: normal, flat, empty.
### 📋 COMMANDS AND PERMISSIONS
**MAIN**
* `/widcore reload` – `widcore.reload`
**PUNISHMENT**
* `/ban [reason]` – `widcore.ban`
* `/tempban [reason]` – `widcore.tempban`
* `/unban ` – `widcore.unban`
* `/banlist` – `widcore.banlist`
* `/mute [reason]` – `widcore.mute`
* `/tempmute [reason]` – `widcore.tempmute`
* `/unmute ` – `widcore.unmute`
* `/mutelist` – `widcore.mutelist`
* `/kick [reason]` – `widcore.kick`
* `/jail [reason]` – `widcore.jail.use`
* `/unjail ` – `widcore.jail.remove`
* `/setjail ` – `widcore.jail.set`
* `/deljail ` – `widcore.jail.delete`
* `/freeze [duration]` – `widcore.freeze`
* `/unfreeze ` – `widcore.freeze`
**MANAGEMENT**
* `/vanish [player]` – `widcore.vanish` (See vanished: `widcore.vanish.see`)
* `/irp ` – `widcore.irp`
**TELEPORT**
* `/rtp [player] widcore.rtp`
* `(for others) widcore.rtp.other`
* `(free usage) widcore.rtp.free`
* `(cooldown bypass) widcore.rtp.cooldown.bypass`
* `(custom cooldown duration) widcore.rtp.cooldown.`
* `/tp ` – `widcore.tp`
* `/tp ` – `widcore.tp.other`
* `/tp ` – `widcore.tp.coords`
* `/tpall` – `widcore.tpall`
* `/tpa ` – `widcore.tpa.send`
* `/tpaaccept` – `widcore.tpa.accept`
* `/tpadeny` – `widcore.tpa.deny`
* `/tpatoggle` – `widcore.tpa.autoaccept`
* `/spawn` – `widcore.spawn`
* `/setspawn` – `widcore.setspawn`
* `/home [name]` – `widcore.home.teleport`
* `/sethome ` – `widcore.home.create`
* `/delhome ` – `widcore.home.delete` (Limit: `widcore.home.limit.`)
* `/warp [name]` – `widcore.warp`
* `/setwarp ` – `widcore.setwarp`
* `/delwarp ` – `widcore.delwarp`
* `/back` – `widcore.back`
* `/setvoidspawn` – `widcore.voidspawn.set`
* Compass Teleport: `widcore.compass`
**PLAYER**
* `/gm [player]` – `widcore.gamemode` (`widcore.gamemode.`, `widcore.gamemode.other`)
* `/fly [player]` – `widcore.fly` / `widcore.fly.other`
* `/god [player]` – `widcore.god` / `widcore.god.other`
* `/heal [player]` – `widcore.heal` / `widcore.heal.other`
* `/feed [player]` – `widcore.feed` / `widcore.feed.other`
* `/speed <0-10>` – `widcore.speed` / `widcore.speed.other`
* `/repair [all]` – `widcore.repair` / `widcore.repair.all`
* `/item - [amount]` – `widcore.i`
* `/ec [player]` – `widcore.enderchest` / `widcore.enderchest.other`
* `/invsee ` – `widcore.invsee`
* `/head` – `widcore.head`
**CHAT**
* `/msg ` – `widcore.msg`
* `/r ` – `widcore.r`
* Sharing: `widcore.showitem`, `.i`,`.inv`, `.ec`
* ChatGuard: `widcore.chatguard.bypass`, `widcore.chatguard.alert`
**WORLD**
* `/wm create [biome]` – `widcore.worldmanager.create`
* `/wm delete ` – `widcore.worldmanager.delete`
* `/wm load ` – `widcore.worldmanager.load`
* `/wm unload ` – `widcore.worldmanager.unload`
* `/wm tp ` – `widcore.worldmanager.tp`
* `/wm list` – `widcore.worldmanager.list`
* `/wm info [world]` – `widcore.worldmanager.info`
* `/wm settings` – `widcore.worldmanager.settings`
* `/wm setspawn` – `widcore.worldmanager.setspawn`
**ITEM**
* `/itemedit name ` – `widcore.itemedit.name`
* `/ilore add|set|remove|clear` – `widcore.itemedit.lore`
* `/enchant ` – `widcore.itemedit.enchant`
* `/itemedit attribute add|remove|clear` – `widcore.itemedit.attribute`
* `/itemedit hide|hideall|show|showall` – `widcore.itemedit.hide`
* `/itemedit color add|clear` – `widcore.itemedit.color`
* `/itemedit unbreaking` – `widcore.itemedit.unbreaking`
* `/itemedit effect` – `widcore.itemedit.effect`
**ECONOMY**
* `/eco ` – `widcore.eco.admin` (`widcore.eco.give`, `.set`, `.take`)
* `/pay ` – `widcore.pay`
* `/baltop` – `widcore.baltop`
**FUN**
* `/troll [type]` – `widcore.troll`
* `/lightning [player]` – `widcore.lightning`
* `/fireball [power]` – `widcore.fireball`
* `/fireballstick [power]` – `widcore.fireball`
**OTHER**
* Banned item bypass: `widcore.banneditem.bypass`
* Custom command usage: `widcore.customcommand.`
### 📝 NOTES
* **aliases.yml:** Customize all commands and permissions.
* **lang/*.yml:** Language files.
* **modules//*.yml:** Module settings.