Warning
As of 12/29/2025 CDT, you can't authenticate to Rise's auth server without a valid HWID and username. The (99% sure it's the last, probably unless auth turns off again) version of this repository is going to be 0.1.0.
0.1.0 updates S2CPacketAuthenticationFinish, so it properly parses auth finish packets that aren't successful:
- moved
pi,maxPitch, andserverTimeMSinto a data class namedAuthenticatedOnlyData - replaced all of those with a single, nullable field named
aod(of typeAuthenticatedOnlyData?)
This is a breaking change for anything dependent on those fields (probably no one uses them, they are just there for completeness)
RIP Auth-less Rise, ~10/12/2025 to 12/29/2025 This lasted a REALLY long time... But hey, at least I had some fun out of it! (only spamming IRC, but it was funny)
lets you connect to Rise auth servers, with proper credentials.
See Example.kt or JavaExample.java.
- Add JitPack to your repos
maven { url = uri("https://jitpack.io") }- Add the dependency
// check for the latest version, this isn't always updated!
implementation("com.github.Sigma-Skidder-Team:Rise:0.1.0")- Add JitPack to your repos
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>- Add the dependency
<dependency>
<groupId>com.github.Sigma-Skidder-Team</groupId>
<artifactId>Rise</artifactId>
<version>0.1.0</version>
</dependency>

