remaster glass

EN / **Remaster Glass** is a resource pack that improves the look of glass textures in Minecraft. It features cleaner, more transparent glass with subtle borders — perfect for modern and clean builds.

**Features:**
– Improved glass textures with cleaner look
– More transparent appearance
– Stays true to the vanilla Minecraft style
– Lightweight — no performance impact
– Works with Java Edition
– Resolution: 16x

Perfect for players who want better-looking glass without changing the overall vanilla aesthetic.

RU / Remaster Glass — ресурспак, который улучшает текстуры стекла в Minecraft. Более чистое и прозрачное стекло с тонкими границами — идеально для современных и аккуратных построек.
Особенности:

Улучшенные текстуры стекла с более чистым видом
Более прозрачный внешний вид
Сохраняет ванильный стиль Minecraft
Лёгкий — не влияет на производительность
Работает с Java Edition
Разрешение: 16x

Идеально для игроков, которые хотят красивое стекло, не меняя общую ванильную эстетику.

RelishAuth

# RelishAuth
**Advanced Authentication System for Velocity Proxy Servers 🔐**

![RelishAuthBanner](https://cdn.modrinth.com/data/cached_images/fc12d02a41dd8c2bb482e33b024ea2ecee029f1d_0.webp)

*Secure your Velocity network with advanced authentication, Discord integration, and premium account support*

## 🌟 Features

### 🔐 **Multi-Method Authentication**
– **Password Authentication**: Traditional secure password system with Argon2 hashing
– **Discord Integration**: Link Discord accounts for seamless authentication
– **Premium Auto-Login**: Automatic authentication for premium Minecraft accounts
– **Hybrid Mode**: Combine password + Discord for maximum security

### 🛡️ **Advanced Security**
– **Session Management**: Configurable session durations (0-1 hour)
– **IP Validation**: Optional IP-based session validation
– **Rate Limiting**: Protection against brute force attacks
– **Premium Verification**: Real-time Mojang API validation
– **Bedrock Support**: Compatible with Floodgate for cross-platform play

### 🤖 **Discord Bot Integration**
– **Real-time Verification**: Instant Discord DM verification
– **Join Notifications**: Security alerts when someone joins with your account
– **Account Management**: Change passwords, manage sessions via Discord
– **Admin Commands**: Full server management through Discord slash commands
– **Rich Embeds**: Beautiful, informative Discord messages

### 🌐 **Multi-Language Support**
– **English** and **Arabic** language packs included
– **Customizable Messages**: Full message customization support

### 💾 **Flexible Database Support**
– **SQLite**: Zero-configuration local database (default)
– **MySQL/MariaDB**: Network database support for multi-server setups
– **PostgreSQL**: Enterprise-grade database with advanced features
– **Connection Pooling**: High-performance HikariCP integration

## 📸 Screenshots
### Discord Integration
![Discord Verification](https://cdn.modrinth.com/data/8BqplnPe/images/675ea2b97cc4779f296b18a9a99b53ef0873f498.png)

*Seamless Discord verification with interactive buttons*

### Admin Dashboard
![Admin Commands](https://cdn.modrinth.com/data/8BqplnPe/images/b5c48e8bfb565f8249bdf5f7899b9053dee89437_350.webp)

*Powerful admin tools accessible through Discord slash commands*

### Security Notifications
![Security Alerts](https://cdn.modrinth.com/data/8BqplnPe/images/a72bcd22b40d6872158b43b3944323d25bee506c_350.webp)

*Real-time security notifications keep your account safe*

### Optimized Limbo world
![Limbo world](https://cdn.modrinth.com/data/8BqplnPe/images/7256b19ae90fd624265c0c7b315913d905027b65_350.webp)

## 🚀 Installation

### Prerequisites
– **Velocity Proxy** 3.4.0 or higher
– **Java** 21 or higher
– **LimboAPI** plugin (required dependency)
– **Discord Bot** (optional, for Discord features)

### Step 1: Download and Install
1. Download plugin JAR file
2. Place the JAR file in your Velocity `plugins/` folder
3. Install LimboAPI Place it in the same folder
4. Restart your Velocity proxy

### Step 2: Initial Configuration
1. Navigate to `plugins/relishauth/`
2. Edit `config.yml` to configure your authentication method
3. Set up your database connection
4. Configure Discord bot (optional but recommended)

### Step 3: Discord Bot Setup (Optional)
1. Create a Discord application at Discord Developer Portal
2. Create a bot and copy the token
3. Add the token to your `config.yml`
4. Invite the bot to your Discord server with appropriate permissions

## ⚙️ Configuration

### Basic Configuration

“`yaml
# Choose your authentication method
authentication:
method: “password” # Options: password, discord
premium-auto-login: true
allow-bedrock-players: true

# Session management
session:
duration: “5m” # Options: 0, 1m, 5m, 15m, 30m, 1h
allow-different-locations: true

# Database setup
database:
type: “sqlite” # Options: sqlite, mysql, mariadb, postgresql
sqlite:
path: “data.db”
“`

### Authentication Methods

#### 🔑 Password Authentication
Perfect for traditional servers wanting secure password-based auth:

“`yaml
authentication:
method: “password”
password:
min-length: 6
max-length: 32
hashing: “argon2” # Secure password hashing
“`

**How it works:**
1. New players create a password when first joining
2. Returning players enter their password to authenticate
3. Sessions are saved based on configured duration
4. Optional Discord linking for additional features

![Password Authentication](https://cdn.modrinth.com/data/8BqplnPe/images/482f84bec2457504c15d6740797fb288cca91ba3_350.webp)

#### 💬 Discord Authentication
Ideal for Discord-centric communities:

“`yaml
authentication:
method: “discord”
discord:
bot-token: “YOUR_BOT_TOKEN”
server-id: “YOUR_DISCORD_SERVER_ID”
“`

**How it works:**
1. Players enter their Discord username in-game
2. Bot sends verification DM with interactive buttons
3. Players click “Verify” to authenticate
4. Account is permanently linked to Discord

![Discord Authentication](https://cdn.modrinth.com/data/8BqplnPe/images/7256b19ae90fd624265c0c7b315913d905027b65_350.webp)
![DM Verify Message](https://cdn.modrinth.com/data/8BqplnPe/images/675ea2b97cc4779f296b18a9a99b53ef0873f498.png)

#### 🏆 Premium Auto-Login
Streamlined experience for premium players:

“`yaml
authentication:
premium-auto-login: true
allow-premium-username-impersonation: false # Security: prevent impersonation
“`

**How it works:**
1. Premium accounts are automatically verified via Mojang API
2. No password or Discord verification required
3. Instant server access for legitimate premium players
4. Cracked clients cannot impersonate premium accounts

![Premium Auto-Login](https://cdn.modrinth.com/data/8BqplnPe/images/84f7afdd2df2b2fe607e3b457fe10e1c78f91beb.gif)

### Security Configuration

“`yaml
security:
authentication-timeout: 300 # 5 minutes to authenticate
password-attempts:
max-attempts: 3
lock-duration: 15 # Minutes
premium:
verification-timeout: 5
api-url: “https://api.mojang.com/users/profiles/minecraft/”
“`

### Limbo World Customization

“`yaml
customization:
limbo:
dimension: “THE_END” # OVERWORLD, NETHER, THE_END
gamemode: “SPECTATOR”
spawn:
x: 0
y: 64
z: 0
block-movement: true
“`

## 🎮 Commands

### Player Commands

| Command | Description | Usage |
|———|————-|——-|
| `/ra password ` | Set/change password | `/ra password mypass123 mypass123` |
| `/ra discord ` | Link Discord account | `/ra discord john_doe` |
| `/ra logout` | Clear all sessions | `/ra logout` |
| `/ra session [duration]` | Set session duration | `/ra session 30m` |
| `/ra notify ` | Toggle join notifications | `/ra notify on` |
| `/ra unlink` | Unlink Discord account | `/ra unlink` |
| `/ra info` | View account information | `/ra info` |

### Admin Commands

| Command | Description | Usage |
|———|————-|——-|
| `/ra reload` | Reload configuration | `/ra reload` |
| `/ra info ` | View player information | `/ra info PlayerName` |
| `/ra unlink ` | Unlink player’s Discord | `/ra unlink PlayerName` |
| `/ra block ` | Block username from IP | `/ra block Griefer 192.168.1.1` |
| `/ra unblock ` | Unblock username from IP | `/ra unblock Griefer 192.168.1.1` |
| `/ra clearblocks ` | Clear all stored blocks for username | `/ra clearblocks Griefer` |
| `/ra setpassword ` | Admin set a player’s password | `/ra setpassword PlayerName NewPass NewPass` |
| `/ra resetpassword [length]` | Admin reset password (temp password) | `/ra resetpassword PlayerName 16` |

## 🤖 Discord Bot Integration

### Setup Process

1. **Create Discord Application**
– Go to Discord Developer Portal
– Click “New Application” and give it a name
– Navigate to “Bot” section and create a bot

2. **Configure Bot Permissions**
Required permissions:
– Send Messages
– Use Slash Commands
– Manage Roles (for linked role)
– Read Message History

3. **Invite Bot to Server**
“`
https://discord.com/api/oauth2/authorize?client_id=YOUR_BOT_ID&permissions=268435456&scope=bot%20applications.commands
“`

4. **Configure in RelishAuth**
“`yaml
discord:
bot-token: “YOUR_BOT_TOKEN”
server-id: “YOUR_DISCORD_SERVER_ID”
linked-role-id: “ROLE_ID_FOR_LINKED_USERS”
“`

### Discord Slash Commands

| Command | Description | Permission |
|———|————-|————|
| `/link` | Instructions for linking account | Everyone |
| `/session [duration]` | Set session duration | Linked users |
| `/notifications [toggle]` | Toggle join notifications | Linked users |
| `/info [player]` | View account information | Admin |
| `/kick ` | Kick player from server | Admin |
| `/unlink ` | Unlink player’s account | Admin |
| `/block ` | Block username from IP | Admin |
| `/unblock ` | Unblock username from IP | Admin |
| `/clearblocks ` | Clear all stored blocks for username | Admin |
| `/setpassword ` | Admin set a player’s password | Admin |
| `/resetpassword [length]` | Admin reset password (temp password) | Admin |
| `/reload` | Reload plugin configuration | Admin |


## 📞 **Support & Links**

![Discord](https://discord.gg/jDr2KZcGXk)
![Issues](https://github.com/iM5LB/relishauth/issues)
![GitHub](https://github.com/im5lb/relishauth)

**Made with ❤️ by M5LB**

Reimagined GUI (Dark)

# Reimagined GUI – Dark

![Unique Dark on Modrinth](https://modrinth.com/resourcepack/reimaginedguidark)
![Unique Dark on CurseForge](https://www.curseforge.com/minecraft/texture-packs/reimaginedguidark)
![amongstreality on Patreon](https://www.patreon.com/c/AmongstReality)
![amongstreality on Buy Me a Coffee](https://buymeacoffee.com/amongstreality)

Replaces every container in the game, changes hotbar, hearts and armor icons.

> If you’re looking for the Light version you can find it here Reimagined GUI – Light

## You can support me and my projects here

![Patreon](https://www.patreon.com/c/AmongstReality)
![Buy Me a Coffee](https://buymeacoffee.com/amongstreality)

## Mod support

– Backslot
– Capes
– Curios
– EMI
– Inventorio
– MidnightControls
– ModMenu
– No Chat Reports
– Vanilla Notebook
– Shulker Box Tooltip
– Metal Barrels

Terms of use

Copyright © Reimagined GUI – Dark

Author AmongstReality

Links to pages of the author on different platforms:

– Patreon
– BuyMeACoffee
– CurseForge
– Modrinth
– Planet Minecraft

When you can use my assets:

– In public Modpacks on Modrinth/CurseForge.
– If you want to add mod support as an addon for the resource pack. If you do that, you have to add clear credit that
includes links to the original resource pack.
– Any private modifications of the original resource pack.

When you can **NOT** use my assets:

– Distribution on the Bedrock Marketplace.
– Locking behind a paywall (e.g. Patreon).
– Distribution of original/modified assets on any platforms.

Links to the resource pack’s pages on different platforms:

– CurseForge
– Modrinth

Reimagined Paintings

Minecraft paintings reimagined, but based on the original rl paintings by Kristoffer Zetterstrand

![example](https://cdn.modrinth.com/data/tEsDJrx1/images/175c0a7d7d5ec8d7ecf8642a3c08ea285fd29f93.png)

redule d’où cobax

redule d’ou cobax is a red recolor of a texture pack made by Akooa and myself made for 1.8.9 pvp.

It is based arround the vanilla game textures while still adding some fresh details to it making it more pleasant to play with 🙂

It is mainly made for gamemodes like bedwars and skywars but can be used all arround 1.8.9.

The main goal of this pack is to make the overall pvp experience fill more smooth by shortening swords as well as adding a custom sky as well as a sound pack.

/! The Sky and the soundpack ONLY WORKS WITH Optifine, while you can use the pack without optifine, the sky as well as the soundpack wont work without it /!

Here are some in game screenshots to showcase more of the pack :

![redule 1](https://cdn.modrinth.com/data/cached_images/31ad0b1f4754c87c62973ec8c49e35f103490890.jpeg)

![redule 2](https://cdn.modrinth.com/data/cached_images/9a4c94396c5c64952f50075f56fcbd5ce090f742.jpeg)

![redule 3](https://cdn.modrinth.com/data/cached_images/94513bff310b0bc991b0275389af5915679a7693.jpeg)

Sidenote : Feel free to join the discord if there is any issues with the Texture pack (Rendering Issues, Crashes, Textures not working properly, Sky glitches and/or not rendering…) It helps us greatly improve the work we do and provide the best for you all !

Reduce the Vignette Effect – Less intense Shadow Borders/Corners

Reduces the Vignette Effect (The dark corners effect of the screen).

## New Effect:
![Reduced Vignette](https://cdn.modrinth.com/data/cached_images/c456442053c5e4735e8bda7273d427e28eb65425.png)

## Vanilla Effect:
![Vanilla Vignette](https://cdn.modrinth.com/data/cached_images/8cff97b4edd92334e3f4be13524a9d3584e8f62d.png)

Redstone Multimeter Fabric

# Redstone Multimeter

Redstone Multimeter is a LiteMod for 1.12 by NarcolepticFrog. It is an easy to use, intuitive redstone debugging tool. Since LiteLoader never updated past 1.12.2, the mod is stuck in that version. Redstone Multimeter Fabric is a Fabric port of the original mod, which makes it compatible with the newest versions of Minecraft!

# Features

Redstone Multimeter allows you to track a myriad of redstone related events by placing virtual “meters” in the world. This makes it incredibly easy to see when blocks are e.g. powered or moved, and the order in which they do so. An overview of logged events is displayed in a HUD in the top left corner of the screen. This HUD has three components:
– The meter list: Each meter gets its own row and simply displays its name here.
– The primary event viewer: This is a graph showing logs of a 60 gt period. It usually shows logs of the past 60 gt, meaning you will see them scroll by in real-time. You can use the hotkeys to pause the HUD and scroll through the logs at your own pace.
– The secondary event viewer: This graph is usually hidden, but when the HUD is paused, it will appear next to the primary event viewer. It shows the order of events within the selected tick.

Meters are organized into meter groups. A meter group is a collection of meters and a unique name. You can have multiple meter groups, but the HUD will only display the logs of a single meter group. To subscribe to a meter group, use the `/meter group ` command. You can get a list of all meter groups by using the `/meter listGroups` command.

## Commands
* `/metergroup list`: query a list of all available meter groups.
* `/metergroup subscribe`: subscribe to your default meter group (which you can configure in the Options Menu).
* `/metergroup subscribe `: subscribe to the meter group with the given name, or create it if it does not already exist.
* `/metergroup unsubscribe`: unsubscribe from this metergroup.
* `/metergroup private`*: query whether this meter group is private or public.
* `/metergroup private [true|false]`*: set this meter group to private or public.
* `/metergroup members list`*: query a list of all members of this meter group.
* `/metergroup members add `*: add a player as a member of this meter group.
* `/metergroup members remove `*: remove a player as a member of this meter group.
* `/metergroup members clear`*: remove all members from this meter group.
* `/metergroup clear`: remove all meters from this metergroup.

* these subcommands are only available to you if you are the owner of this meter group

## Keybindings
– `Toggle Meter` (default `M`): Adds or removes a meter at the block you are looking at. Holding `ctrl` makes the meter immovable.
– `Reset Meter` (default `B`): Resets the properties of the meter you are looking at.
– `Pause Meters` (default `N`): Pauses HUD.
– `Step Forward` (default `.` ): If paused, moves the display 1 tick ahead in time. Holding `ctrl` moves 10 ticks.
– `Step Backward` (default `,`): If paused, moves the display 1 tick back in time. Holding `ctrl` moves 10 ticks.
– `Toggle HUD` (default `H`): toggles the HUD.
– `Scroll HUD` (default `alt`): scrolling while holding this key steps forward or backward through the HUD.
– `Open Multimeter Screen` (default `G`): opens the Multimeter screen.
– `Open Meter Controls` (default `I`): opens the meter controls of the meter you are looking at.
– `Open Options Menu` (default `O`): opens the Options Menu.
– `View Tick Phase Tree` (default `U`): opens the Tick Phase Tree screen.
– `Print Logs To File` (default `P`): toggles the printer.

Redstone Compass

Replaces the off-centered needle in the compass with a redstone-like display.

![Example](https://cdn.modrinth.com/data/cached_images/f8bd5e87767adb2884b6f3faeb692129eaaac7e9_0.webp)

There is also textures for versions 1.16.5 and below.

![Other Example](https://cdn.modrinth.com/data/cached_images/a9ffa97469047428523d78f687c3e83384a9da72_0.webp)

This resourcepack brings no changes to the functionality of compasses.

Red FPS

# Red FPS Texture Pack

The **Red FPS** PvP Texture Pack is a sleek, performance-optimized resource pack designed to enhance your Minecraft PvP experience while boosting your frame rates. Centered around a modern red aesthetic, it features smooth, simplified textures that reduce lag without compromising on visual quality.

## 📦 **Features**

– ✨ **Custom Particles**
– 🗡️ **Custom Weapon Textures**
– 🔥 **Red Low Fire**
– 🏹 **Colored Bow & Crossbow Stages**
– 📋 **Transparent GUIs**
– 🔮 **No Enchantment Animation**
– 🚀 **FPS Boost**
– 🧱 **Custom Blocks**

![](https://bisecthosting.com/nikinok)

**Game Version:** 1.7 – 1.8.9
**Optimized:** FPS BOOST ✔️

Red Xp / 1.6.1 – 1.20.x

**Replaces XP Bar, Xp Orb, Xp Text and XP Bottle with red color.**

Russian

**Заменяет XP Bar, Xp Orb, Xp Text и XP Bottle на красный цвет.**

![example](https://cdn.modrinth.com/data/cached_images/d1500383b456ce516b4230feb7bb0d86c831a8e1.png)

**Versions: _1.6.1 – 1.20.x_**