RadiantConnect 6.2.2

dotnet add package RadiantConnect --version 6.2.2
NuGet\Install-Package RadiantConnect -Version 6.2.2
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="6.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RadiantConnect --version 6.2.2
#r "nuget: RadiantConnect, 6.2.2"
#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.
// Install RadiantConnect as a Cake Addin
#addin nuget:?package=RadiantConnect&version=6.2.2

// Install RadiantConnect as a Cake Tool
#tool nuget:?package=RadiantConnect&version=6.2.2

C# Support Server GitHub Nuget All Releases

Main Home Page

RadiantConnect Quickstart Guide

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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
6.2.2 96 3/28/2024
6.2.1 84 3/26/2024
6.2.0 96 3/22/2024
6.1.1 116 2/12/2024
6.1.0 100 2/9/2024
6.0.2 111 1/19/2024
6.0.1 93 1/18/2024
6.0.0 87 1/18/2024
5.0.1 101 1/14/2024
5.0.0 98 1/13/2024
4.0.0 99 1/10/2024
3.0.0 121 1/1/2024
2.0.3 104 12/31/2023
2.0.2 118 12/31/2023
2.0.1 107 12/31/2023
2.0.0 119 12/31/2023
1.0.0 99 12/31/2023

Required update, All old updates are broken

Fixed ValorantNet internal to use correct client version header