Back to modpacks
Adrenaline project artwork

Modrinth · Minecraft modpack

Adrenaline

A lightweight, open-source performance modpack for Fabric

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Adrenaline release should I use?

Updated 8 days ago
Latest stable file 26.4.2+mc26.2.fabric
Game version 26.2
Loader Fabric 0.19.3

26.4.2+mc26.2.fabric is a complete pack release for 26.2 with Fabric 0.19.3. Install it as its own launcher instance. If the creator publishes a separate server file, make sure it names this exact pack release. 28 mods in this pack file.

Pack setup

How should I set up Adrenaline for players and a server?

Use 26.4.2+mc26.2.fabric as the pack version. Install the pack as its own launcher instance. The creator’s listing does not name a separate server file, so check the release notes before setting up a dedicated server. Do not upload the ordinary client folder blindly.

Client instance Install 26.4.2+mc26.2.fabric
Dedicated server setup Match 26.4.2+mc26.2.fabric
Pack loader Fabric 0.19.3

A pack is a matched client and server setup, not one mod with an install-side label. Keep its release, loader, manifest and overrides together.

Referenced mods 28
Client only 11
Server only 2
Not labelled 15

These numbers come from the pack file you chose. “Not labelled” means we don’t know which side it belongs on—not that it is safe everywhere. The file count is not a RAM estimate.

What are the server requirements for Adrenaline?

26.4.2+mc26.2.fabric. Change the pack release and its contents or setup may change too.

28 mods in this pack file

The selected pack release is 26.4.2+mc26.2.fabric. That file is for Minecraft 26.2 with Fabric 0.19.3. It contains 28 mod projects. The creator’s listing does not name a separate server file. Check their notes before using one, and do not upload an ordinary client folder or rebuild the pack mod by mod. A file count cannot tell us the right RAM, CPU or storage; size the server for the players and world you actually run.

About this project

What kind of pack is Adrenaline?

Adrenaline is a client-side or server-side modpack, developed for Fabric, comprised of the best combination of mods (e.g. Sodium and Lithium, along with many more) that significantly improves rendering performance, logic performance, memory usage, and more - all without compromising on the game's vanilla looks and features!

It is designed to be simple and not include any quality-of-life mods, along with not including redundant performance mods. Because of this simplicity, the modpack is compatible with a very wide range of devices and can be updated to the latest versions very quickly. Want more features? No problem! Adrenaline serves as a great foundation for performance - simply add your favorite mods on top.

For the list of mods that are included, see this wiki page. Adrenaline can be installed on both clients and servers, so this list tells you what is installed depending on the environment.

Available for Fabric Chat with us on Discord Available on GitHub

📥 Installation Guide

Please be sure to read Sodium's Driver Compatibility section on the wiki before installing Adrenaline. It contains some important instructions on preventing crashes and other performance issues.

If you would like to install the modpack, go to this page on the SkywardMC website. You can install the modpack with a third party launcher or our standalone installer. After you install, you can figure out how to tweak things to give greater optimizations in the post-install section of the wiki. This includes procedures such as increasing your allocated memory and tweaking your game settings for your device.

After installing the modpack, you can easily add your favorite mods so long as they are compatible with the Minecraft version you are playing on. The wiki also has some recommendations on possibly improving performance further with other mods that are not suitable to be included in Adrenaline by default.

Installing Adrenaline on a server

Adrenaline also optionally functions server-side! We now use Modrinth's mrpack environment feature to install the proper mods for the correct environment. Client-side mods that are part of Adrenaline will not be installed through these methods. The server portion of this modpack was previously known as Adrenaserver.

🏷️ Install using Aternos

You can get a low-power, free server at Aternos. However, it is often a bit slow on vanilla Minecraft without any performance patches. Aternos supports installing Adrenaline by going to Software -> Change -> Modpacks -> Modrinth -> Adrenaline, which will speed up your server by quite a lot without affecting vanilla behavior.

