How To
Info
This is an Unofficial and fan-made project. Please refrain from seeking support from Riot or Valorant.
Using the Initiator Class
The Initiator
class in RadiantConnect is used to set up and manage connections to the Valorant client. Below are examples of how to use the different constructors available in the Initiator
class.
Constructor: Initiator(RSOAuth rsoAuth)
This constructor initializes the Initiator
with an RSOAuth
object, which is used for authentication.
Use Case: Use this constructor when you have an RSOAuth
object ready for authentication.
Different ways to gather an RSOAuth: Authentication
C# | |
---|---|
1 2 3 4 5 6 |
|
Constructor: Initiator(bool ignoreVpn = true)
This constructor initializes the Initiator
and checks if the Valorant client is ready. It can optionally ignore VPN checks.
Use Case: Use this constructor when you want to initialize without an RSOAuth
object and optionally bypass VPN checks.
Note: To use this method Valorant must be running
C# | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Checking if Valorant is Running
To check if Valorant is currently running, you can use the ClientIsReady
method.
C# | |
---|---|
1 2 |
|
Local HttpMethods
C# | |
---|---|
1 2 3 4 5 6 7 8 9 10 |
|
Notes
- Ensure you have the necessary permissions and configurations set up for using these methods.
- The examples provided are for illustrative purposes and may require adjustments based on your specific use case and environment.