Skip to content

How To

Info

This is an Unofficial and fan-made project. Please refrain from seeking support from Riot or Valorant.

How to get local PUUID

Invoke from the initiator

C#
1
2
3
Initiator init = new Initiator();

string clientId = init.Client.UserId;

Local HttpMethods

C#
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
public enum HttpMethod
{
    Get,
    Post, 
    Put, 
    Delete,
    Patch,
    Options,
    Head
}