Skip to content

Native c++ modding for MCBE 1.20.71.1 for building client side mods

License

Notifications You must be signed in to change notification settings

FrederoxDev/Amethyst

Repository files navigation

Image

Project Amethyst
Discord GitHub Downloads (all assets, all releases)

Project Amethyst is an open source-project for building client-side mods for Minecraft Bedrock 1.20.71.1, client-side mods are able to stretch past the limitations of addons and have full control over the game such as using Minecraft's input system, creating your own user interfaces, changing vanilla functionality, and more. Please consider starring ⭐ the repository, doing this takes a significant amount of work.


Mods built with Amethyst

image image

Better Inventory is an inventory improvement mod for Minecraft Bedrock edition, version 1.20.71.1. It adds in a shulker box preview, as well as the ability to see extra information about other items, like its identifier, namespace, durability and aux id.


Before Zoom After Zoom
image image

A small mod which adds in an "Optifine" like zoom into the game.

Using the API for other projects

To link AmethystAPI with another mod, we use an environment variable %amethyst_src% to point to the cloned repository. Here is a quick list of commands to clone Amethyst into the Documents folder and setup the environment variable automatically.

powershell
$destination = Join-Path $env:USERPROFILE "Documents/Amethyst"
git clone https://github.com/FrederoxDev/Amethyst.git $destination
[System.Environment]::SetEnvironmentVariable("amethyst_src", $destination, "User")