Compatibility
Minecraft: Java Edition
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Vanilla Plus
A simple modpack meant to be compatible with vanilla clients/servers, but has various performance improvements, controller support, and shader compatibility.
Performance
With the modpack I am able to load into a ~2 gigabyte save file in ~7 seconds. Vanilla took ~12 Seconds using the same save file.
As far as frame rate goes I went from ~120 fps in vanilla to ~140 fps with the modpack without shaders.
There should be some performance benefits on the server side of things as well I'll try and remember to compare the difference at some point.
Usage
Client
To use on a client use the integrated modrinth downloader on prism launcher or download the .mrpack and open it using prism launcher or whatever launcher you prefer as long as it has modrinth support.
Server
Before you continue with the server installation it does require Docker or podman If there's enough demand I might make a script to run the server that doesn't involve containers.
You can run it using docker run -dit -v /path/for/world:/Minecraft/server/world -p 25565:25565 ghcr.io/nathan-r-wood/vanilla-plus-mc:latest
The default ram ussage of the server is set to 4G if you want to change the amount of ram the server can use add -e RAM=5G
or -e RAM=3000M
to the docker run command so it looks something like this docker run -dit -v /path/for/world:/Minecraft/server/world -e RAM=5G -p 25565:25565 ghcr.io/nathan-r-wood/vanilla-plus-mc:latest
If you want consistent ops or server properties you'll have to add a ops.json file or a server.properties file on the host somewhere and link the to the container with a start command that looks something like this docker run -dit -v /path/for/world:/Minecraft/server/world -v /path/for/ops.json:/Minecraft/server/ops.json -p 25565:25565 ghcr.io/nathan-r-wood/vanilla-plus-mc:latest
Good luck have fun and hopefully these instructions are good enough.