RetroAuth
# RetroAuth
– Adds authentication and skin fixes for b1.7.3
– Allows you to join servers with proper authentication and have modern minecraft skins
## Server Note
– This must be installed on both server and client for proper authentication.
Reply Mod
Adds a command that allows you to direct message the last player who sent a direct message to you.
**Completely Client Sided**, **Requires Fabric API on modern versions**
**Command Structure** – `/r `
# WARNING – Might not work on servers with chat decoration plugins
This mod targets players who play on vanilla or vanilla+ servers which do not offer additional chat features such as a `/r` command.
This mod is **NOT** guaranteed to work on every server, especially if the said server uses a chat related plugin. There is simply no way I can account account for every direct message format of every chat or nickname plugins.
***If you are experiencing any issues on a vanilla server, please report it over at the linked github page or in the linked discord***
# Pre-1.13.2 versions
All the versions of this mod that support versions below minecraft 1.13.2 uses [Ornithe](https://github.com/OrnitheMC). **Legacy Fabric IS NOT supported**
Redstone Multimeter Fabric
# Redstone Multimeter
[Redstone Multimeter](https://github.com/NarcolepticFrog/RedstoneMultimeter) 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.
Perspective Nametag
# Perspective Nametag
[](https://github.com/KKW557/perspectivenametag?tab=MIT-1-ov-file#readme)
[](https://github.com/KKW557/perspectivenametag/actions/workflows/build.yml)
[](https://github.com/KKW557/perspectivenametag/releases/latest)
[](https://modrinth.com/mod/perspectivenametag)
[](https://www.curseforge.com/minecraft/mc-mods/perspectivenametag)
A mod to show the player’s nametag in second/third person perspective.
## FAQ
### Forge/NeoForge?
For the **Forge**/**NeoForge** versions, this mod updates lazily.
### How to toggle nametag (since `1.2.0`)
Some servers may provide their own server-side implementation,
which can cause rendering conflicts with this mod.
To mitigate this,
you can add server addresses to a blacklist by listing them line-by-line in `config/perspectivenametag.server-blacklist.txt`.
“`txt
mc.example.com
localhost:12345
127.0.0.1
…
“`
For developers, `perspectivenametag-core` exposes an API that allows you to control when nametags are rendered.
See `icu.suc.kkw557.perspectivenametag.PerspectiveNametag` for details.
## License
This project is licensed under the [MIT License](LICENSE) © 2025 557.
Ornithe Standard Libraries
Ornithe Standard Libraries (OSL) provides tools for modding with Ornithe.
## Libraries
### Core API
The Core API provides common utilities used by other modules, such as an events system and registries.
### Branding API
This module patches the title screen with mod loader information in 16w05a and below, emulating what you would see in 16w05b and above. This is done by parsing the run args for the `versionType` option.
### Config API
The Config API provides a framework for building and storing mod configs.
### Entrypoints API
The Entrypoints API allows mod developers to submit entrypoints that are called before the game is initialized.
### Keybinds API
The keybinds API provides events for registering keybinds.
### Lifecycle Events API
The Lifecycle Events API provides events to track the lifecycle of the Minecraft client and server.
### Networking API
The Networking API provides a framework for client-server communication.
### Resource Loader API
The Resource Loader API allows mods to load their own resources into the game.
## Information for developers
Our [Ploceus gradle plugin](https://github.com/OrnitheMC/ploceus) provides helper methods for adding OSL dependencies to your projects:
“`groovy
dependencies {
…
ploceus.dependOsl(‘0.17.1’)
}
“`
You can also add dependencies on individual OSL modules:
“`groovy
dependencies {
…
ploceus.dependOslModule(‘0.17.1’, ‘core’)
ploceus.dependOslModule(‘0.17.1’, ‘entrypoints’)
}
“`
Freecam
# Freecam
A Freecam Mod for Ornithe 1.8.9
This freecam mod should be undetectable by servers, but this is not guarenteed.
Freecam lets you view the world as a spectator and detached ghost from your player.
## Keybinds
| Name | Description | Default Keybind |
| ————– | ———————— | ————— |
| Toggle Freecam | Enable / Disable Freecam | X |
## Requirements
– [Ornithe Standard Libraries](https://modrinth.com/mod/osl) (0.17.2+)
Tritium








—
An all-in-one optimization mod dedicated to improving client-side rendering performance and server-side stability.
This project is actively under development. Track progress at the [TODO List](https://github.com/CraftAmethyst/Tritium/blob/1.21/TODO.md).
Features
– **[All Versions]** Fast Language Switching: Dramatically speeds up language switching by intercepting resource bundle reloading
– **[Forge Only]** Fast Event System: Replaces generated classes with lambda constructors to accelerate event listener construction
– **[All Versions]** Leaf Culling: Ports OptiFine’s smart foliage rendering options
– **[All Versions]** Entity Stacking Optimization: Merges nearby dropped items and experience orbs when entity density is high, similar to Spigot’s optimization
– **[All Versions]** Chest Rendering Optimization: Replaces dynamic chest models with static block geometry (removes opening animations for better performance)
– **[All Versions]** Distant Entity Tick Reduction: Stops ticking entities and fluids that are far from the player
– **[All Versions]** Dynamic FPS: Automatically reduces framerate when the game window is unfocused (1 FPS) or minimized (pauses rendering)
– **[All Versions]** Memory Leak Fixes: Resolves various memory leaks that could cause crashes during extended gameplay
– **[All Versions]** GL Error Suppression: Eliminates spurious GL error log spam
– **[All Versions]** GPU Plus: Fixes video memory leaks and introduces new OpenGL 4+ features
– **[Forge Only]** Asynchronous World Saving: Makes world saving asynchronous to significantly improve save performance
– **[Forge Only]** Tech Mod Optimization: Improves performance of technical mods (e.g., GregTech, SFM, AE2), especially beneficial for tech-focused modpacks like ATM9
– **[Select Versions]** Vanilla Bug Fixes: Fixes vanilla bugs and backports fixes from newer versions
Supported Minecraft Versions
| Mod Loader | Supported Versions |
|————|——————–|
| NeoForge | 1.20.1, 1.21, 1.21.1 |
| Forge | 1.13.2, 1.19, 1.19.1, 1.19.2, 1.20, 1.20.1, 1.21, 1.21.1 |
| Fabric | 1.19, 1.19.1, 1.19.2, 1.20, 1.20.1, 1.21, 1.21.1 |
| Quilt | 1.19, 1.19.1, 1.19.2, 1.20, 1.20.1, 1.21 |
| Rift | 1.13.2 |
| Legacy Fabric | 1.13.x |
| Ornithe | 1.13.x |
> **Note:** Available features vary by Minecraft version.
> **Update Policy:** NeoForge and Fabric versions will be updated to support future Minecraft releases. Forge support will remain at 1.21.1 .
Dependencies
Install the required dependencies for your mod loader before installing Tritium:
| Mod Loader | Required Dependencies |
|————|———————–|
| NeoForge | Cloth Config |
| Forge | Cloth Config, Modern Mixins(Only 1.13.2) |
| Fabric | Cloth Config, ModMenu |
| Quilt | Cloth Config, ModMenu, QFAPI |
| Rift | Modern Mixins |
Bug Reports
If you encounter bugs or unexpected behavior, please submit an [Issue](https://github.com/CraftAmethyst/Tritium/issues) with:
– A clear description of the problem
– Crash logs (if applicable)
– Steps to reproduce the issue
Contributing
Contributions are welcome! If you have ideas for improvements or new features, feel free to submit a pull request.
If you find this project helpful, please consider starring the repository. Your support is greatly appreciated!
Contributors

OfftiFine
# OfftiFine
This mod restricts OptiFine’s network connections.
By default, all connections (telemetry, crash reporting, version checks, capes, etc.) are disabled. However, the capes function may be restored in the mod’s options.
Additionally, this mod fixes the FPS Limit resetting on each relaunch with OptiFine + OptiFabric on Ornithe.
This mod is built against java 17.
*The mod’s logo depicts the OptiFine icon below a disabled wifi icon which is sourced from https://lucide.dev*
NNBSP Fix
## NNBSP Fix
Fixes the NNBSP character in DateFormat outputs in Java 20+ as caused by the CLDR Unicode v42 update. This was fixed in 23w17a (1.20-alpha.23.17.a) though a font rendering revamp and was introduced in 11w49a (1.1-alpha.11.49.a), which, fun fact, was the same version that put the Save and Quit to Title button into title case.
Another way of fixing this would be to set the java property `-Djava.locale.providers=FALLBACK`, which is what I do for my speedrunning instances (`JRE` or `COMPAT` also work, but they are set to be removed in the future).
Supports Fabric 1.14-1.19.4, Legacy Fabric 1.3.1-1.13.2, and Ornithe 1.1-1.14.4.
i tested 11w49a and 23w16a (the extreme snapshots) and they work, so I have no reason to believe that any other snapshot won’t work (maybe really early Fabric ones if the intermediary wasn’t matched but other than that).
the code for this is maybe a little cursed
New NameTag Recipe
# New NameTag Recipe
## About mod
This mod is a backport for NameTag recipe of 26.1+ version of Minecraft. Player now can craft NameTag in the older version.
Like 26.1, with this mod, you just need **1 Iron/Copper/Gold Nugget** + **1 Paper** (**Crafting Shapeless**)
## About Update
This mod will have **”Deeper” Backport** soon to some **old** version, even some unpopular loader like **Ornithe, Legacy Fabric, …**. (Just plan, no version availabe for this)
## Bugs and issues
Report bugs/issues here: [Issues Report](https://github.com/break08/New-NameTag-Recipe/issues)