Skip to content

RadiantConnect: MiscEvents

MiscEvents provides a collection of general-purpose, miscellaneous in-game events. Currently, it includes events such as a session heartbeat, which can be used to track ongoing game activity.

Danger

The events only work while the valorant game is in focus, being tabbed out will not work.


Overview

Access miscellaneous events through initiator.GameEvents (or your MiscEvents instance). These events generally provide signals about gameplay or session status.


Events


OnHeartbeat

Description: Triggered periodically to indicate that the game session is active.
Event Data: None — this event does not pass any parameters.


Handling Events

Subscribe to miscellaneous events like this:

C#
1
2
3
4
initiator.GameEvents.Misc.OnHeartbeat += () =>
{
    Console.WriteLine("Session heartbeat received!");
};