static public void logReport(uint accountID, ulong confirmationID) { string report; if (confirmationID > 0) { report = ": Репорт для " + accountIDFormat(accountID) + " ОТПРАВЛЕН, report id " + confirmationID + "."; } else { report = ": Репорт для " + accountIDFormat(accountID) + " НЕ отправлен."; } informationsteam = "Готово"; account account = new account(); account.TextREPORT(report, Config.SteamLogin + ".json"); isRunning = false; }
static public void logCommend(uint accountID, bool result) { string report; if (result) { report = String.Format(": Лайк для {0} НАКРУЧЕН!", accountIDFormat(accountID)); } else { report = String.Format(": Лайк для {0} НЕ накручен!", accountIDFormat(accountID)); } informationsteam = "Готово"; account account = new account(); account.TextCOMMEND(report, Config.SteamLogin + ".json"); isRunning = false; }
static public void logReport(uint accountID, ulong confirmationID) { string report; if (confirmationID > 0) { report = ": Report for " + accountIDFormat(accountID) + " SEND, report id " + confirmationID + "."; } else { report = ": Report for " + accountIDFormat(accountID) + " NOT send."; } informationsteam = "Ready"; account account = new account(); account.TextREPORT(report, Config.SteamLogin + ".json"); isRunning = false; }
static public void logCommend(uint accountID, bool result) { string report; if (result) { report = String.Format(": Like for {0} SEND!", accountIDFormat(accountID)); } else { report = String.Format(": Like for {0} NOT send!", accountIDFormat(accountID)); } informationsteam = "Ready"; account account = new account(); account.TextCOMMEND(report, Config.SteamLogin + ".json"); isRunning = false; }
static public void checkOWBypass(uint serverTime, uint expectedLastReportTime) { bool isReady = serverTime - expectedLastReportTime > 21 * 60 * 60; ulong test = serverTime - expectedLastReportTime; ulong test2 = nows(); account account = new account(); ulong test3 = test2 - test; account.TextOTLYOGA(test3, Config.SteamLogin + ".json"); account.cooldowntimechecked(Convert.ToUInt32(nows()), Config.SteamLogin + ".json"); account.TextRANK(rankID.ToString(), Config.SteamLogin + ".json"); rankID = 0; if (!banned) { account.TextVAC("Yes", Config.SteamLogin + ".json"); } else { account.TextVAC("None", Config.SteamLogin + ".json"); } isRunning = false; informationsteam = "Готово"; }