void btnSnipe_Click(object sender, EventArgs e) { setVisiblePics(false); btnPicMenu.Visible = false; btnPicProfile.Visible = false; if (sniperPanel == null) { sniperPanel = new SniperPanel(); } panel = sniperPanel; panel.Anchor = allAnchors; panel.Location = new Point(1, 1); panel.Size = new Size(this.Size.Width - 10, this.Size.Height - 55); panel.Margin = new Padding(4, 4, 4, 4); Controls.Add(panel); panel.Visible = true; ((SniperPanel)panel).Execute(); btnPicClose.Visible = true; locationPanel1.Visible = false; }
static void Main(string[] args) { var openGUI = false; version = new Version(); // Review & parse command line arguments if (args != null && args.Length > 0) { #region Parse Arguments foreach (string arg in args) { // First of all. // We check if bot have called clicking in a pokesnimer URI: pokesniper2://PokemonName/latitude,longitude if (args[0].Contains("pokesniper2") || args[0].Contains("msniper")) { // If yes, We create a temporary file to share with main process, and close. SniperPanel.SharePokesniperURI(args[0]); return; } #region Argument -nogui if (arg.Contains("-nogui")) { Logger.ColoredConsoleWrite(ConsoleColor.Red, "You added -nogui!"); #region Read bot settings if (File.Exists(Program.accountProfiles)) { string JSONstring = File.ReadAllText(accountProfiles); var Profiles = Newtonsoft.Json.JsonConvert.DeserializeObject <Collection <Profile> >(JSONstring); Profile selectedProfile = null; foreach (Profile _profile in Profiles) { if (_profile.IsDefault) { selectedProfile = _profile; break; } } if (selectedProfile != null) { GlobalVars.ProfileName = selectedProfile.ProfileName; var filenameProf = Path.Combine(path, $"{selectedProfile.ProfileName}.json"); selectedProfile.Settings = ProfileSettings.LoadFromFile(filenameProf); selectedProfile.Settings.SaveToGlobals(); } else { Logger.ColoredConsoleWrite(ConsoleColor.Red, "Default Profile not found! You didn't setup the bot correctly by running it with -nogui."); Environment.Exit(-1); } } else { Logger.ColoredConsoleWrite(ConsoleColor.Red, "You have not setup the bot yet. Run it without -nogui to Configure."); Environment.Exit(-1); } if (GlobalVars.UsePwdEncryption) { GlobalVars.Password = Encryption.Decrypt(GlobalVars.Password); } #endregion } #endregion #region Argument Coordinates if (arg.Contains(",")) { if (File.Exists(LastCoordsTXTFileName)) { Logger.ColoredConsoleWrite(ConsoleColor.Yellow, "Last coords file exists, trying to delete it"); File.Delete(LastCoordsTXTFileName); } string[] crdParts = arg.Split(','); GlobalVars.latitude = double.Parse(crdParts[0].Replace(',', '.'), ConfigWindow.cords, System.Globalization.NumberFormatInfo.InvariantInfo); GlobalVars.longitude = double.Parse(crdParts[1].Replace(',', '.'), ConfigWindow.cords, System.Globalization.NumberFormatInfo.InvariantInfo); Logger.ColoredConsoleWrite(ConsoleColor.Yellow, $"Found coordinates in command line. Starting at: {GlobalVars.latitude},{GlobalVars.longitude},{GlobalVars.altitude}"); } #endregion #region Argument -bypassversioncheck GlobalVars.BypassCheckCompatibilityVersion |= arg.ToLower().Contains("-bypassversioncheck"); #endregion #region Argument -help if (arg.ToLower().Contains("-help")) { //Show Help System.Console.WriteLine($"Pokemon BOT C# v{Resources.BotVersion.ToString()} help" + Environment.NewLine); System.Console.WriteLine("Use:"); System.Console.WriteLine(" -nogui <lat>,<long> Console mode only, starting on the indicated Latitude & Longitude"); System.Console.WriteLine(" -bypassversioncheck Do NOT check BOT & API compatibility (be careful with that option!)"); System.Console.WriteLine(" -help This help" + Environment.NewLine); Environment.Exit(0); } #endregion } } else { openGUI = true; } #endregion // Checking if current BOT API implementation supports NIANTIC current API (unless there's an override command line switch) if (!GlobalVars.BypassCheckCompatibilityVersion) { var currentAPIVersion = new CurrentAPIVersion(); Logger.ColoredConsoleWrite(ConsoleColor.DarkMagenta, $"Bot Current version: {Resources.BotVersion}"); Logger.ColoredConsoleWrite(ConsoleColor.DarkMagenta, $"Bot Supported API version: {Resources.BotApiSupportedVersion}"); Logger.ColoredConsoleWrite(ConsoleColor.DarkMagenta, $"Current API version: {currentAPIVersion.GetNianticAPIVersion()}"); bool CurrentVersionsOK = currentAPIVersion.CheckAPIVersionCompatibility(GlobalVars.BotApiSupportedVersion); if (!CurrentVersionsOK) { Logger.ColoredConsoleWrite(ConsoleColor.Red, $"Atention, current API version is new and still not supported by Bot."); Logger.ColoredConsoleWrite(ConsoleColor.Red, $"Bot will now exit to keep your account safe."); Logger.ColoredConsoleWrite(ConsoleColor.Red, $"---------- PRESS ANY KEY TO CLOSE ----------"); Console.ReadKey(); Environment.Exit(-1); } } // Check if Bot is deactivated at server level StringUtils.CheckKillSwitch(); // Check if a new version of BOT is available CheckVersion(); if (openGUI) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new ConfigWindow()); Task.Run(() => { new Panels.SplashScreen().ShowDialog(); }); openGUI = GlobalVars.EnablePokeList; if (GlobalVars.EnableConsoleInTab) { Logger.type = 1; } // To open tabbed GUI to test programing /* * TabbedSystem.skipReadyToUse = true; * Application.Run( new TabbedSystem()); * Environment.Exit(0); */ } SleepHelper.PreventSleep(); CreateLogDirectories(); GlobalVars.infoObservable.HandleNewHuntStats += SaveHuntStats; Task.Run(() => { do { try { DeviceSetup.SelectDevice(GlobalVars.DeviceTradeName, GlobalVars.DeviceID, deviceData); new Logic.Logic(new Settings(), GlobalVars.infoObservable).Execute(); } catch (Exception ex) { Logger.Error($"Unhandled exception: {ex}"); } Logger.Error("Restarting in 20 Seconds."); Thread.Sleep(20000); }while (Logic.Logic.restartLogic); }); if (openGUI) { if (GlobalVars.simulatedPGO) { Application.Run(new GameAspectSimulator()); } else { if (GlobalVars.EnableConsoleInTab) { FreeConsole(); } Application.Run(new TabbedSystem()); } } else { System.Console.ReadLine(); } SleepHelper.AllowSleep(); }