Skip to content

tibiasolutions/sharp-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.");
}