Eloncase / RainbowSixSiege-CSharp-API

Asynchronous c# api for rainbow six siege (r6sapi)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

R6SApi

R6SApi is an easy-to-use asynchronous API for Rainbow Six Siege, written in c#, forked from billy_yoyo. To use it you'll need use your ubisoft email and password.

As of 351c229 library should parse current endpoints automatically. That means if there is no significant changes it should be working after R6 updates.

Installation

Get it on Nuget

Documentation

TBA

Quick Example

using R6SiegeAPI;

static async Task MainAsync()
{
    var api = API.InitAPI(email, password, null);

    var player = await api.GetPlayer("Eloncase", Enums.Platform.UPLAY, Enums.UserSearchType.Name);
    var oper = await player.GetOperator("caveira");
    Console.WriteLine(oper.Kills);
}

TODO

  • examples

License

MIT

About

Asynchronous c# api for rainbow six siege (r6sapi)

License:Other


Languages

Language:C# 100.0%