static string CreateZendoGame() { Zendo z = new Zendo(); ClanServer cs = new ClanServer(); return(z.CreateNewGame("Testing Clan", "WildfireXIII", cs.Sha256Hash("testing"), "Testing game")); }
static string GrantEnlightenment() { Zendo z = new Zendo(); ClanServer cs = new ClanServer(); return(z.GrantEnlightenment("g_Zendo_636182346200902367", "The Martindale Clan", "WildfireXIII", cs.Sha256Hash("testing"))); }
static string GetGameBoard() { Zendo z = new Zendo(); ClanServer cs = new ClanServer(); return(z.GetUserBoard("g_Zendo_636178417101133079", "Testing Clan", "WildfireXIII", cs.Sha256Hash("testing"))); }
static string GetLastNotifications() { ClanServer cs = new ClanServer(); return(cs.GetLastNNotifications("Testing Clan", "Dude", cs.Sha256Hash("testing"))); }
static string TestKeyGeneration() { ClanServer cs = new ClanServer(); return(Master.GenerateKey()); }
static string GetClanLeaderboard(string sUserName, string sPassword) { ClanServer cs = new ClanServer(); return(cs.GetClanLeaderboard("Testing Clan", sUserName, cs.Sha256Hash(sPassword))); }
static string JoinClan(string sUserName, string sPassword) { ClanServer cs = new ClanServer(); return(cs.JoinClan("*****@*****.**", "Testing Clan", "testing", sUserName, sPassword)); }
static string CreateClan() { ClanServer cs = new ClanServer(); return(cs.CreateClan("Testing Clan", "testing")); }