Compatibility
Minecraft: Java Edition
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details

The convergence stirs, Drifter.
Explore a world of dragons, bosses, and ancient magic, brought to life by 300+ handpicked mods. Choose your class, master powerful abilities, and carve your own path to glory in this epic fantasy adventure.
Forge your adventure with 20+ different Origins and 10+ different classes! Choose your Deity and use their bestowed power!
Disclaimer
Convergence is in its alpha stage, meaning there may be bugs and many changes will occur. Please report any bugs you encounter on the GitHub page, or consider joining the Discord server to discuss the future of the modpack with other players!
Recommended Java Arguments and Explaination
-XX:+UseG1GC -Dsun.rmi.dgc.server.gcInterval=2147483646 -XX:+DisableExplicitGC -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
-XX:+UseG1GC
The Garbage Collector. This frees up unused memory periodically while Java is running.
-Dsun.rmi.dgc.server.gcInterval=2147483646
Makes it so it only executes the Garbage Collector after a set time, rather than the default per minute.
-XX:+DisableExplicitGC
This disables any mods that uses custom Garbage Collector. Since we will be using more specific settings, having these enabled is redundent and will slow down your game.
-XX:+UnlockExperimentalVMOptions
Unlocks experimental options.
-XX:G1NewSizePercent=20 -XX:G1ReservePercent=20
Informs Garbage Collector to put aside 20% of the heap seperate, where new objects will be allocated.
-XX:MaxGCPauseMillis=50
Informs Garbage Collector to not stop for more than 50 milliseconds while garbage collecting. 50 milliseconds is 1 server tick.
-XX:G1HeapRegionSize=32M
Informs Garbage Collector to allocate it's garbage collection in units of 32 M, rather than the default 16 M. This is because chunk data is normally over 8 M in size, and if it remains on the default value of 16, it will treat all chunk data as garbage and thus triggers the Garbage Collector.
FAQ
-
Q. Is this modpack multiplayer-friendly?
-
A. Yes! In fact it is encouraged to play on a server with others and work together to achieve something greater.
-
Q. Is there a Wiki or documentation?
-
A. Not yet. It is not a priority at the moment, but it is something I work on in spare time.