Project goals:
- Suggest an example with base classes for the interaction between c # and xenforo
- Stay true to the C# spirit, through idiomatic language usage
- Outstanding - New functions can easily be added
- .NET 4.5.2
- RestSharp simple REST and HTTP API Client for .NET
- html-agility-pack An agile HTML parser that builds a read / write DOM and supports plain XPATH or XSLT
- Connect
- Analyse thread with blacklist word
- Analyse recent posts for each profile with blacklist word
internal class BotConfig
{
//Xenforo credentials
public static string Pseudo = "";
public static string Password = "";
public static string Token;
//Percent with Blacklist word to be reported
public static int MaxPercentBlacklistWord = 70;
//Blacklist Word
public static List<string> BlackListWord = new List<string>()
{
"Merci",
"merci",
"partage",
"Partage"
};
public static List<Leecher> Leechers = new List<Leecher>();
}
XenBot is licensed under the very permissive MIT license. Any submodules or dependencies may be under different licenses.