Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 622 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 622 Bytes

SharpParser NuGet

A C# crawler module to get tibia.com parsed data.

Installation

Download via Nuget on Package Manager Console:

PM> Install-Package TibiaSolutions.SharpParser

Basic Usage

Player

var player = new Player("Kharsek");
if (player.Data["exists"])
{
    Console.Write(player.Data["name"]);
}
else
{
    Console.Write("Character does not exist.");
}