WeGuardian
๐ก Updated this year๐ผ๏ธ Gallery (11 images)
๐ Analysis
- ๐ 1.0% endorsement rate
- ๐ #156 of 1452 bukkit mods in this game by downloads
๐ About This Mod
# ๐ก๏ธ WeGuardian <p align="center"> <img src="https://img.shields.io/badge/Minecraft-1.21+-brightgreen" alt="Minecraft Version"> <img src="https://img.shields.io/badge/Java-21+-orange" alt="Java Version"> <img src="https://img.shields.io/badge/Paper-Supported-blue" alt="Paper Support"> <img src="https://img.shields.io/badge/Folia-Supported-purple" alt="Folia Support"> <img src="https://img.shields.io/badge/Version-2.0-red" alt="Plugin Version"> </p> <p align="center"> <b>Professional Punishment Management System for Minecraft Servers</b><br> <i>by WeThink</i> </p> --- ## โจ Features ### ๐จ Punishment System - **Ban & TempBan** - Permanently or temporarily ban players - **IP Ban & TempIP Ban** - Ban players by IP address with automatic IP resolution - **Mute & TempMute** - Silence players permanently or temporarily - **IP Mute & TempIP Mute** - IP-based muting system - **Kick** - Instantly remove players from the server ### ๐ฎ Interactive GUI - **Punishment GUI** - Beautiful and intuitive punishment selection interface - **Duration Selector** - Easy-to-use duration selection with presets - **History Viewer** - Browse punishment history with pagination ### ๐ Database Support - **SQLite** - Zero-configuration local storage (default) - **MySQL** - Scale to larger servers with MySQL support - **HikariCP** - High-performance connection pooling - **Caffeine Caching** - Lightning-fast data retrieval ### ๐ Web Dashboard - Built-in web panel for remote management - REST API for custom integrations - Configurable branding and appearance ### ๐ Discord Integration - Webhook logging for all punishments - Batched messages to avoid rate limits - Beautiful embed formatting ### โก Performance - **Folia Support** - Full compatibility with Folia servers - **Async Operations** - Non-blocking database operations - **Lazy GUI Initialization** - Optimized GUI performance --- ## ๐ฅ Installation 1. Download the latest `WeGuardian.jar` 2. Place it in your server's `plugins` folder 3. Restart your server 4. Configure `plugins/WeGuardian/config.yml` --- ## ๐ Commands | Command | Description | Permission | |---------|-------------|------------| | `/ban <player> ` | Permanently ban a player | `weguardian.ban` | | `/tempban <player> <duration> ` | Temporarily ban a player | `weguardian.tempban` | | `/unban <player>` | Unban a player | `weguardian.unban` | | `/banip <player> ` | IP ban a player | `weguardian.banip` | | `/tempbanip <player> <duration> ` | Temp IP ban a player | `weguardian.tempbanip` | | `/unbanip <player>` | Unban a player's IP | `weguardian.unbanip` | | `/mute <player> ` | Permanently mute a player | `weguardian.mute` | | `/tempmute <player> <duration> ` | Temporarily mute a player | `weguardian.tempmute` | | `/unmute <player>` | Unmute a player | `weguardian.unmute` | | `/muteip <player> ` | IP mute a player | `weguardian.muteip` | | `/tempmuteip <player> <duration> ` | Temp IP mute a player | `weguardian.tempmuteip` | | `/unmuteip <player>` | Unmute a player's IP | `weguardian.unmuteip` | | `/kick <player> ` | Kick a player | `weguardian.kick` | | `/punish <player>` | Open punishment GUI | `weguardian.punish` | | `/history <player>` | View punishment history | `weguardian.history` | | `/weguardian reload` | Reload configuration | `weguardian.admin` | --- ## ๐ Permissions | Permission | Description | Default | |------------|-------------|---------| | `weguardian.staff` | All staff permissions | OP | | `weguardian.admin` | Admin commands (reload) | OP | | `weguardian.bypass` | Bypass all punishments | false | --- ## โฑ๏ธ Duration Format Durations support the following formats: | Unit | Example | Description | |------|---------|-------------| | `s` | `30s` | Seconds | | `m` | `30m` | Minutes | | `h` | `6h` | Hours | | `d` | `7d` | Days | | `w` | `2w` | Weeks | | `M` | `1M` | Months | | `y` | `1y` | Years | **Examples:** `1h`, `6h`, `1d`, `7d`, `30d`, `90d` --- ## โ๏ธ Configuration ### Database (SQLite - Default) ```yaml database: type: "sqlite" sqlite: file: "punishments.db" ``` ### Database (MySQL) ```yaml database: type: "mysql" mysql: host: "localhost" port: 3306 database: "weguardian" username: "root" password: "password" ``` ### Discord Webhook ```yaml discord: enabled: true webhook-url: "YOUR_WEBHOOK_URL" batch-interval-seconds: 5 ``` ### Web Dashboard ```yaml web-dashboard: enabled: true host: "0.0.0.0" port: 8080 admin-api-key: "YOUR_SECURE_KEY" ``` --- ## ๐ ๏ธ Requirements - **Minecraft Server:** Paper 1.21+ or Folia - **Java:** 21 or higher --- ## ๐ Dependencies - (https://papermc.io/) - Server API - (https://github.com/TechnicallyCoded/FoliaLib) - Folia compatibility - (https://github.com/ben-manes/caffeine) - Caching - (https://github.com/brettwooldridge/HikariCP) - Connection pooling - (https://githu
# ๐ก๏ธ WeGuardian
Professional Punishment Management System for Minecraft Servers
by WeThink
## โจ Features
### ๐จ Punishment System - Ban & TempBan - Permanently or temporarily ban players - IP Ban & TempIP Ban - Ban players by IP address with automatic IP resolution - Mute & TempMute - Silence players permanently or temporarily - IP Mute & TempIP Mute - IP-based muting system - Kick - Instantly remove players from the server
### ๐ฎ Interactive GUI - Punishment GUI - Beautiful and intuitive punishment selection interface - Duration Selector - Easy-to-use duration selection with presets - History Viewer - Browse punishment history with pagination
### ๐ Database Support - SQLite - Zero-configuration local storage (default) - MySQL - Scale to larger servers with MySQL support - HikariCP - High-performance connection pooling - Caffeine Caching - Lightning-fast data retrieval
### ๐ Web Dashboard - Built-in web panel for remote management - REST API for custom integrations - Configurable branding and appearance
### ๐ Discord Integration - Webhook logging for all punishments - Batched messages to avoid rate limits - Beautiful embed formatting
### โก Performance - Folia Support - Full compatibility with Folia servers - Async Operations - Non-blocking database operations - Lazy GUI Initialization - Optimized GUI performance
## ๐ฅ Installation
1. Download the latest `WeGuardian.jar` 2. Place it in your server's `plugins` folder 3. Restart your server 4. Configure `plugins/WeGuardian/config.yml`
## ๐ Commands
| Command | Description | Permission |
|---------|-------------|------------|
| `/ban
## ๐ Permissions
| Permission | Description | Default | |------------|-------------|---------| | `weguardian.staff` | All staff permissions | OP | | `weguardian.admin` | Admin commands (reload) | OP | | `weguardian.bypass` | Bypass all punishments | false |
## โฑ๏ธ Duration Format
Durations support the following formats:
| Unit | Example | Description | |------|---------|-------------| | `s` | `30s` | Seconds | | `m` | `30m` | Minutes | | `h` | `6h` | Hours | | `d` | `7d` | Days | | `w` | `2w` | Weeks | | `M` | `1M` | Months | | `y` | `1y` | Years |
Examples: `1h`, `6h`, `1d`, `7d`, `30d`, `90d`
## โ๏ธ Configuration
### Database (SQLite - Default) ```yaml database: type: "sqlite" sqlite: file: "punishments.db" ```
### Database (MySQL) ```yaml database: type: "mysql" mysql: host: "localhost" port: 3306 database: "weguardian" username: "root" password: "password" ```
### Discord Webhook ```yaml discord: enabled: true webhook-url: "YOUR_WEBHOOK_URL" batch-interval-seconds: 5 ```
### Web Dashboard ```yaml web-dashboard: enabled: true host: "0. 0. 0. 0" port: 8080 admin-api-key: "YOUR_SECURE_KEY" ```
## ๐ ๏ธ Requirements
- Minecraft Server: Paper 1. 21+ or Folia
- Java: 21 or higher
## ๐ Dependencies
- (https://papermc.io/) - Server API
- (https://github.com/TechnicallyCoded/FoliaLib) - Folia compatibility
- (https://github.com/ben-manes/caffeine) - Caching
- (https://github.com/brettwooldridge/HikariCP) - Connection pooling
- (https://githu
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- WeThink25
- Version
- 2.4
- Downloads
- 930
- Endorsements
- 9
- Category
- bukkit
- Created
- 9/15/2025
- Updated
- 12/25/2025
- Game Versions
- 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
- Tags
- equipment, management, optimization
๐ง 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 WeGuardian support?
The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.
What is the latest version of WeGuardian?
Version 2.4, published 2025-12-25 with 930 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await










