BrawlMatic.Tools.BrawlEvents 1.2.1

dotnet add package BrawlMatic.Tools.BrawlEvents --version 1.2.1
NuGet\Install-Package BrawlMatic.Tools.BrawlEvents -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BrawlMatic.Tools.BrawlEvents" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BrawlMatic.Tools.BrawlEvents --version 1.2.1
#r "nuget: BrawlMatic.Tools.BrawlEvents, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BrawlMatic.Tools.BrawlEvents as a Cake Addin
#addin nuget:?package=BrawlMatic.Tools.BrawlEvents&version=1.2.1

// Install BrawlMatic.Tools.BrawlEvents as a Cake Tool
#tool nuget:?package=BrawlMatic.Tools.BrawlEvents&version=1.2.1

BrawlEvents

A powerful tracker for Brawl Stars that provides insights on battles, such as brawler usage and win rate.

Installation

Install using the Package Manager Console in Visual Studio.

Install-Package BrawlMatic.Tools.BrawlEvents

Dependencies

Usage

var client = new BrawlEventsClient("<token>");
    
var battles = await client.GetBattlesAsync(4500); //Gather data from 4500 recent battles around the game
var stats = Utils.GetBrawlerStatsFromBattles(battles, 16000000); //Parse stats from those previously fetched battles

var stat = stats[0];

Console.WriteLine($"Brawler ID {stat.BrawlerId} has {stat.GetUseRate(battles.Where(b => b.Map.Id == stat.MapId).Count())}% use rate, and {stat.GetWinRate()}% win rate in the map ID {stat.MapId}.");
//Brawler ID 16000020 has 3.87% use rate, and 31.03% win rate in the map ID 15000051.

Console.WriteLine($"Brawler ID {stat.BrawlerId} has been used {stat.UseCount} times and have won {stat.WinCount} times in the map ID {stat.MapId}.");
//Brawler ID 16000020 has been used 73 times and have won 27 times in the map ID 15000051.

Support

Join our Discord server if you need any assistance.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 448 2/11/2022
1.2.0 388 2/11/2022
1.1.0 388 2/10/2022
1.0.0 404 2/7/2022