-
XMPP MITM Integration: @molenzwiebel | Decieve
-
Get Version From Executable: @floxay | get_client_version.py
-
Riot API Documentaiton: @techchrism | Valorant API Docs
-
And can not stress this enough, the nice people at Valorant App Developer Discord for assisting all the time.
Get started by downloading the RadiantConnect package from NuGet. You can find the package here.
dotnet add package RadiantConnect
Initialize the RadiantConnect library by creating an instance of the Initiator
class.
// Initialize RadiantConnect
Initiator Init = new Initiator();
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}");
};
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}");
If you have any questions, issues, or need assistance, feel free to join our Discord server. Our community is here to help!
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!