├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS.md ├── Gemfile ├── Jenkinsfile ├── KillSwitch.txt ├── LICENSE.md ├── NecroBot-Private for Pokemon GO.sln ├── PoGo.NecroBot.CLI ├── CommandLineUtility │ └── Arguments.cs ├── Config │ ├── Translations │ │ ├── TEMPLATE-translation.en.json │ │ ├── translation.ca.json │ │ ├── translation.cs.json │ │ ├── translation.da.json │ │ ├── translation.de.json │ │ ├── translation.el.json │ │ ├── translation.es.json │ │ ├── translation.et.json │ │ ├── translation.fr.json │ │ ├── translation.hu.json │ │ ├── translation.id.json │ │ ├── translation.it.json │ │ ├── translation.ja-JP.json │ │ ├── translation.ja-JP2.json │ │ ├── translation.kh.json │ │ ├── translation.lt.json │ │ ├── translation.nl-NL.json │ │ ├── translation.nn-NO.json │ │ ├── translation.pl.json │ │ ├── translation.pt-br.json │ │ ├── translation.pt-pt.json │ │ ├── translation.ro.json │ │ ├── translation.ru-RU.json │ │ ├── translation.sv.json │ │ ├── translation.th.json │ │ ├── translation.tr.json │ │ ├── translation.uk-UA.json │ │ ├── translation.vi.json │ │ ├── translation.zh-CN.json │ │ ├── translation.zh-CN_pp.json │ │ ├── translation.zh-HK.json │ │ ├── translation.zh-TW.json │ │ └── ui.pl.json │ ├── log4net.config │ └── log4net.unix.config ├── ConsoleLogger.cs ├── FodyWeavers.xml ├── Forms │ ├── AuthAPIForm.Designer.cs │ ├── AuthAPIForm.cs │ ├── AuthAPIForm.resx │ ├── InfoForm.Designer.cs │ ├── InfoForm.cs │ ├── InfoForm.resx │ ├── StarterConfigForm.Designer.cs │ ├── StarterConfigForm.cs │ └── StarterConfigForm.resx ├── InterceptKey.cs ├── PoGo.NecroBot.CLI.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.resx │ └── Resources1.Designer.cs ├── Resources │ ├── Ico.ico │ ├── PayPalDonateNow.png │ ├── PayPalDonateNow1.png │ ├── ProgressBar.cs │ ├── msvc.cer │ └── necro_logo.jpg ├── RunWithExcelConfig.bat ├── SETUP.md ├── cert.pfx ├── costura32 │ └── sqlite3.dll ├── costura64 │ └── sqlite3.dll └── packages.config ├── PoGo.NecroBot.Logic ├── Caching.cs ├── Captcha │ ├── Anti-Captcha │ │ ├── AntiCaptchaClient.cs │ │ ├── AnticaptchaApiWrapper.cs │ │ ├── AnticaptchaResult.cs │ │ ├── AnticaptchaTask.cs │ │ └── HttpHelper.cs │ ├── CaptchaManager.cs │ ├── CaptchaSolutionClient.cs │ └── TwoCaptchaClient.cs ├── Common │ ├── PokemonGradeHelper.cs │ ├── Translations.cs │ └── UITranslation.cs ├── Config │ ├── log4net.config │ └── log4net.unix.config ├── DataDumper │ ├── Dumper.cs │ └── IDumper.cs ├── Event │ ├── BotSwitchedEvent.cs │ ├── DisplayHighestsPokemonEvent.cs │ ├── EggHatchedEvent.cs │ ├── EggIncubatorStatusEvent.cs │ ├── EggsListEvent.cs │ ├── EncounteredEvent.cs │ ├── ErrorEvent.cs │ ├── EventDispatcher.cs │ ├── EventUsedPotion.cs │ ├── EventUsedRevive.cs │ ├── EvolveCountEvent.cs │ ├── FortFailedEvent.cs │ ├── FortTargetEvent.cs │ ├── FortUsedEvent.cs │ ├── GetRouteEvent.cs │ ├── Gym │ │ ├── GymBattleStarted.cs │ │ ├── GymDeployEvent.cs │ │ ├── GymDetailInfoEvent.cs │ │ ├── GymErrorUnset.cs │ │ ├── GymEventMessages.cs │ │ ├── GymListEvent.cs │ │ ├── GymTeamJoinEvent.cs │ │ └── GymWalkToTargetEvent.cs │ ├── HumanWalkSnipeEvent.cs │ ├── HumanWalkingEvent.cs │ ├── IEvent.cs │ ├── InfoEvent.cs │ ├── Inventory │ │ ├── FavoriteEvent.cs │ │ ├── InventoryItemUpdateEvent.cs │ │ ├── InventoryRefreshedEvent.cs │ │ └── UpgradeFinishEvent.cs │ ├── InventoryListEvent.cs │ ├── ItemRecycledEvent.cs │ ├── KillSwitchEvent.cs │ ├── LogEvent.cs │ ├── LootPokestopEvent.cs │ ├── NicknameUpdateEvent.cs │ ├── NoPokeballEvent.cs │ ├── NoticeEvent.cs │ ├── Player │ │ ├── BuddyUpdateEvent.cs │ │ ├── LoggedEvent.cs │ │ ├── LoginEvent.cs │ │ └── TargetLocationEvent.cs │ ├── PokeStopListEvent.cs │ ├── PokemonCaptureEvent.cs │ ├── PokemonEvolveEvent.cs │ ├── PokemonLevelUpEvent.cs │ ├── PokemonListEvent.cs │ ├── PokemonsEncounterEvent.cs │ ├── PokestopLimitUpdate.cs │ ├── ProfileEvent.cs │ ├── RenamePokemonEvent.cs │ ├── Snipe │ │ ├── AllBotSnipeEvent.cs │ │ ├── AutoSnipePokemonAddedEvent.cs │ │ ├── SnipePokemonStarted.cs │ │ └── SnipePokemonUpdateEvent.cs │ ├── SnipeEvent.cs │ ├── SnipeModeEvent.cs │ ├── SnipePokemonFoundEvent.cs │ ├── SnipeScanEvent.cs │ ├── TransferPokemonEvent.cs │ ├── UI │ │ └── StatusBarEvent.cs │ ├── UpdateEvent.cs │ ├── UpdatePositionEvent.cs │ ├── UpgradePokemonEvent.cs │ ├── UseBerryEvent.cs │ ├── UseLuckyEggEvent.cs │ └── WarnEvent.cs ├── Exceptions │ ├── ActiveSwitchAccountManualException.cs │ ├── ActiveSwitchByPokemonException.cs │ └── ActiveSwitchByRuleException.cs ├── Extensions.cs ├── Forms │ ├── AutoUpdateForm.Designer.cs │ ├── AutoUpdateForm.cs │ ├── AutoUpdateForm.resx │ ├── CaptchaSolveForm.Designer.cs │ ├── CaptchaSolveForm.cs │ ├── CaptchaSolveForm.resx │ ├── EXComboBox.cs │ ├── EXListView.cs │ ├── Extentions.cs │ ├── InitialTutorialForm.Designer.cs │ ├── InitialTutorialForm.cs │ ├── InitialTutorialForm.resx │ ├── SelectAccountForm.Designer.cs │ ├── SelectAccountForm.cs │ └── SelectAccountForm.resx ├── Interfaces │ └── Configuration │ │ └── ILogicSettings.cs ├── Inventory.cs ├── Localization │ └── Localizer.cs ├── Logging │ ├── APILogListener.cs │ ├── FileLogger.cs │ ├── ILogger.cs │ ├── Logger.cs │ ├── LoggingStrings.cs │ └── WebSocketLogger.cs ├── MKS.txt ├── Model │ ├── Account.cs │ ├── AccountConfigContext.cs │ ├── BotAccount.cs │ ├── BotActions.cs │ ├── ElevationConfigContext.cs │ ├── ElevationLocation.cs │ ├── GeoLocation.cs │ ├── GeoLocationConfigContext.cs │ ├── Google │ │ ├── GoogleObjects │ │ │ ├── Address_Components.cs │ │ │ ├── Bounds.cs │ │ │ ├── DirectionsResponse.cs │ │ │ ├── DistanceMatrixResponse.cs │ │ │ ├── Element.cs │ │ │ ├── Geo.cs │ │ │ ├── GeocodedWaypoints.cs │ │ │ ├── GeocodingResponse.cs │ │ │ ├── Geometry.cs │ │ │ ├── GoogleType.cs │ │ │ ├── Leg.cs │ │ │ ├── Polyline.cs │ │ │ ├── Result.cs │ │ │ ├── Route.cs │ │ │ ├── Row.cs │ │ │ ├── Step.cs │ │ │ └── ValueText.cs │ │ ├── GoogleResult.cs │ │ └── GoogleWalk.cs │ ├── IGeoLocation.cs │ ├── Mapzen │ │ └── MapzenWalk.cs │ ├── PokemonGrade.cs │ ├── PokemonTimestamp.cs │ ├── PokestopTimestamp.cs │ ├── Settings │ │ ├── APIConfig.cs │ │ ├── AuthConfig.cs │ │ ├── AuthSettings.cs │ │ ├── BaseConfig.cs │ │ ├── BerryUseFilter.cs │ │ ├── CaptchaConfig.cs │ │ ├── CatchConfig.cs │ │ ├── CatchFilter.cs │ │ ├── CatchSettings.cs │ │ ├── ClientSettings.cs │ │ ├── ConsoleConfig.cs │ │ ├── CustomCatchConfig.cs │ │ ├── DataSharingConfig.cs │ │ ├── DeviceConfig.cs │ │ ├── EvolveConfig.cs │ │ ├── EvolveFilter.cs │ │ ├── ExcelConfigAttribute.cs │ │ ├── FilterUtil.cs │ │ ├── GUIConfig.cs │ │ ├── GlobalSettings.cs │ │ ├── GoogleWalkConfig.cs │ │ ├── GpxConfig.cs │ │ ├── GymConfig.cs │ │ ├── HumanWalkSnipeConfig.cs │ │ ├── HumanWalkSnipeFilter.cs │ │ ├── HumanlikeDelays.cs │ │ ├── IPokemonFilter.cs │ │ ├── ItemRecycleConfig.cs │ │ ├── ItemRecycleFilter.cs │ │ ├── LevelUpConfig.cs │ │ ├── Location.cs │ │ ├── LocationConfig.cs │ │ ├── LogicSettings.cs │ │ ├── MapzenWalkConfig.cs │ │ ├── MultipleBotConfig.cs │ │ ├── NotificationConfig.cs │ │ ├── PlayerConfig.cs │ │ ├── PokeStopConfig.cs │ │ ├── PokemonConfig.cs │ │ ├── ProxyConfig.cs │ │ ├── SnipeConfig.cs │ │ ├── SnipeFIlter.cs │ │ ├── SoftBanConfig.cs │ │ ├── TelegramConfig.cs │ │ ├── TransferConfig.cs │ │ ├── TransferFilter.cs │ │ ├── UpdateConfig.cs │ │ ├── UpgradeFilter.cs │ │ ├── WebsocketsConfig.cs │ │ └── YoursWalkConfig.cs │ └── Yours │ │ └── YoursWalk.cs ├── MultiAccountManager.cs ├── Navigation.cs ├── PoGo.NecroBot.Logic.csproj ├── PoGoUtils │ ├── PokemonEvolutionHelper.cs │ └── PokemonInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── ajax-loader.gif │ └── msvc.cer ├── Service │ ├── AnalyticsService.cs │ ├── BotDataSocketClient.cs │ ├── ConsoleEventListener.cs │ ├── Elevation │ │ ├── BaseElevationService.cs │ │ ├── ElevationService.cs │ │ ├── GoogleElevationService.cs │ │ ├── IElevationService.cs │ │ ├── MapzenElevationService.cs │ │ └── RandomElevationService.cs │ ├── GoogleDirectionsService.cs │ ├── MapzenDirectionsService.cs │ ├── PushNotificationListener.cs │ ├── SniperEventListener.cs │ ├── TelegramCommand │ │ ├── AccountsCommand.cs │ │ ├── AllCommand.cs │ │ ├── CommandLocation.cs │ │ ├── CommandMessage.cs │ │ ├── ExitCommand.cs │ │ ├── HelpCommand.cs │ │ ├── ICommand.cs │ │ ├── ICommandGenerify.cs │ │ ├── ItemsCommand.cs │ │ ├── LocCommand.cs │ │ ├── LogsCommand.cs │ │ ├── PokedexCommand.cs │ │ ├── ProfileCommand.cs │ │ ├── RecycleCommand.cs │ │ ├── RestartCommand.cs │ │ ├── SnipeCommand.cs │ │ ├── StatusCommand.cs │ │ └── TopCommand.cs │ ├── TelegramService.cs │ ├── TelegramUtils.cs │ ├── WebSocketHandler │ │ ├── ActionCommands │ │ │ ├── DropItemHandler.cs │ │ │ ├── EvolvePokemonHandler.cs │ │ │ ├── FastpokemapHandler.cs │ │ │ ├── FavoritePokemonHandler.cs │ │ │ ├── HumanSnipePriorityPokemonHandler.cs │ │ │ ├── HumanSnipeRemovePokemonHandler.cs │ │ │ ├── LevelUpPokemonHandler.cs │ │ │ ├── SetConfigHandler.cs │ │ │ ├── SetMoveToTargetHandler.cs │ │ │ ├── SetTrainerNicknameHandler.cs │ │ │ ├── TransferPokemonHandler.cs │ │ │ └── UpgradePokemonHandler.cs │ │ ├── EncodingHelper.cs │ │ ├── GetCommands │ │ │ ├── Events │ │ │ │ ├── ConfigResponce.cs │ │ │ │ ├── EggListResponce.cs │ │ │ │ ├── ItemListResponce.cs │ │ │ │ ├── PokemonListResponce.cs │ │ │ │ ├── SnipeListResponce.cs │ │ │ │ ├── TrainerProfileResponce.cs │ │ │ │ └── WebResponce.cs │ │ │ ├── GetConfigHandler.cs │ │ │ ├── GetEggListHandler.cs │ │ │ ├── GetItemsListHandler.cs │ │ │ ├── GetPokemonListHandler.cs │ │ │ ├── GetPokemonSettingsHandler.cs │ │ │ ├── GetPokemonSnipeListHandler.cs │ │ │ ├── GetTrainerProfileHandler.cs │ │ │ ├── Helpers │ │ │ │ ├── ConfigWeb.cs │ │ │ │ ├── EggListWeb.cs │ │ │ │ ├── PokemonListWeb.cs │ │ │ │ └── TrainerProfileWeb.cs │ │ │ └── Tasks │ │ │ │ ├── GetConfigTask.cs │ │ │ │ ├── GetEggListTask.cs │ │ │ │ ├── GetItemListTask.cs │ │ │ │ ├── GetPokemonListTask.cs │ │ │ │ ├── GetPokemonSettingsTask.cs │ │ │ │ ├── GetPokemonSnipeListTask.cs │ │ │ │ └── GetTrainerProfileTask.cs │ │ ├── IWebSocketRequestHandler.cs │ │ ├── IWebSocketResponce.cs │ │ └── WebSocketEventManager.cs │ ├── WebSocketInterface.cs │ └── YoursDirectionsService.cs ├── State │ ├── BlockableScope.cs │ ├── BotSwitcherState.cs │ ├── CatchState.cs │ ├── CheckTosState.cs │ ├── FarmState.cs │ ├── GymTeamState.cs │ ├── IState.cs │ ├── IdleState.cs │ ├── InfoState.cs │ ├── LoadSaveState.cs │ ├── LoginState.cs │ ├── Session.cs │ ├── SessionStats.cs │ ├── StateMachine.cs │ └── VersionCheckState.cs ├── StatisticsAggregator.cs ├── Strategies │ └── Walk │ │ ├── BaseWalkStrategy.cs │ │ ├── FlyStrategy.cs │ │ ├── GoogleStrategy.cs │ │ ├── HumanPathWalkingStrategy.cs │ │ ├── HumanStrategy.cs │ │ ├── IWalkStrategy.cs │ │ ├── MapzenNavigationStrategy.cs │ │ └── YoursNavigationStrategy.cs ├── Tasks │ ├── BaseTransferPokemonTask.cs │ ├── CatchIncensePokemonsTask.cs │ ├── CatchLurePokemonsTask.cs │ ├── CatchNearbyPokemonsTask.cs │ ├── CatchPokemonTask.cs │ ├── DisplayPokemonStatsTask.cs │ ├── EggsListTask.cs │ ├── EvolvePokemonTask.cs │ ├── EvolveSpecificPokemonTask.cs │ ├── FarmPokestopsGPXTask.cs │ ├── FarmPokestopsTask.cs │ ├── FavoritePokemonTask.cs │ ├── GetGymBadgeDetailsTask.cs │ ├── GetPokeDexCount.cs │ ├── GymFeedPokemonTask.cs │ ├── HumanRandomActionTask.cs │ ├── HumanWalkSnipeTask.FastPokemap.cs │ ├── HumanWalkSnipeTask.PokeWatchers.cs │ ├── HumanWalkSnipeTask.PokeZZ.cs │ ├── HumanWalkSnipeTask.Pokecrew.cs │ ├── HumanWalkSnipeTask.Pokeradar.cs │ ├── HumanWalkSnipeTask.Pokesnipers.cs │ ├── HumanWalkSnipeTask.Skiplagged.cs │ ├── HumanWalkSnipeTask.cs │ ├── InventoryListTask.cs │ ├── LevelUpPokemonTask.cs │ ├── LevelUpSpecificPokemonTask.cs │ ├── MSniperServiceTask.cs │ ├── PokemonListTask.cs │ ├── RecycleItemsTask.cs │ ├── RenamePokemonTask.cs │ ├── RenameSinglePokemonTask.cs │ ├── SelectBuddyPokemonTask.cs │ ├── SetMoveToTargetTask.cs │ ├── SnipePokemonTask.cs │ ├── TransferDuplicatePokemonTask.cs │ ├── TransferPokemonTask.cs │ ├── TransferWeakPokemonTask.cs │ ├── UpgradeSinglePokemonTask.cs │ ├── UseFortItemsTask.cs │ ├── UseGymBattleTask.cs │ ├── UseIncenseConstantlyTask.cs │ ├── UseIncenseTask.cs │ ├── UseIncubatorsTask.cs │ ├── UseItemMoveRerollTask.cs │ ├── UseLuckyEggConstantlyTask.cs │ ├── UseLuckyEggTask.cs │ ├── UseNearbyPokestopsTask.cs │ └── UseRareCandyTask.cs ├── TinyIoC.cs ├── Utils │ ├── AsyncLock.cs │ ├── DelayingUtils.cs │ ├── EggWalker.cs │ ├── ErrorHandler.cs │ ├── ExcelConfigHelper.cs │ ├── GPXReader.cs │ ├── JitterUtils.cs │ ├── LocationUtils.cs │ ├── NecroWebClient.cs │ ├── PushNotificationClient.cs │ ├── RouteOptimizeUtil.cs │ ├── Statistics.cs │ ├── StringUtils.cs │ └── WebUtils.cs ├── config.xlsm └── packages.config ├── PoGo.NecroBot.Window ├── App.xaml ├── App.xaml.cs ├── Behaviors │ └── DataGridBehavior.cs ├── Config │ ├── Translations │ │ ├── ui.pl.json │ │ ├── ui.vn.json │ │ └── ui.zh-TW.json │ ├── log4net.config │ └── log4net.unix.config ├── Controls │ ├── EggsControl.xaml │ ├── EggsControl.xaml.cs │ ├── EmptyItemsControlAdornerBehavior.cs │ ├── FilteringDataGrid.cs │ ├── ItemsInventory.xaml │ ├── ItemsInventory.xaml.cs │ ├── MapControl.xaml │ ├── MapControl.xaml.cs │ ├── MapMarkers │ │ ├── Circle.xaml │ │ ├── Circle.xaml.cs │ │ ├── Cross.xaml │ │ ├── Cross.xaml.cs │ │ ├── CustomMarkerDemo.xaml │ │ ├── CustomMarkerDemo.xaml.cs │ │ ├── CustomMarkerRed.xaml │ │ ├── CustomMarkerRed.xaml.cs │ │ ├── FortMarker.xaml │ │ ├── FortMarker.xaml.cs │ │ ├── GymMarker.xaml │ │ ├── GymMarker.xaml.cs │ │ ├── MapPokemonMarker.xaml │ │ ├── MapPokemonMarker.xaml.cs │ │ ├── PlayerMarker.xaml │ │ ├── PlayerMarker.xaml.cs │ │ ├── TargetMarker.xaml │ │ ├── TargetMarker.xaml.cs │ │ ├── big-trainer.png │ │ ├── bigMarkerGreen.png │ │ ├── pokestop-normal.png │ │ ├── pokestop-used.png │ │ ├── pokestop.png │ │ ├── red-dot.png │ │ └── trainer.png │ ├── Overlay.cs │ ├── PlayerInfo.xaml │ ├── PlayerInfo.xaml.cs │ ├── PokemonInventory.xaml │ ├── PokemonInventory.xaml.cs │ ├── SidebarControl.xaml │ ├── SidebarControl.xaml.cs │ ├── Sidebars │ │ ├── CatchPokemonItem.xaml │ │ ├── CatchPokemonItem.xaml.cs │ │ ├── PokestopItem.xaml │ │ └── PokestopItem.xaml.cs │ ├── SnipeGrid.xaml │ ├── SnipeGrid.xaml.cs │ ├── SniperControl.xaml │ ├── SniperControl.xaml.cs │ ├── TemplatedAdorner.cs │ ├── TrolleyTooltip.xaml │ └── TrolleyTooltip.xaml.cs ├── Converters │ ├── AllowTransferCheckConverter.cs │ ├── CheckAllowEvolveConverter.cs │ ├── CollapseWhenGreateThenZeroConverter.cs │ ├── DurationTextConverter.cs │ ├── EnumToNumberConverter.cs │ ├── FavoriteTextConverter.cs │ ├── FriendlyEvolveTextConverter.cs │ ├── FriendlyTransferTextConverter.cs │ ├── GrayScaleConverter.cs │ ├── HeaderFilterConverter.cs │ ├── I18NConveter.cs │ ├── I18NMultiConveter.cs │ ├── IVToColorConverter.cs │ ├── InverseBooleanConverter.cs │ ├── ItemIdToImageConverter.cs │ ├── ListCountConverter.cs │ ├── ListPokemonIdConverter.cs │ ├── ListPokemonIdToTextConverter.cs │ ├── MoveConverter.cs │ ├── OperatorConverter.cs │ ├── PokemonIdToImageConverter.cs │ ├── PokemonImageConverter.cs │ ├── TimestampToDateTimeConverter.cs │ ├── ValueConverterGroup.cs │ ├── VisibleIfTrueConverter.cs │ └── VisibleWhenGreateThenZeroConverter.cs ├── Effects │ └── GrayscaleEffect.dll ├── Extensions │ ├── ObjectExtentions.cs │ └── UIExtensions.cs ├── FilterSetting.xaml ├── FilterSetting.xaml.cs ├── FodyWeavers.xml ├── Ico.ico ├── MainClientWindow.xaml ├── MainClientWindow.xaml.LocalVariable.cs ├── MainClientWindow.xaml.UIEvents.cs ├── MainClientWindow.xaml.cs ├── Model │ ├── AddManualSnipeCoordViewModel.cs │ ├── AffectPokemonViewModel.cs │ ├── CatchPokemonViewModel.cs │ ├── DataContext.cs │ ├── EggViewModel.cs │ ├── EggsListViewModel.cs │ ├── FortViewModel.cs │ ├── GymViewModel.cs │ ├── IncubatorViewModel.cs │ ├── ItemsListDataModel.cs │ ├── ItemsViewModel.cs │ ├── MapPokemonViewModel.cs │ ├── MapViewModel.cs │ ├── ObservableCollectionExt.cs │ ├── PlayerInfoModel.cs │ ├── PokeDexEntryViewModel.cs │ ├── PokedexItemsViewModel.cs │ ├── PokemonDataViewModel.cs │ ├── PokemonListModel.cs │ ├── PokemonViewModelBase.cs │ ├── PokestopItemViewModel.cs │ ├── SidebarItemViewModel.cs │ ├── SidebarViewModel.cs │ ├── SnipeListViewModel.cs │ ├── SnipePokemonViewModel.cs │ ├── UIViewModel.cs │ └── ViewModelBase.cs ├── ObservableCollectionConverter.cs ├── ObservablePairCollection.cs ├── Pair.cs ├── PoGo.Necrobot.Window.csproj ├── PokedexWindow.xaml ├── PokedexWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Accounts │ │ ├── AccountsIMG_Amber.png │ │ ├── AccountsIMG_Blue.png │ │ ├── AccountsIMG_Brown.png │ │ ├── AccountsIMG_Cobalt.png │ │ ├── AccountsIMG_Crimson.png │ │ ├── AccountsIMG_Cyan.png │ │ ├── AccountsIMG_Emerald.png │ │ ├── AccountsIMG_Green.png │ │ ├── AccountsIMG_Indigo.png │ │ ├── AccountsIMG_Lime.png │ │ ├── AccountsIMG_Magenta.png │ │ ├── AccountsIMG_Mauve.png │ │ ├── AccountsIMG_Olive.png │ │ ├── AccountsIMG_Orange.png │ │ ├── AccountsIMG_Pink.png │ │ ├── AccountsIMG_Purple.png │ │ ├── AccountsIMG_Red.png │ │ ├── AccountsIMG_Sienna.png │ │ ├── AccountsIMG_Steel.png │ │ ├── AccountsIMG_Taupe.png │ │ ├── AccountsIMG_Teal.png │ │ ├── AccountsIMG_Violet.png │ │ ├── AccountsIMG_Yellow.png │ │ └── AccountsImage.png │ ├── Console │ │ ├── ConsoleIMG_Amber.png │ │ ├── ConsoleIMG_Blue.png │ │ ├── ConsoleIMG_Brown.png │ │ ├── ConsoleIMG_Cobalt.png │ │ ├── ConsoleIMG_Crimson.png │ │ ├── ConsoleIMG_Cyan.png │ │ ├── ConsoleIMG_Emerald.png │ │ ├── ConsoleIMG_Green.png │ │ ├── ConsoleIMG_Indigo.png │ │ ├── ConsoleIMG_Lime.png │ │ ├── ConsoleIMG_Magenta.png │ │ ├── ConsoleIMG_Mauve.png │ │ ├── ConsoleIMG_Olive.png │ │ ├── ConsoleIMG_Orange.png │ │ ├── ConsoleIMG_Pink.png │ │ ├── ConsoleIMG_Purple.png │ │ ├── ConsoleIMG_Red.png │ │ ├── ConsoleIMG_Sienna.png │ │ ├── ConsoleIMG_Steel.png │ │ ├── ConsoleIMG_Taupe.png │ │ ├── ConsoleIMG_Teal.png │ │ ├── ConsoleIMG_Violet.png │ │ ├── ConsoleIMG_Yellow.png │ │ └── ConsoleImage.png │ ├── Eggs │ │ ├── EggsIMG_Amber.png │ │ ├── EggsIMG_Blue.png │ │ ├── EggsIMG_Brown.png │ │ ├── EggsIMG_Cobalt.png │ │ ├── EggsIMG_Crimson.png │ │ ├── EggsIMG_Cyan.png │ │ ├── EggsIMG_Emerald.png │ │ ├── EggsIMG_Green.png │ │ ├── EggsIMG_Indigo.png │ │ ├── EggsIMG_Lime.png │ │ ├── EggsIMG_Magenta.png │ │ ├── EggsIMG_Mauve.png │ │ ├── EggsIMG_Olive.png │ │ ├── EggsIMG_Orange.png │ │ ├── EggsIMG_Pink.png │ │ ├── EggsIMG_Purple.png │ │ ├── EggsIMG_Red.png │ │ ├── EggsIMG_Sienna.png │ │ ├── EggsIMG_Steel.png │ │ ├── EggsIMG_Taupe.png │ │ ├── EggsIMG_Teal.png │ │ ├── EggsIMG_Violet.png │ │ ├── EggsIMG_Yellow.png │ │ └── EggsImage.png │ ├── Entypo-license.txt │ ├── Entypo.ttf │ ├── Fonts │ │ └── Lato │ │ │ ├── Lato-Black.ttf │ │ │ ├── Lato-BlackItalic.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-BoldItalic.ttf │ │ │ ├── Lato-Hairline.ttf │ │ │ ├── Lato-HairlineItalic.ttf │ │ │ ├── Lato-Heavy.ttf │ │ │ ├── Lato-HeavyItalic.ttf │ │ │ ├── Lato-Italic.ttf │ │ │ ├── Lato-Light.ttf │ │ │ ├── Lato-LightItalic.ttf │ │ │ ├── Lato-Medium.ttf │ │ │ ├── Lato-MediumItalic.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato-Semibold.ttf │ │ │ ├── Lato-SemiboldItalic.ttf │ │ │ ├── Lato-Thin.ttf │ │ │ ├── Lato-ThinItalic.ttf │ │ │ └── SIL Open Font License.txt │ ├── Hub │ │ ├── HubIMG_Amber.png │ │ ├── HubIMG_Blue.png │ │ ├── HubIMG_Brown.png │ │ ├── HubIMG_Cobalt.png │ │ ├── HubIMG_Crimson.png │ │ ├── HubIMG_Cyan.png │ │ ├── HubIMG_Emerald.png │ │ ├── HubIMG_Green.png │ │ ├── HubIMG_Indigo.png │ │ ├── HubIMG_Lime.png │ │ ├── HubIMG_Magenta.png │ │ ├── HubIMG_Mauve.png │ │ ├── HubIMG_Olive.png │ │ ├── HubIMG_Orange.png │ │ ├── HubIMG_Pink.png │ │ ├── HubIMG_Purple.png │ │ ├── HubIMG_Red.png │ │ ├── HubIMG_Sienna.png │ │ ├── HubIMG_Steel.png │ │ ├── HubIMG_Taupe.png │ │ ├── HubIMG_Teal.png │ │ ├── HubIMG_Violet.png │ │ ├── HubIMG_Yellow.png │ │ └── HubImage.png │ ├── Icons.xaml │ ├── IconsNonShared.xaml │ ├── Items │ │ ├── ItemsIMG_Amber.png │ │ ├── ItemsIMG_Blue.png │ │ ├── ItemsIMG_Brown.png │ │ ├── ItemsIMG_Cobalt.png │ │ ├── ItemsIMG_Crimson.png │ │ ├── ItemsIMG_Cyan.png │ │ ├── ItemsIMG_Emerald.png │ │ ├── ItemsIMG_Green.png │ │ ├── ItemsIMG_Indigo.png │ │ ├── ItemsIMG_Lime.png │ │ ├── ItemsIMG_Magenta.png │ │ ├── ItemsIMG_Mauve.png │ │ ├── ItemsIMG_Olive.png │ │ ├── ItemsIMG_Orange.png │ │ ├── ItemsIMG_Pink.png │ │ ├── ItemsIMG_Purple.png │ │ ├── ItemsIMG_Red.png │ │ ├── ItemsIMG_Sienna.png │ │ ├── ItemsIMG_Steel.png │ │ ├── ItemsIMG_Taupe.png │ │ ├── ItemsIMG_Teal.png │ │ ├── ItemsIMG_Violet.png │ │ ├── ItemsIMG_Yellow.png │ │ └── ItemsImage.png │ ├── Map │ │ ├── MapIMG_Amber.png │ │ ├── MapIMG_Blue.png │ │ ├── MapIMG_Brown.png │ │ ├── MapIMG_Cobalt.png │ │ ├── MapIMG_Crimson.png │ │ ├── MapIMG_Cyan.png │ │ ├── MapIMG_Emerald.png │ │ ├── MapIMG_Green.png │ │ ├── MapIMG_Indigo.png │ │ ├── MapIMG_Lime.png │ │ ├── MapIMG_Magenta.png │ │ ├── MapIMG_Mauve.png │ │ ├── MapIMG_Olive.png │ │ ├── MapIMG_Orange.png │ │ ├── MapIMG_Pink.png │ │ ├── MapIMG_Purple.png │ │ ├── MapIMG_Red.png │ │ ├── MapIMG_Sienna.png │ │ ├── MapIMG_Steel.png │ │ ├── MapIMG_Taupe.png │ │ ├── MapIMG_Teal.png │ │ ├── MapIMG_Violet.png │ │ ├── MapIMG_Yellow.png │ │ └── mapImage.png │ ├── Pokemon │ │ ├── PokemonIMG_Amber.png │ │ ├── PokemonIMG_Blue.png │ │ ├── PokemonIMG_Brown.png │ │ ├── PokemonIMG_Cobalt.png │ │ ├── PokemonIMG_Crimson.png │ │ ├── PokemonIMG_Cyan.png │ │ ├── PokemonIMG_Emerald.png │ │ ├── PokemonIMG_Green.png │ │ ├── PokemonIMG_Indigo.png │ │ ├── PokemonIMG_Lime.png │ │ ├── PokemonIMG_Magenta.png │ │ ├── PokemonIMG_Mauve.png │ │ ├── PokemonIMG_Olive.png │ │ ├── PokemonIMG_Orange.png │ │ ├── PokemonIMG_Pink.png │ │ ├── PokemonIMG_Purple.png │ │ ├── PokemonIMG_Red.png │ │ ├── PokemonIMG_Sienna.png │ │ ├── PokemonIMG_Steel.png │ │ ├── PokemonIMG_Taupe.png │ │ ├── PokemonIMG_Teal.png │ │ ├── PokemonIMG_Violet.png │ │ ├── PokemonIMG_Yellow.png │ │ └── PokemonImage.png │ ├── Sniper │ │ ├── SniperIMG_Amber.png │ │ ├── SniperIMG_Blue.png │ │ ├── SniperIMG_Brown.png │ │ ├── SniperIMG_Cobalt.png │ │ ├── SniperIMG_Crimson.png │ │ ├── SniperIMG_Cyan.png │ │ ├── SniperIMG_Emerald.png │ │ ├── SniperIMG_Green.png │ │ ├── SniperIMG_Indigo.png │ │ ├── SniperIMG_Lime.png │ │ ├── SniperIMG_Magenta.png │ │ ├── SniperIMG_Mauve.png │ │ ├── SniperIMG_Olive.png │ │ ├── SniperIMG_Orange.png │ │ ├── SniperIMG_Pink.png │ │ ├── SniperIMG_Purple.png │ │ ├── SniperIMG_Red.png │ │ ├── SniperIMG_Sienna.png │ │ ├── SniperIMG_Steel.png │ │ ├── SniperIMG_Taupe.png │ │ ├── SniperIMG_Teal.png │ │ ├── SniperIMG_Violet.png │ │ ├── SniperIMG_Yellow.png │ │ └── SniperImage.png │ ├── WindowsIcons-license.txt │ ├── ajax-loader.gif │ └── teamdev.licenses ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── SplashScreen.xaml ├── SplashScreen.xaml.cs ├── UILogger.cs ├── Win32 │ └── ConsoleHelper.cs ├── cert.pfx ├── costura32 │ └── sqlite3.dll ├── costura64 │ └── sqlite3.dll └── packages.config ├── README.md ├── RocketBot2 ├── CommandLineUtility │ └── Arguments.cs ├── Config │ ├── Translations │ │ ├── TEMPLATE-translation.en.json │ │ ├── translation.ca.json │ │ ├── translation.cs.json │ │ ├── translation.da.json │ │ ├── translation.de.json │ │ ├── translation.el.json │ │ ├── translation.es.json │ │ ├── translation.et.json │ │ ├── translation.fr.json │ │ ├── translation.hu.json │ │ ├── translation.id.json │ │ ├── translation.it.json │ │ ├── translation.ja-JP.json │ │ ├── translation.ja-JP2.json │ │ ├── translation.kh.json │ │ ├── translation.lt.json │ │ ├── translation.nl-NL.json │ │ ├── translation.nn-NO.json │ │ ├── translation.pl.json │ │ ├── translation.pt-br.json │ │ ├── translation.pt-pt.json │ │ ├── translation.ro.json │ │ ├── translation.ru-RU.json │ │ ├── translation.sv.json │ │ ├── translation.th.json │ │ ├── translation.tr.json │ │ ├── translation.uk-UA.json │ │ ├── translation.vi.json │ │ ├── translation.zh-CN.json │ │ ├── translation.zh-CN_pp.json │ │ ├── translation.zh-HK.json │ │ └── translation.zh-TW.json │ ├── log4net.config │ └── log4net.unix.config ├── ConsoleLogger.cs ├── FodyWeavers.xml ├── Forms │ ├── AuthAPIForm.Designer.cs │ ├── AuthAPIForm.cs │ ├── AuthAPIForm.resx │ ├── EggsForm.Designer.cs │ ├── EggsForm.cs │ ├── EggsForm.resx │ ├── EvoleToPokemon.Designer.cs │ ├── EvoleToPokemon.cs │ ├── EvoleToPokemon.resx │ ├── InfoForm.Designer.cs │ ├── InfoForm.cs │ ├── InfoForm.resx │ ├── ItemBox.cs │ ├── ItemBox.designer.cs │ ├── ItemBox.resx │ ├── ItemForm.cs │ ├── ItemForm.designer.cs │ ├── ItemForm.resx │ ├── ItemSetting.Designer.cs │ ├── ItemSetting.cs │ ├── ItemSetting.resx │ ├── MainForm.cs │ ├── MainForm.designer.cs │ ├── MainForm.resx │ ├── NicknamePokemonForm.cs │ ├── NicknamePokemonForm.designer.cs │ ├── NicknamePokemonForm.resx │ ├── PokeDexForm.Designer.cs │ ├── PokeDexForm.cs │ ├── PokeDexForm.resx │ ├── PokemonPropertiesForm.Designer.cs │ ├── PokemonPropertiesForm.cs │ ├── PokemonPropertiesForm.resx │ ├── SettingForm.Designer.cs │ ├── SettingForm.cs │ ├── SettingForm.resx │ ├── StarterConfigForm.Designer.cs │ ├── StarterConfigForm.cs │ ├── StarterConfigForm.resx │ └── advSettings │ │ └── JsonTreeViewLoader.cs ├── Helpers │ ├── MachineIdHelper.cs │ ├── Options.cs │ ├── PokemomObject.cs │ ├── ResourceHelper.cs │ ├── S2GMapDrawer.cs │ └── VersionHelper.cs ├── Images │ ├── Markers │ │ ├── location.png │ │ └── location2.png │ └── Miscs │ │ ├── GymVisited.png │ │ ├── Logo.png │ │ ├── PayPalDonateNow.png │ │ ├── question.png │ │ ├── slashed.png │ │ └── spawn.png ├── Logic │ └── State │ │ └── VersionCheckState.cs ├── Models │ ├── GMapMarkerPokestops.cs │ └── GMapMarkerTrainer.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── EggDB.Designer.cs │ ├── EggDB.resx │ ├── Ico.ico │ ├── ItemIdDB.Designer.cs │ ├── ItemIdDB.resx │ ├── PokemonDB.Designer.cs │ ├── PokemonDB.resx │ ├── ProgressBar.cs │ └── msvc.cer ├── RocketBot2.csproj ├── RunWithExcelConfig.bat ├── Win32 │ └── ConsoleHelper.cs ├── cert.pfx ├── costura32 │ └── sqlite3.dll ├── costura64 │ └── sqlite3.dll └── packages.config ├── nuget.exe └── packages ├── Google.Api.CommonProtos.1.2.0 └── lib │ ├── net45 │ ├── Google.Api.CommonProtos.dll │ └── Google.Api.CommonProtos.xml │ └── netstandard1.3 │ ├── Google.Api.CommonProtos.dll │ └── Google.Api.CommonProtos.xml ├── Google.Api.Gax.2.3.0 └── lib │ ├── net45 │ ├── Google.Api.Gax.dll │ └── Google.Api.Gax.xml │ └── netstandard1.3 │ ├── Google.Api.Gax.dll │ └── Google.Api.Gax.xml ├── Google.Apis.1.32.2 └── lib │ ├── net45 │ ├── Google.Apis.PlatformServices.dll │ ├── Google.Apis.dll │ └── Google.Apis.xml │ └── netstandard1.3 │ ├── Google.Apis.dll │ └── Google.Apis.xml ├── Google.Apis.Analytics.v3.1.0.2 └── lib │ └── net45 │ └── Google.Apis.Analytics.v3.dll ├── Google.Apis.Auth.1.32.2 └── lib │ ├── net45 │ ├── Google.Apis.Auth.PlatformServices.dll │ ├── Google.Apis.Auth.dll │ └── Google.Apis.Auth.xml │ └── netstandard1.3 │ ├── Google.Apis.Auth.PlatformServices.dll │ ├── Google.Apis.Auth.dll │ └── Google.Apis.Auth.xml └── Google.Apis.Core.1.32.2 └── lib ├── net45 ├── Google.Apis.Core.dll └── Google.Apis.Core.xml └── netstandard1.3 ├── Google.Apis.Core.dll └── Google.Apis.Core.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/Gemfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /KillSwitch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/KillSwitch.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NecroBot-Private for Pokemon GO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/NecroBot-Private for Pokemon GO.sln -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/CommandLineUtility/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/CommandLineUtility/Arguments.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.ca.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.cs.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.da.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.de.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.el.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.es.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.et.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.fr.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.hu.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.id.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.it.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.ja-JP.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.ja-JP2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.ja-JP2.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.kh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.kh.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.lt.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.nl-NL.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.nn-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.nn-NO.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.pl.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.pt-br.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.pt-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.pt-pt.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.ro.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.ru-RU.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.sv.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.th.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.tr.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.uk-UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.uk-UA.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.vi.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.zh-CN.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.zh-HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.zh-HK.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/translation.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/translation.zh-TW.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/Translations/ui.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/Translations/ui.pl.json -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/log4net.config -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Config/log4net.unix.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Config/log4net.unix.config -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/ConsoleLogger.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/FodyWeavers.xml -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/AuthAPIForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/AuthAPIForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/AuthAPIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/AuthAPIForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/AuthAPIForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/AuthAPIForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/InfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/InfoForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/InfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/InfoForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/InfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/InfoForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/StarterConfigForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/StarterConfigForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/StarterConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/StarterConfigForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Forms/StarterConfigForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Forms/StarterConfigForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/InterceptKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/InterceptKey.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/PoGo.NecroBot.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/PoGo.NecroBot.CLI.csproj -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Program.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Properties/Resources.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Properties/Resources1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Properties/Resources1.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Resources/Ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Resources/Ico.ico -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Resources/PayPalDonateNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Resources/PayPalDonateNow.png -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Resources/PayPalDonateNow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Resources/PayPalDonateNow1.png -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Resources/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Resources/ProgressBar.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Resources/msvc.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Resources/msvc.cer -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/Resources/necro_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/Resources/necro_logo.jpg -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/RunWithExcelConfig.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | NecroBot2.exe -provider excel 3 | -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/SETUP.md -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/cert.pfx -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/costura32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/costura32/sqlite3.dll -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/costura64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/costura64/sqlite3.dll -------------------------------------------------------------------------------- /PoGo.NecroBot.CLI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.CLI/packages.config -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Caching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Caching.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/Anti-Captcha/AntiCaptchaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/Anti-Captcha/AntiCaptchaClient.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/Anti-Captcha/AnticaptchaResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/Anti-Captcha/AnticaptchaResult.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/Anti-Captcha/AnticaptchaTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/Anti-Captcha/AnticaptchaTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/Anti-Captcha/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/Anti-Captcha/HttpHelper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/CaptchaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/CaptchaManager.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/CaptchaSolutionClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/CaptchaSolutionClient.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Captcha/TwoCaptchaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Captcha/TwoCaptchaClient.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Common/PokemonGradeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Common/PokemonGradeHelper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Common/Translations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Common/Translations.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Common/UITranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Common/UITranslation.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Config/log4net.config -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Config/log4net.unix.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Config/log4net.unix.config -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/DataDumper/Dumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/DataDumper/Dumper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/DataDumper/IDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/DataDumper/IDumper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/BotSwitchedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/BotSwitchedEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/DisplayHighestsPokemonEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/DisplayHighestsPokemonEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EggHatchedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EggHatchedEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EggIncubatorStatusEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EggIncubatorStatusEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EggsListEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EggsListEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EncounteredEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EncounteredEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/ErrorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/ErrorEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EventDispatcher.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EventUsedPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EventUsedPotion.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EventUsedRevive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EventUsedRevive.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/EvolveCountEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/EvolveCountEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/FortFailedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/FortFailedEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/FortTargetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/FortTargetEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/FortUsedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/FortUsedEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/GetRouteEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/GetRouteEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymBattleStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymBattleStarted.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymDeployEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymDeployEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymDetailInfoEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymDetailInfoEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymErrorUnset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymErrorUnset.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymEventMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymEventMessages.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymListEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymListEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymTeamJoinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymTeamJoinEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Gym/GymWalkToTargetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Gym/GymWalkToTargetEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/HumanWalkSnipeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/HumanWalkSnipeEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/HumanWalkingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/HumanWalkingEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/IEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/InfoEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/InfoEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Inventory/FavoriteEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Inventory/FavoriteEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Inventory/UpgradeFinishEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Inventory/UpgradeFinishEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/InventoryListEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/InventoryListEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/ItemRecycledEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/ItemRecycledEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/KillSwitchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/KillSwitchEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/LogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/LogEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/LootPokestopEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/LootPokestopEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/NicknameUpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/NicknameUpdateEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/NoPokeballEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/NoPokeballEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/NoticeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/NoticeEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Player/BuddyUpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Player/BuddyUpdateEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Player/LoggedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Player/LoggedEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Player/LoginEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Player/LoginEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Player/TargetLocationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Player/TargetLocationEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokeStopListEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokeStopListEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokemonCaptureEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokemonCaptureEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokemonEvolveEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokemonEvolveEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokemonLevelUpEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokemonLevelUpEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokemonListEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokemonListEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokemonsEncounterEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokemonsEncounterEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/PokestopLimitUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/PokestopLimitUpdate.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/ProfileEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/ProfileEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/RenamePokemonEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/RenamePokemonEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Snipe/AllBotSnipeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Snipe/AllBotSnipeEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Snipe/AutoSnipePokemonAddedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Snipe/AutoSnipePokemonAddedEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Snipe/SnipePokemonStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Snipe/SnipePokemonStarted.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/Snipe/SnipePokemonUpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/Snipe/SnipePokemonUpdateEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/SnipeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/SnipeEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/SnipeModeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/SnipeModeEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/SnipePokemonFoundEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/SnipePokemonFoundEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/SnipeScanEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/SnipeScanEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/TransferPokemonEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/TransferPokemonEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/UI/StatusBarEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/UI/StatusBarEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/UpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/UpdateEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/UpdatePositionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/UpdatePositionEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/UpgradePokemonEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/UpgradePokemonEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/UseBerryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/UseBerryEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/UseLuckyEggEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/UseLuckyEggEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Event/WarnEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Event/WarnEvent.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Extensions.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/AutoUpdateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/AutoUpdateForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/AutoUpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/AutoUpdateForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/AutoUpdateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/AutoUpdateForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/CaptchaSolveForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/CaptchaSolveForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/CaptchaSolveForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/CaptchaSolveForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/CaptchaSolveForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/CaptchaSolveForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/EXComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/EXComboBox.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/EXListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/EXListView.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/Extentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/Extentions.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/InitialTutorialForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/InitialTutorialForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/InitialTutorialForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/InitialTutorialForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/InitialTutorialForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/InitialTutorialForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/SelectAccountForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/SelectAccountForm.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/SelectAccountForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/SelectAccountForm.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Forms/SelectAccountForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Forms/SelectAccountForm.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Inventory.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Localization/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Localization/Localizer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Logging/APILogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Logging/APILogListener.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Logging/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Logging/FileLogger.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Logging/ILogger.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Logging/Logger.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Logging/LoggingStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Logging/LoggingStrings.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Logging/WebSocketLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Logging/WebSocketLogger.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/MKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/MKS.txt -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Account.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/AccountConfigContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/AccountConfigContext.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/BotAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/BotAccount.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/BotActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/BotActions.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/ElevationConfigContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/ElevationConfigContext.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/ElevationLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/ElevationLocation.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/GeoLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/GeoLocation.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/GeoLocationConfigContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/GeoLocationConfigContext.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Bounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Bounds.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Element.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Geo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Geo.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Geometry.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Leg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Leg.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Polyline.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Result.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Route.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Row.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleObjects/Step.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleResult.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Google/GoogleWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Google/GoogleWalk.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/IGeoLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/IGeoLocation.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Mapzen/MapzenWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Mapzen/MapzenWalk.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/PokemonGrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/PokemonGrade.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/PokemonTimestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/PokemonTimestamp.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/PokestopTimestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/PokestopTimestamp.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/APIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/APIConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/AuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/AuthConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/AuthSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/AuthSettings.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/BaseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/BaseConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/BerryUseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/BerryUseFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/CaptchaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/CaptchaConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/CatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/CatchConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/CatchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/CatchFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/CatchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/CatchSettings.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/ClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/ClientSettings.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/ConsoleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/ConsoleConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/CustomCatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/CustomCatchConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/DataSharingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/DataSharingConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/DeviceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/DeviceConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/EvolveConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/EvolveConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/EvolveFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/EvolveFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/ExcelConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/ExcelConfigAttribute.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/FilterUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/FilterUtil.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/GUIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/GUIConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/GlobalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/GlobalSettings.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/GoogleWalkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/GoogleWalkConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/GpxConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/GpxConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/GymConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/GymConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/HumanWalkSnipeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/HumanWalkSnipeConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/HumanWalkSnipeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/HumanWalkSnipeFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/HumanlikeDelays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/HumanlikeDelays.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/IPokemonFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/IPokemonFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/ItemRecycleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/ItemRecycleConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/ItemRecycleFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/ItemRecycleFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/LevelUpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/LevelUpConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/Location.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/LocationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/LocationConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/LogicSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/LogicSettings.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/MapzenWalkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/MapzenWalkConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/MultipleBotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/MultipleBotConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/NotificationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/NotificationConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/PlayerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/PlayerConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/PokeStopConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/PokeStopConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/PokemonConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/PokemonConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/ProxyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/ProxyConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/SnipeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/SnipeConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/SnipeFIlter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/SnipeFIlter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/SoftBanConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/SoftBanConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/TelegramConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/TelegramConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/TransferConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/TransferConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/TransferFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/TransferFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/UpdateConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/UpdateConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/UpgradeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/UpgradeFilter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/WebsocketsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/WebsocketsConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Settings/YoursWalkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Settings/YoursWalkConfig.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Model/Yours/YoursWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Model/Yours/YoursWalk.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/MultiAccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/MultiAccountManager.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Navigation.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/PoGo.NecroBot.Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/PoGo.NecroBot.Logic.csproj -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/PoGoUtils/PokemonEvolutionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/PoGoUtils/PokemonEvolutionHelper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/PoGoUtils/PokemonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/PoGoUtils/PokemonInfo.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Properties/Resources.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Resources/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Resources/ajax-loader.gif -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Resources/msvc.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Resources/msvc.cer -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/AnalyticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/AnalyticsService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/BotDataSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/BotDataSocketClient.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/ConsoleEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/ConsoleEventListener.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/Elevation/ElevationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/Elevation/ElevationService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/Elevation/IElevationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/Elevation/IElevationService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/GoogleDirectionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/GoogleDirectionsService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/MapzenDirectionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/MapzenDirectionsService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/PushNotificationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/PushNotificationListener.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/SniperEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/SniperEventListener.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/AllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/AllCommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/ExitCommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/HelpCommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/ICommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/LocCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/LocCommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/LogsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/LogsCommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramCommand/TopCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramCommand/TopCommand.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/TelegramUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/TelegramUtils.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/WebSocketInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/WebSocketInterface.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Service/YoursDirectionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Service/YoursDirectionsService.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/BlockableScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/BlockableScope.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/BotSwitcherState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/BotSwitcherState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/CatchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/CatchState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/CheckTosState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/CheckTosState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/FarmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/FarmState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/GymTeamState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/GymTeamState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/IState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/IState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/IdleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/IdleState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/InfoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/InfoState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/LoadSaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/LoadSaveState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/LoginState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/LoginState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/Session.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/SessionStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/SessionStats.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/StateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/StateMachine.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/State/VersionCheckState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/State/VersionCheckState.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/StatisticsAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/StatisticsAggregator.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Strategies/Walk/BaseWalkStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Strategies/Walk/BaseWalkStrategy.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Strategies/Walk/FlyStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Strategies/Walk/FlyStrategy.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Strategies/Walk/GoogleStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Strategies/Walk/GoogleStrategy.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Strategies/Walk/HumanStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Strategies/Walk/HumanStrategy.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Strategies/Walk/IWalkStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Strategies/Walk/IWalkStrategy.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/BaseTransferPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/BaseTransferPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/CatchIncensePokemonsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/CatchIncensePokemonsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/CatchLurePokemonsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/CatchLurePokemonsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/CatchNearbyPokemonsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/CatchNearbyPokemonsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/DisplayPokemonStatsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/DisplayPokemonStatsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/EggsListTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/EggsListTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/EvolveSpecificPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/EvolveSpecificPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/FarmPokestopsGPXTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/FarmPokestopsGPXTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/FarmPokestopsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/FarmPokestopsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/FavoritePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/FavoritePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/GetGymBadgeDetailsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/GetGymBadgeDetailsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/GetPokeDexCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/GetPokeDexCount.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/GymFeedPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/GymFeedPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/HumanRandomActionTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/HumanRandomActionTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.PokeZZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.PokeZZ.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.Pokecrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.Pokecrew.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.Pokeradar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.Pokeradar.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.Skiplagged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.Skiplagged.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/HumanWalkSnipeTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/InventoryListTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/InventoryListTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/LevelUpPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/LevelUpPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/LevelUpSpecificPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/LevelUpSpecificPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/MSniperServiceTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/MSniperServiceTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/PokemonListTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/PokemonListTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/RecycleItemsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/RecycleItemsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/RenamePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/RenamePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/RenameSinglePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/RenameSinglePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/SelectBuddyPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/SelectBuddyPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/SetMoveToTargetTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/SetMoveToTargetTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/TransferDuplicatePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/TransferDuplicatePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/TransferPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/TransferPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/TransferWeakPokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/TransferWeakPokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UpgradeSinglePokemonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UpgradeSinglePokemonTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseFortItemsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseFortItemsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseGymBattleTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseGymBattleTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseIncenseConstantlyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseIncenseConstantlyTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseIncenseTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseIncenseTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseIncubatorsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseIncubatorsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseItemMoveRerollTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseItemMoveRerollTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseLuckyEggConstantlyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseLuckyEggConstantlyTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseLuckyEggTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseLuckyEggTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseNearbyPokestopsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseNearbyPokestopsTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Tasks/UseRareCandyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Tasks/UseRareCandyTask.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/TinyIoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/TinyIoC.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/AsyncLock.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/DelayingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/DelayingUtils.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/EggWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/EggWalker.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/ErrorHandler.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/ExcelConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/ExcelConfigHelper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/GPXReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/GPXReader.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/JitterUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/JitterUtils.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/LocationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/LocationUtils.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/NecroWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/NecroWebClient.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/PushNotificationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/PushNotificationClient.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/RouteOptimizeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/RouteOptimizeUtil.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/Statistics.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/StringUtils.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/Utils/WebUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/Utils/WebUtils.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/config.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/config.xlsm -------------------------------------------------------------------------------- /PoGo.NecroBot.Logic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Logic/packages.config -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/App.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/App.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Behaviors/DataGridBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Behaviors/DataGridBehavior.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Config/Translations/ui.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Config/Translations/ui.pl.json -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Config/Translations/ui.vn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Config/Translations/ui.vn.json -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Config/Translations/ui.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Config/Translations/ui.zh-TW.json -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Config/log4net.config -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Config/log4net.unix.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Config/log4net.unix.config -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/EggsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/EggsControl.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/EggsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/EggsControl.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/FilteringDataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/FilteringDataGrid.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/ItemsInventory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/ItemsInventory.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/ItemsInventory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/ItemsInventory.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapControl.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapControl.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/Circle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/Circle.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/Circle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/Circle.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/Cross.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/Cross.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/Cross.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/Cross.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/FortMarker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/FortMarker.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/GymMarker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/GymMarker.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/GymMarker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/GymMarker.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/PlayerMarker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/PlayerMarker.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/TargetMarker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/TargetMarker.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/big-trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/big-trainer.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/pokestop-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/pokestop-used.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/pokestop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/pokestop.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/red-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/red-dot.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/MapMarkers/trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/MapMarkers/trainer.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/Overlay.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/PlayerInfo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/PlayerInfo.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/PlayerInfo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/PlayerInfo.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/PokemonInventory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/PokemonInventory.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/PokemonInventory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/PokemonInventory.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/SidebarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/SidebarControl.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/SidebarControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/SidebarControl.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/Sidebars/PokestopItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/Sidebars/PokestopItem.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/SnipeGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/SnipeGrid.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/SnipeGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/SnipeGrid.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/SniperControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/SniperControl.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/SniperControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/SniperControl.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/TemplatedAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/TemplatedAdorner.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/TrolleyTooltip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/TrolleyTooltip.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Controls/TrolleyTooltip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Controls/TrolleyTooltip.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/DurationTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/DurationTextConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/EnumToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/EnumToNumberConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/FavoriteTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/FavoriteTextConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/GrayScaleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/GrayScaleConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/HeaderFilterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/HeaderFilterConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/I18NConveter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/I18NConveter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/I18NMultiConveter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/I18NMultiConveter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/IVToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/IVToColorConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/ItemIdToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/ItemIdToImageConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/ListCountConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/ListCountConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/ListPokemonIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/ListPokemonIdConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/MoveConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/MoveConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/OperatorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/OperatorConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/PokemonImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/PokemonImageConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/ValueConverterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/ValueConverterGroup.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Converters/VisibleIfTrueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Converters/VisibleIfTrueConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Effects/GrayscaleEffect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Effects/GrayscaleEffect.dll -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Extensions/ObjectExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Extensions/ObjectExtentions.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Extensions/UIExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Extensions/UIExtensions.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/FilterSetting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/FilterSetting.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/FilterSetting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/FilterSetting.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/FodyWeavers.xml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Ico.ico -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/MainClientWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/MainClientWindow.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/MainClientWindow.xaml.UIEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/MainClientWindow.xaml.UIEvents.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/MainClientWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/MainClientWindow.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/AddManualSnipeCoordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/AddManualSnipeCoordViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/AffectPokemonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/AffectPokemonViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/CatchPokemonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/CatchPokemonViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/DataContext.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/EggViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/EggViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/EggsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/EggsListViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/FortViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/FortViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/GymViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/GymViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/IncubatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/IncubatorViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/ItemsListDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/ItemsListDataModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/ItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/ItemsViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/MapPokemonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/MapPokemonViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/MapViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/MapViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/ObservableCollectionExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/ObservableCollectionExt.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PlayerInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PlayerInfoModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PokeDexEntryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PokeDexEntryViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PokedexItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PokedexItemsViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PokemonDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PokemonDataViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PokemonListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PokemonListModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PokemonViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PokemonViewModelBase.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/PokestopItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/PokestopItemViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/SidebarItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/SidebarItemViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/SidebarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/SidebarViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/SnipeListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/SnipeListViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/SnipePokemonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/SnipePokemonViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/UIViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/UIViewModel.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Model/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Model/ViewModelBase.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/ObservableCollectionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/ObservableCollectionConverter.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/ObservablePairCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/ObservablePairCollection.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Pair.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/PoGo.Necrobot.Window.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/PoGo.Necrobot.Window.csproj -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/PokedexWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/PokedexWindow.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/PokedexWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/PokedexWindow.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Properties/Resources.resx -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Properties/Settings.settings -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Accounts/AccountsImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Accounts/AccountsImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Console/ConsoleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Console/ConsoleImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Amber.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Brown.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Cobalt.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Crimson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Crimson.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Emerald.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Green.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Indigo.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Magenta.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Mauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Mauve.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Olive.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Orange.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Purple.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Sienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Sienna.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Steel.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Taupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Taupe.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Violet.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsIMG_Yellow.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Eggs/EggsImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Eggs/EggsImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Entypo-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Entypo-license.txt -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Entypo.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Heavy.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Medium.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Fonts/Lato/Lato-Thin.ttf -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Amber.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Brown.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Cobalt.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Crimson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Crimson.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Emerald.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Green.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Indigo.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Magenta.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Mauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Mauve.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Olive.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Orange.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Purple.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Sienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Sienna.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Steel.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Taupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Taupe.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Violet.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubIMG_Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubIMG_Yellow.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Hub/HubImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Hub/HubImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Icons.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/IconsNonShared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/IconsNonShared.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Amber.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Brown.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Cobalt.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Crimson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Crimson.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Emerald.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Green.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Indigo.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Magenta.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Mauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Mauve.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Olive.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Orange.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Purple.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Sienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Sienna.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Steel.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Taupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Taupe.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Violet.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsIMG_Yellow.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Items/ItemsImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Items/ItemsImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Amber.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Brown.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Cobalt.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Crimson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Crimson.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Emerald.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Green.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Indigo.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Magenta.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Mauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Mauve.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Olive.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Orange.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Purple.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Sienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Sienna.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Steel.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Taupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Taupe.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Violet.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/MapIMG_Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/MapIMG_Yellow.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Map/mapImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Map/mapImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Pokemon/PokemonImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Pokemon/PokemonImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Amber.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Blue.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Brown.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Cobalt.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Cyan.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Green.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Indigo.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Lime.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Mauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Mauve.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Olive.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Orange.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Pink.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Purple.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Red.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Sienna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Sienna.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Steel.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Taupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Taupe.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Teal.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Violet.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperIMG_Yellow.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/Sniper/SniperImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/Sniper/SniperImage.png -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/WindowsIcons-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/WindowsIcons-license.txt -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/ajax-loader.gif -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Resources/teamdev.licenses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Resources/teamdev.licenses -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/SettingsWindow.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/SplashScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/SplashScreen.xaml -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/SplashScreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/SplashScreen.xaml.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/UILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/UILogger.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/Win32/ConsoleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/Win32/ConsoleHelper.cs -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/cert.pfx -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/costura32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/costura32/sqlite3.dll -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/costura64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/costura64/sqlite3.dll -------------------------------------------------------------------------------- /PoGo.NecroBot.Window/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/PoGo.NecroBot.Window/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/README.md -------------------------------------------------------------------------------- /RocketBot2/CommandLineUtility/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/CommandLineUtility/Arguments.cs -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.ca.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.cs.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.da.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.de.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.el.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.es.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.et.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.fr.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.hu.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.id.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.it.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.ja-JP.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.ja-JP2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.ja-JP2.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.kh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.kh.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.lt.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.nl-NL.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.nn-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.nn-NO.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.pl.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.pt-br.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.pt-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.pt-pt.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.ro.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.ru-RU.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.sv.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.th.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.tr.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.uk-UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.uk-UA.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.vi.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.zh-CN.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.zh-CN_pp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.zh-CN_pp.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.zh-HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.zh-HK.json -------------------------------------------------------------------------------- /RocketBot2/Config/Translations/translation.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/Translations/translation.zh-TW.json -------------------------------------------------------------------------------- /RocketBot2/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/log4net.config -------------------------------------------------------------------------------- /RocketBot2/Config/log4net.unix.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Config/log4net.unix.config -------------------------------------------------------------------------------- /RocketBot2/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/ConsoleLogger.cs -------------------------------------------------------------------------------- /RocketBot2/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/FodyWeavers.xml -------------------------------------------------------------------------------- /RocketBot2/Forms/AuthAPIForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/AuthAPIForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/AuthAPIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/AuthAPIForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/AuthAPIForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/AuthAPIForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/EggsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/EggsForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/EggsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/EggsForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/EggsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/EggsForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/EvoleToPokemon.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/EvoleToPokemon.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/EvoleToPokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/EvoleToPokemon.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/EvoleToPokemon.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/EvoleToPokemon.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/InfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/InfoForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/InfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/InfoForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/InfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/InfoForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemBox.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemBox.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemBox.designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemBox.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemForm.designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemSetting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemSetting.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemSetting.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/ItemSetting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/ItemSetting.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/MainForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/MainForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/MainForm.designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/MainForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/NicknamePokemonForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/NicknamePokemonForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/NicknamePokemonForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/NicknamePokemonForm.designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/NicknamePokemonForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/NicknamePokemonForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/PokeDexForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/PokeDexForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/PokeDexForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/PokeDexForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/PokeDexForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/PokeDexForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/PokemonPropertiesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/PokemonPropertiesForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/PokemonPropertiesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/PokemonPropertiesForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/PokemonPropertiesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/PokemonPropertiesForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/SettingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/SettingForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/SettingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/SettingForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/SettingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/SettingForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/StarterConfigForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/StarterConfigForm.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/StarterConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/StarterConfigForm.cs -------------------------------------------------------------------------------- /RocketBot2/Forms/StarterConfigForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/StarterConfigForm.resx -------------------------------------------------------------------------------- /RocketBot2/Forms/advSettings/JsonTreeViewLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Forms/advSettings/JsonTreeViewLoader.cs -------------------------------------------------------------------------------- /RocketBot2/Helpers/MachineIdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Helpers/MachineIdHelper.cs -------------------------------------------------------------------------------- /RocketBot2/Helpers/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Helpers/Options.cs -------------------------------------------------------------------------------- /RocketBot2/Helpers/PokemomObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Helpers/PokemomObject.cs -------------------------------------------------------------------------------- /RocketBot2/Helpers/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Helpers/ResourceHelper.cs -------------------------------------------------------------------------------- /RocketBot2/Helpers/S2GMapDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Helpers/S2GMapDrawer.cs -------------------------------------------------------------------------------- /RocketBot2/Helpers/VersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Helpers/VersionHelper.cs -------------------------------------------------------------------------------- /RocketBot2/Images/Markers/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Markers/location.png -------------------------------------------------------------------------------- /RocketBot2/Images/Markers/location2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Markers/location2.png -------------------------------------------------------------------------------- /RocketBot2/Images/Miscs/GymVisited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Miscs/GymVisited.png -------------------------------------------------------------------------------- /RocketBot2/Images/Miscs/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Miscs/Logo.png -------------------------------------------------------------------------------- /RocketBot2/Images/Miscs/PayPalDonateNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Miscs/PayPalDonateNow.png -------------------------------------------------------------------------------- /RocketBot2/Images/Miscs/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Miscs/question.png -------------------------------------------------------------------------------- /RocketBot2/Images/Miscs/slashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Miscs/slashed.png -------------------------------------------------------------------------------- /RocketBot2/Images/Miscs/spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Images/Miscs/spawn.png -------------------------------------------------------------------------------- /RocketBot2/Logic/State/VersionCheckState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Logic/State/VersionCheckState.cs -------------------------------------------------------------------------------- /RocketBot2/Models/GMapMarkerPokestops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Models/GMapMarkerPokestops.cs -------------------------------------------------------------------------------- /RocketBot2/Models/GMapMarkerTrainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Models/GMapMarkerTrainer.cs -------------------------------------------------------------------------------- /RocketBot2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Program.cs -------------------------------------------------------------------------------- /RocketBot2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RocketBot2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Properties/Resources.resx -------------------------------------------------------------------------------- /RocketBot2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Properties/Settings.settings -------------------------------------------------------------------------------- /RocketBot2/Resources/EggDB.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/EggDB.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Resources/EggDB.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/EggDB.resx -------------------------------------------------------------------------------- /RocketBot2/Resources/Ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/Ico.ico -------------------------------------------------------------------------------- /RocketBot2/Resources/ItemIdDB.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/ItemIdDB.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Resources/ItemIdDB.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/ItemIdDB.resx -------------------------------------------------------------------------------- /RocketBot2/Resources/PokemonDB.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/PokemonDB.Designer.cs -------------------------------------------------------------------------------- /RocketBot2/Resources/PokemonDB.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/PokemonDB.resx -------------------------------------------------------------------------------- /RocketBot2/Resources/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/ProgressBar.cs -------------------------------------------------------------------------------- /RocketBot2/Resources/msvc.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Resources/msvc.cer -------------------------------------------------------------------------------- /RocketBot2/RocketBot2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/RocketBot2.csproj -------------------------------------------------------------------------------- /RocketBot2/RunWithExcelConfig.bat: -------------------------------------------------------------------------------- 1 | echo off 2 | RocketBot2.exe -provider excel -------------------------------------------------------------------------------- /RocketBot2/Win32/ConsoleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/Win32/ConsoleHelper.cs -------------------------------------------------------------------------------- /RocketBot2/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/cert.pfx -------------------------------------------------------------------------------- /RocketBot2/costura32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/costura32/sqlite3.dll -------------------------------------------------------------------------------- /RocketBot2/costura64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/costura64/sqlite3.dll -------------------------------------------------------------------------------- /RocketBot2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/RocketBot2/packages.config -------------------------------------------------------------------------------- /nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/nuget.exe -------------------------------------------------------------------------------- /packages/Google.Api.Gax.2.3.0/lib/net45/Google.Api.Gax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/packages/Google.Api.Gax.2.3.0/lib/net45/Google.Api.Gax.dll -------------------------------------------------------------------------------- /packages/Google.Api.Gax.2.3.0/lib/net45/Google.Api.Gax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/packages/Google.Api.Gax.2.3.0/lib/net45/Google.Api.Gax.xml -------------------------------------------------------------------------------- /packages/Google.Apis.1.32.2/lib/net45/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/packages/Google.Apis.1.32.2/lib/net45/Google.Apis.dll -------------------------------------------------------------------------------- /packages/Google.Apis.1.32.2/lib/net45/Google.Apis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Necrobot-Private/NecroBot/HEAD/packages/Google.Apis.1.32.2/lib/net45/Google.Apis.xml --------------------------------------------------------------------------------