RadiantConnect 9.3.0

Additional Details

Please upgrade to latest version, 9.4.* and below have critical bugs and need major revision

There is a newer version of this package available.
See the version list below for details.
dotnet add package RadiantConnect --version 9.3.0
                    
NuGet\Install-Package RadiantConnect -Version 9.3.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RadiantConnect" Version="9.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RadiantConnect" Version="9.3.0" />
                    
Directory.Packages.props
<PackageReference Include="RadiantConnect" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RadiantConnect --version 9.3.0
                    
#r "nuget: RadiantConnect, 9.3.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=RadiantConnect&version=9.3.0
                    
Install RadiantConnect as a Cake Addin
#tool nuget:?package=RadiantConnect&version=9.3.0
                    
Install RadiantConnect as a Cake Tool

C# Support Server GitHub Nuget All Releases

Main Home Page

RadiantConnect Quickstart Guide

Credits

Huge Credits molenzwiebel for his Deceive code, helping make MITM Connection

Step 1: Download RadiantConnect from NuGet

Get started by downloading the RadiantConnect package from NuGet. You can find the package here.

dotnet add package RadiantConnect

Step 2: Initialize RadiantConnect

Initialize the RadiantConnect library by creating an instance of the Initiator class.

// Initialize RadiantConnect
Initiator Init = new Initiator();

Step 3: Hook Desired Events

Hook into the events related to the game queue to respond to various states.

// Hook into Queue events
Init.GameEvents.Queue.OnEnteredQueue += _ => {
    Debug.WriteLine("Queue Entered");
};

Init.GameEvents.Queue.OnLeftQueue += _ => {
    Debug.WriteLine("Queue Left");
};

Init.GameEvents.Queue.OnQueueChanged += queueChangeType => {
    Debug.WriteLine($"Queue Changed to: {queueChangeType}");
};

Step 4: Use Desired API Calls

Utilize the RadiantConnect API to make calls that suit your application needs. In this example, we fetch a player's MMR asynchronously.

// Fetch Player MMR asynchronously
PlayerMMR? playerMMR = await Init.Endpoints.PvpEndpoints.FetchPlayerMMRAsync(Init.ExternalSystem.ClientData.UserId);

Debug.WriteLine($"Player MMR: {playerMMR}");

Need Support?

If you have any questions, issues, or need assistance, feel free to join our Discord server. Our community is here to help!

Join our Discord Community

Feel free to explore additional API calls and events provided by RadiantConnect to enhance the functionality of your integration.


This quickstart guide provides a simple walkthrough to get you started with RadiantConnect. Refer to the detailed documentation for a comprehensive understanding of available features and customization options. Happy coding!

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.5.6 130 15 days ago
9.5.4 141 22 days ago
9.5.3 88 23 days ago
9.5.1 455 a month ago
9.5.0 456 a month ago
9.4.0 332 a month ago
9.3.0 197 a month ago 9.3.0 is deprecated because it is no longer maintained and has critical bugs.
9.2.0 169 3 months ago 9.2.0 is deprecated because it is no longer maintained and has critical bugs.
9.1.0 170 5 months ago 9.1.0 is deprecated because it is no longer maintained and has critical bugs.
9.0.2 191 7 months ago 9.0.2 is deprecated because it is no longer maintained and has critical bugs.
9.0.1 196 8 months ago 9.0.1 is deprecated because it is no longer maintained and has critical bugs.
9.0.0 177 8 months ago 9.0.0 is deprecated because it is no longer maintained and has critical bugs.
8.0.1 151 9 months ago 8.0.1 is deprecated because it is no longer maintained and has critical bugs.
8.0.0 141 9 months ago 8.0.0 is deprecated because it is no longer maintained and has critical bugs.
7.0.0 190 5/9/2024 7.0.0 is deprecated because it is no longer maintained and has critical bugs.
6.2.2 213 3/28/2024 6.2.2 is deprecated because it is no longer maintained and has critical bugs.
6.2.1 128 3/26/2024 6.2.1 is deprecated because it has critical bugs.
6.2.0 135 3/22/2024 6.2.0 is deprecated because it has critical bugs.
6.1.1 160 2/12/2024 6.1.1 is deprecated because it has critical bugs.
6.1.0 147 2/9/2024 6.1.0 is deprecated because it has critical bugs.
6.0.2 144 1/19/2024 6.0.2 is deprecated because it has critical bugs.
6.0.1 139 1/18/2024 6.0.1 is deprecated because it has critical bugs.
6.0.0 119 1/18/2024 6.0.0 is deprecated because it has critical bugs.
5.0.1 147 1/14/2024 5.0.1 is deprecated because it has critical bugs.
5.0.0 142 1/13/2024 5.0.0 is deprecated because it has critical bugs.
4.0.0 129 1/10/2024 4.0.0 is deprecated because it has critical bugs.
3.0.0 165 1/1/2024 3.0.0 is deprecated because it has critical bugs.
2.0.3 132 12/31/2023 2.0.3 is deprecated because it has critical bugs.
2.0.2 159 12/31/2023 2.0.2 is deprecated because it has critical bugs.
2.0.1 152 12/31/2023 2.0.1 is deprecated because it has critical bugs.
2.0.0 160 12/31/2023 2.0.0 is deprecated because it has critical bugs.
1.0.0 126 12/31/2023 1.0.0 is deprecated because it has critical bugs.

Massive overhaul and feature additions

* Now forcing x64 Windows target, will look into adding linux support in the future for server usage.
* Giving this, x86 programs will no longer be supported and maintaned please update your targetting.
* Old methods will now be labelled obsolete redirecting to new versions
* All Auth methods have been updated and improved
* Storefront V3 is now supported

-Deprecated quite a few items that have been 'holding back' progress while trying to maintain compatibility