📦 Install using mrpack-install

Download mrpack-install through GitHub releases (or your distro's package if it has one) and take a look at the commands on the README. In Adrenaline's case, to install in your server you would run:

mrpack-install adrenaline [optional version number]
🐋 Install using Docker Compose

It's a good idea to have some knowledge on using Docker before doing this.

  1. Make sure you have Docker Engine installed properly according to the Docker docs
  2. Create a new directory
  3. Place the contents below in a file called docker-compose.yml. This Compose file also contains some other server tweaks meant for performance, such as disabling sync-chunk-writes, reducing render and simulation distance, and more
  4. Run docker compose up -d in that directory

For any other information, you can read through the Docker Minecraft Server documentation.

services:
  mc:
    image: itzg/minecraft-server
    tty: true
    stdin_open: true
    ports:
      - "25565:25565"
    environment:
      EULA: "TRUE"
      # Adrenaline and other mods
      MOD_PLATFORM: MODRINTH
      MODRINTH_DOWNLOAD_DEPENDENCIES: required
      MODRINTH_MODPACK: adrenaline # this installs the latest version of Adrenaline, you can also use a specific MR link to a version
      MODRINTH_PROJECTS: spark, chunky # comma separated list of extra mods
      # Server properties
      VIEW_DISTANCE: 8
      SIMULATION_DISTANCE: 5
      SYNC_CHUNK_WRITES: false # having this set to false will significantly improve performance but may cause desync issues and (extremely rare) data corruption. set to true if you don't have a backup system
    volumes:
      # Attach the relative directory 'data' to the container's /data path
      - ./data:/data
✨ Install using mcman

mcman is a tool for managing the mods/plugins/configurations of a Minecraft server. First, install mcman from releases. To import Adrenaline while initializing a server, use this command:

mcman init --mrpack mr:adrenaline

After initializing and importing the mrpack, run mcman build to build the server into the server/ directory, from which you can call cd server && sh start.sh or cd server && call start.bat. For more information, check out mcman's docs.

💿 Install using mrpack4server

See the mrpack4server Git repository for installation info. modpack-info.json:

{
	"project_id": "adrenaline",
	"version_id": "version id or name"
}
🧙 Install using packwiz-installer

Before doing any of this, be sure to have a backup of the server in case anything goes wrong.

packwiz-installer is a useful tool that lets you automatically install and update a modpack through the pack.toml file of that pack.

Some server hosts may let you set a command that runs before the server actually starts. It's called a pre-launch command. I can't exactly help if you are using an external server provider as many don't support pre-launch commands or require you to supply your own jar file that will run the command.

First, you need to install packwiz-installer-bootstrap from here. After that, move it to the same folder as your server's Fabric loader jar. This will usually be the root of the server.

You may change the MC version of the modpack (available versions only).

java -jar packwiz-installer-bootstrap.jar -g -s server https://raw.githack.com/skywardmc/adrenaline/dist/versions/fabric/1.21.1/pack.toml

If you are running this server through a batch file or shell script, you can add this command before your server's launch command and it should work just fine.

Having trouble? Check out the packwiz wiki and, if that doesn't help, ask in the packwiz Discord server.

⭐ Features

🚀 Major performance improvement

Adrenaline aims to significantly improve rendering and game logic performance, along with memory and hardware usage, without compromising on the game's looks or features in any way. This is done with various optimization mods that are actively tested for stability and improvement. Some mods are also pre-configured. Adrenaline wouldn't exist without projects like Sodium, so I advise you to donate to mod authors and contributors if you can.

For the list of performance mods that are included, see this wiki page. Adrenaline can be installed on both clients and servers, so this list tells you what is installed depending on the environment.

🪶 Lightweight

I only pick the combination of mods that work best with eachother, and don't include performance mods that aren't necessary or often break compatibility with other mods or device hardware. I also don't include any quality of life mods in the pack for the sole purpose of keeping it simple and flexible. This simplicity allows you to very easily build your own modpacks based on Adrenaline, or simply install Adrenaline and play with your favorite mods.

⚙️ Source-available

All mods in Adrenaline are either open-source or source-available, which means you can view the code of mods and see exactly what they are doing. Adrenaline is also available as packwiz projects on GitHub so that you can easily view what's being changed, contribute if you would like to, or fork the modpack to create your own project. If you would like to view the mods shipped with Adrenaline, simply look at the dependencies in the Modrinth page or look in the Git repository.

✅ Hardware Compatibility

For Hardware Compatibility information, see the corresponding section in Sodium's Modrinth description.

🐛 How to Report Issues

Experiencing bugs, crashes, or other issues? Feel free to open an issue on the issue tracker. Be sure to include necessary information like your hardware/software (e.g. GPU and CPU, modpack version and OS) so that it's easier for us to find issues and resolve them.

❓ Frequently Asked Questions

For a few frequently asked questions, along with tons of other information, consider visiting the wiki. It has a few other helpful resources that I suggest you read, such as troubleshooting info and more. This wiki is often updated with new information.

🍉 Sponsor

Need a fast, reliable Minecraft server? Feel free to use my code devin for 25% off your first month of any server from Bisect Hosting, supporting me in the process. Click this banner for more information. You can also setup Adrenaline to improve your server's optimization while still allowing vanilla clients to join.

Project description from Modrinth.

Mods in 26.4.2+mc26.2.fabric

Open any mod on Modpacks.ch to check its files and dependencies.

asynclogger-2.2.1+26.1.2-fabric.jar SHA-1 e5efc67b67907cbd157e6895a81bc7555c24f5cf · Modrinth version MiNRI6LE · Project link unavailable Client only
bbe-fabric-1.3.8-beta.1+mc26.2.jar SHA-1 ec08648cdda68dc05bf8866289c046ddfefb09a2 · Modrinth version Sr2VjbpG · Project link unavailable Client only
c2me-fabric-mc26.2-0.4.2-alpha.0.29.jar SHA-1 79408044584b07f091e610ce475e3f03e6214e39 · Modrinth version sdcwKuxX · Project link unavailable Side not labelled
cloth-config-26.2.155.jar SHA-1 babcf16dbd15e09d326e21ffe85ab3f7d843ef9e · Modrinth version Nv3xnWXd · Project link unavailable Side not labelled
ConfigManager-fabric-26.1_26.2-1.1.3.jar SHA-1 ce2d31f3cb6815fe83c742326430af8dd9f6a479 · Modrinth version W4C08wBC · Project link unavailable Side not labelled
CrashAssistant-fabric-26.2-1.11.11.jar SHA-1 96e34ffd8f9649ada81f93058b42a331634799db · Modrinth version ageTkUqN · Project link unavailable Client only
cull-fewer-leaves-1.1.2+26.1-fabric.jar SHA-1 0b603a240e2b1f424ef37562ebbe830b07008b30 · Modrinth version jIEsEM7M · Project link unavailable Client only
dynamic-fps-3.11.9+minecraft-26.2.0-fabric.jar SHA-1 e8cd9e4fbc6d42091faffc873b0801f1189ed6a5 · Modrinth version pC2JjFw1 · Project link unavailable Client only
entityculling-fabric-1.10.5-mc26.2.jar SHA-1 f66f9d8cbb1f76466aaf45e46fb11b18207e3aef · Modrinth version iiF6U3Ne · Project link unavailable Client only
fabric-api-0.156.0+26.2.jar SHA-1 d96e0d9ef8ea3604fac4ca7495d7c6148f3ac816 · Modrinth version 3gT0I5vt · Project link unavailable Side not labelled
fabric-language-kotlin-1.13.13+kotlin.2.4.10.jar SHA-1 620cb137a9dc69ce86f3114f19d9eedab16366f5 · Modrinth version bdhiINYC · Project link unavailable Side not labelled
ferritecore-9.0.0-fabric.jar SHA-1 eac76ff0f3753422c61b2c44487d0d195d88d4bc · Modrinth version d5ddUdiB · Project link unavailable Side not labelled
fzzy_config-0.7.6+26.2.jar SHA-1 7ac79a06b302ea72ac029b2f2df1e3930714b256 · Modrinth version EQSFgLYw · Project link unavailable Side not labelled
ImmediatelyFast-Fabric-1.16.2+26.2.jar SHA-1 2d1cd27b0b570f908b665c02a35b49381b4c5ec1 · Modrinth version uJHxuQxy · Project link unavailable Client only
Ixeris-4.6.1+26.2-fabric.jar SHA-1 e3151b0b6376d8d66bb0d6c3374b7ef90546817e · Modrinth version 6I2BEXfJ · Project link unavailable Client only
krypton-0.3.1.jar SHA-1 c83ed92c0f9f8523d7e6096151e74222fea91e96 · Modrinth version 5WeL0Nkz · Project link unavailable Server only
lithium-fabric-0.25.2+mc26.2.jar SHA-1 3bcc94183d7068395de08915fd5fce8d199aaa50 · Modrinth version UPNexAfy · Project link unavailable Side not labelled
modernfix-5.27.19-build.1.jar SHA-1 77b073d56b7be0d11cf915bd0e764463ee22dcea · Modrinth version TUWH6NZu · Project link unavailable Side not labelled
modmenu-20.0.1.jar SHA-1 8562dee49eae1a6bdd14b026be1b300aedb5ce0f · Modrinth version njXb639R · Project link unavailable Client only
particle_core-0.3.3+26.2.jar SHA-1 47c472f02c4f9eebc22e1590c02549b6be921292 · Modrinth version VFv6uQKM · Project link unavailable Client only
placeholder-api-3.1.0-beta.1+26.2.jar SHA-1 99b57ccc1d4323c4ef71887828dac25ce4ce2103 · Modrinth version NDqH16LT · Project link unavailable Side not labelled
ResourcefulConfig-5.0.0.jar SHA-1 e605b530843171786da8f837b4fae728b4d8fb07 · Modrinth version RqoPv70U · Project link unavailable Side not labelled
ScalableLux-fabric-0.3.0-alpha.0.3-all.jar SHA-1 d3637cc2fe15761ca66070e5916f17c80f03ba51 · Modrinth version EKLUURiy · Project link unavailable Side not labelled
servercore-fabric-1.5.19+26.2.jar SHA-1 43eda9e44e32e0e736ada0ff125f83cb87cbd59a · Modrinth version edrtnY9v · Project link unavailable Side not labelled
sodium-fabric-0.9.1+mc26.2.jar SHA-1 14f3388694fa77f870d28262f74562de67eabcbe · Modrinth version 2Yom1N68 · Project link unavailable Client only
structure_layout_optimizer-1.1.4+26.1-fabric.jar SHA-1 4a0fc84879fe358bdfd395af9238e14950dca748 · Modrinth version JwbecFqq · Project link unavailable Side not labelled
vmp-fabric-mc26.2-0.2.0+beta.7.236-all.jar SHA-1 dcf1295db267f7b519ecdd7d1c9499910c7e6fc0 · Modrinth version d6FfpWFI · Project link unavailable Server only
zfastnoise-1.1.0-beta.3+26.2.jar SHA-1 e9505796190b1f62c33d80ef03089d7b5fa8686b · Modrinth version QBcjDrhr · Project link unavailable Side not labelled

Pick your setup

Adrenaline by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

35 available setups

Showing the newest 12 of 26 game versions. Older files are in the list below.

Made local changes? Try them in a copied instance before touching a world you care about.

Recent files

Adrenaline versions and loaders

771 of 771 releases match

Looking for an older file? The official Modrinth project page is in Resources.