This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added 0 value to unknown level * Typo correction * Map Zoom bar fix Zoom bar would grow and shrink. Now it moves as map window grows and shrinks. * Try to fixes show start raids and boss raids * Centred boss image * update gym/team colors Added Neutral Team/Gym Color typos and team color default Changed default team color to Neutral. Typo cBoxTeaamColor.Text to cBoxTeamColor.Text * Try to fixes show start raids and boss raids WPF GUI init * Rocketbot v2.11.0.17 * revise raids * Update image and add missed assets * Typo's corrected code clean up * Update POGOProtos * Fixes to Lured pokestop (rocketbot) * Changed mulitbot account selector Changed Multi bot account selector from Runtimetotal & ID to Lowest level & XP. - to x in item rewards for trainer level ups * changed RAID message bubble Changed from time to raid start/end to actual time of RAID Start/end * fix bug * Optimize code fixes timers tooltips * Fixes various bugs Typo resources update Try to Fixes MainMap (rocketbot) * fix bug * RocketBot release v2.11.0.18 * revise code * cleanup * Update POGOProtos * try to fixes NullReferenceExeption (rocketbot) * try to fixes NullReferenceExeption * added warn flagged into status text caption fixes raidinfos * Typo code * Logic changed Bot will start by choosing account with the lowest level and XP to start. * typo code * Simplify code * move var * simplify variable * Optimize code * Fixes code * RocketBot2 Release v2.11.0.19 * added Raid Spawn added autostart to commande line (rocketbot) RocketBot2 Release v2.11.0.20 * changed Alignmemt in olvPokemonList changed some alignments to centered Changed Raid Times from H & M remaining to actual time to start and end. * Fixed some Transaltion code * remove unused code * fixes cmd line auto start rocketbot2 -a true * fixes cmd line (rocketbot) auto start rocketbot2 -a true or --autostart true * RocketBot2 v2.11.0.21 * remove unused code * Improve headers, add locale * Improve headers, add locale Add missing headers Add locale for parameter and accept language * Rebase values * fixes times * fixes times bug * fixes times bug RocketBot2 v2.11.0.22 * CleanUp RocketBot2 v2.11.0.23 * fixes possibles bugs Update feroxvrev * Update deps * Change refresh main map methodes (rocketobot) Fix bug NecroBot.Windows project file Rocketbot v2.11.0.25 * fix bug * Update headers Fixe Proxy * Added Notification Date & Time to Pushbullet notifications * Fixes loop pokestops * Fixes loop pokestops * minor fixes * Fixes CPU usages Fixes bugs * Simplify code * Fixes CPU usages Fixes bugs * Added spawn resources * Added PushBullet settings … MainForm: Added PushBullet Checkbox to Advanced Settings Settings: Added PushBullet Checkbox to settings(API tab) Added PushBullet API Key Textbox to settings(API tab) TheWizard1328 committed 9 hours ago * Typo Code * minor fixes @TheWizard1328 * Update Dependencies * Loot Gyms and disable others for dev * Hello Appveyor * Added visited Gym Tag Necrobot-Private/PokemonGO-Assets#24 Remove unneeded code * fix condition * added location change pre-start Add the ability to double click map to change start location before starting bot without going into settings. **** Optional to remove later **** Auto saved location to Config. * Added condition according to the initiation arguments * Simplify code * missed into old commit * Update to 0.69.0 needed PR Necrobot-Private/PokemonGo.RocketAPI#147 Add UseItemCapture Added UseItemCaptureTask * attach commit * Add refresh to pokedex form and item rare form * Fixes Proxy values * Update feroxrev cleanup * Update assets module
- Loading branch information
Showing
65 changed files
with
1,346 additions
and
561 deletions.
There are no files selected for viewing
Submodule FeroxRev
updated
4 files
+2 −3 | Client.cs | |
+13 −2 | Constants.cs | |
+17 −7 | LoginProviders/PtcLoginProvider.cs | |
+34 −0 | Rpc/Inventory.cs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule POGOProtos
updated
5 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ public GymConfig() : base() | |
|
||
internal enum TeamColor | ||
{ | ||
Neutral, | ||
Yellow, | ||
Red, | ||
Blue | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using PoGo.NecroBot.Logic.Logging; | ||
using PoGo.NecroBot.Logic.State; | ||
using POGOProtos.Inventory.Item; | ||
using POGOProtos.Networking.Responses; | ||
using POGOProtos.Map.Fort; | ||
|
||
namespace PoGo.NecroBot.Logic.Tasks | ||
{ | ||
public class UseItemCaptureTask | ||
{ | ||
public static async Task Execute(ISession session, ItemId itemid, ulong encounterid, string spawnpointid) | ||
{ | ||
Logger.Write($"Use {itemid.ToString()}", LogLevel.Recycling); | ||
await session.Client.Inventory.UseItemCapture(itemid, encounterid, spawnpointid).ConfigureAwait(false); | ||
} | ||
} | ||
} |
Oops, something went wrong.