Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.61 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ProcessManager {
  9.     class ReportBot {
  10.         // CLASS SETTING
  11.         public const string VERSION = "0.12b";
  12.         //
  13.  
  14.         public const int MATCH_MAKING_OFFSET = 0x0010;
  15.         public const int STEAM_SERVER_OFFSET = 0x221A;
  16.         public const int PLAYER_MODEL_OFFSET = 0xBB21;
  17.         public const int REPORT_QUEUE_OFFSET = 0xCD45;
  18.         public const int INTERNAL_IPR_OFFSET = 0x1239;
  19.         public const int EXT_VPS_SRVR_OFFSET = 0xBE21;
  20.         public const int SV_CVAR_SIGM_OFFSET = 0x93C2;
  21.         public const int SIGNATURE_DV_OFFSET = 0x1423;
  22.  
  23.         public static string STEAM_ID = "Steam64 76561198119340752";     // 16v STEAM IDS
  24.         public static int REPORT_AMTS = 15;                        // DEFAULT: 10
  25.  
  26.         public static Random RND      = new Random();
  27.  
  28.  
  29.         public static string GenerateReport() {
  30.             string chars = "0123456789";
  31.             return new string(Enumerable.Repeat(chars, 19).Select(s => s[RND.Next(s.Length)]).ToArray());
  32.         }
  33.  
  34.         static void Main(string[] args) {
  35.             // CONSTRUCTOR
  36.  
  37.             Console.ForegroundColor = ConsoleColor.Cyan;
  38.             System.Console.WriteLine("============================================================");
  39.             System.Console.WriteLine("ReportBot Ignotum started (" + ReportBot.VERSION + ") started");
  40.             System.Console.WriteLine("============================================================");
  41.  
  42.             Console.ForegroundColor = ConsoleColor.Gray;
  43.  
  44.             System.Console.WriteLine("  ");
  45.             System.Console.WriteLine("init core classes");
  46.             System.Console.WriteLine("  ");
  47.  
  48.             for (int i = 0; i < ReportBot.REPORT_AMTS; i++) {
  49.                 string iReportID = ReportBot.GenerateReport();
  50.  
  51.                 Console.ForegroundColor = ConsoleColor.Yellow;
  52.  
  53.                 System.Console.Write("[Ignotum] ");
  54.  
  55.                 Console.ForegroundColor = ConsoleColor.White;
  56.                 System.Console.Write("Report #" + i + " (ID: " + iReportID + ") sent => " + ReportBot.STEAM_ID);
  57.                 System.Console.WriteLine("  ");
  58.             }
  59.  
  60.             System.Console.WriteLine("  ");
  61.             System.Console.WriteLine("  ");
  62.             System.Console.WriteLine("  ");
  63.         }
  64.  
  65.         public void Report(string SteamID) {
  66.             // AVOID INT CUBE
  67.         }
  68.  
  69.         public Process GetProcess() {
  70.             return new Process();
  71.         }
  72.     }
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement