Yurushi

Quick rating

Yurushi

No reviews yet

Discord Integration Whitelist Mod for Fabric. Simplify your server access management.

Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
1.21.11-1.0.0
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Yurushi

Discord Integration Whitelist Mod for Fabric. Simplify your server access management.

Features

  • Discord Integration: Players request whitelist access via a Discord form (Modal).
  • One-Click Approval: Admins can approve or deny requests directly from Discord with a single button click.
  • Automated Communication:
    • Sends a DM to the player upon approval or denial.
    • Updates the original request message to reflect the decision.
    • Customizable Messages: Fully configurable text and embed styles via messages.toml.
    • Role-Based Access: Restrict whitelist management to specific Discord roles using whitelistRole.
    • Debug Tools: Visualize your embed configurations with /debug embeds.

Config

Configuration files are located in config/Yurushi/.

Yurushi.toml

Main plugin configuration.

Config Type Description
botToken String Your Discord Bot Token
adminChannelId String ID of the Discord text channel where requests are sent
whitelistRole List List of Role IDs allowed to approve/deny requests
Yurushi.toml
botToken = "YOUR_BOT_TOKEN_HERE"
adminChannelId = "123456789012345678"
whitelistRole = ["987654321098765432", "112233445566778899"]

messages.toml

Customize all bot messages, embeds, and button labels. Supports placeholders like {minecraft_username}, {reason}, etc. (Might not available in all messages).

messages.toml
[error]
no_permission = "❌ You don't have permission to perform this action."
server_unavailable = "❌ Server is not available. Please try again later."
unexpected = "❌ An unexpected error occurred."
admin_channel_not_found = "An error occurred. Please contact an administrator."

[button]
[button.approve]
label = "Approve"
success = "✅ Whitelist request for `{minecraft_username}` has been approved!\n**UUID:** `{uuid}`"
already_whitelisted = "⚠️ `{minecraft_username}` is already whitelisted on the server."
player_not_found = "❌ Player `{minecraft_username}` was not found on Mojang's servers.\nThis username might be incorrect or doesn't exist."
failed = "❌ Failed to whitelist `{minecraft_username}`.\nError: {error}"

[button.deny]
label = "Deny"
success = "Whitelist request for `{minecraft_username}` has been denied.\n**Reason:** {reason}"

[embed]
[embed.request]
title = "🕚 Whitelist Request"
footer = "User ID: {user_id}"
[embed.request.fields]
discord_user = "Discord User"
minecraft_username = "Minecraft Username"
description = "Description"
description_empty = "*No description provided*"

[embed.approved]
title = "✅ Whitelist Request - Approved"
footer = "You can now join the server!"
[embed.approved.fields]
approved_by = "Approved By"

[embed.already_whitelisted]
title = "⚠️ Whitelist Request - Already Whitelisted"
footer = "This player is already whitelisted."

[embed.denied]
title = "❌ Whitelist Request - Denied"
footer = "Please contact an administrator if you have questions."
[embed.denied.fields]
reason = "Reason"
denied_by = "Denied By"

[dm]
[dm.approved]
title = "✅ Whitelist Request Approved"
description = "Congratulations! Your whitelist request has been approved."

[dm.denied]
title = "❌ Whitelist Request Denied"
description = "Unfortunately, your whitelist request has been denied."

[modal]
[modal.register]
title = "Whitelist Registration"
success = "Your whitelist request has been submitted!"
[modal.register.inputs]
username_label = "Minecraft Username"
username_placeholder = "Enter your Minecraft username"
description_label = "Description (Optional)"
description_placeholder = "Tell us a bit about yourself or why you want to join..."

[modal.deny]
title = "Deny Whitelist Request"
[modal.deny.inputs]
reason_label = "Denial Reason"
reason_placeholder = "Provide a reason for denying the whitelist request..."
reason_empty = "*No reason provided*"

How to Use

Prerequisites

  • A Minecraft server running Fabric with the Yurushi mod installed.
  • A Discord Bot with the following:
    • Bot Token (from Discord Developer Portal)
    • Server Members Intent enabled (Privileged Gateway Intents)
    • Invited to your Discord server with applications.commands and bot scopes

Installation

  1. Download the mod JAR from Releases.
  2. Place it in your server's mods/ folder.
  3. Start the server once to generate default config files in config/Yurushi/.
  4. Stop the server and configure Yurushi.toml with your bot token and channel settings.
  5. Restart the server — the Discord bot will come online automatically.

Discord Bot Setup

  1. Go to Discord Developer Portal and create a new application.
  2. Navigate to BotReset Token to get your bot token.
  3. Enable Server Members Intent under Privileged Gateway Intents.
  4. Go to OAuth2URL Generator, select bot and Administrator scopes.
  5. Copy the generated URL and invite the bot to your server.
  6. Paste the bot token in Yurushi.toml (botToken).

Player Workflow

Players can request whitelist access directly from Discord:

  1. Use the /register slash command in any channel the bot can see.
  2. A modal will appear asking for:
    • Minecraft Username (required)
    • Description (optional) – introduce yourself or explain why you want to join.
  • After submitting, a confirmation message appears, and the request is sent to the admin channel.

Admin Workflow

Admins with the configured whitelistRole can manage requests:

  1. Whitelist requests appear in the configured adminChannelId with Approve and Deny buttons.
  2. Click Approve to:
    • Add the player to the Minecraft server whitelist.
    • Send a DM to the player notifying them of approval.
    • Update the request embed to show "Approved" status.
  • Click Deny to:
    • Open a modal to enter a denial reason.
    • Send a DM to the player with the reason.
    • Update the request embed to show "Denied" status.

Commands

Discord Slash Commands

Command Description
/register Opens the whitelist registration form for players
/debug embeds Preview all configured embed styles (Admin only)
/ping Check if the bot is online

Minecraft Commands

Command Permission Description
/yurushi reload yurushi.command.reload (OP Level 3+) Reload configuration files without restarting the server

Bug Reports & Suggestions

If you encounter any bugs or have suggestions for improvements, please open an issue on the GitHub Issues page.

Screenshots

Gallery

  • Whitelist request
    Whitelist request

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
CurseForge
Modrinth
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works