- Support Bot x86 / x64 / ARM64 ( Not Tested )
Known Bug:
- IP-based authentication wouldn't work / scramble all the time
Sample Code:
using System;
using System.Management;
using PandaKeyAPI;
class Program
{
static void Main()
{
string identifier = "pandadevkit"; //Replace this with your identifier
bool Continue = true;
PandaKeyAPI.KeySystemModule KeyAPI = new KeySystemModule();
while (Continue)
{
KeyAPI.DebugMode = true; //(Default: false) Disable this option will activate some Anti Debug Features
Console.Write("Key: ");
string key = Console.ReadLine();
if (key == "stop")
{
Continue = false;
break;
}
if (key == "getkey")
{
string GetKeyURL = KeyAPI.GetKey(identifier);
Console.WriteLine("Copy the URL: " + GetKeyURL);
}
else
{
Console.WriteLine("Authenticate (Regular): " + KeyAPI.VerifyKey(identifier, key, false).ToString());
Console.WriteLine("Authenticate (Premium): " + KeyAPI.VerifyKey(identifier, key, true).ToString());
}
}
}
}