-
Active Member
Originally Posted by
b0Ni07
its meowth, not mewtwo

probably everyone have meowth
He is cixelsyd lol
-
Member
http://www.elite pvpers .com/forum/pokemon-hacks-bots-cheats-exploits/4110431-pok-mon-go-c-bot-pokemon-go-rocket-api-pok-stops-pok-mon-farmen-google-ptc.html
someone leaking this bot in another forum, not even crediting anyone.
Last edited by Sappok; 07-21-2016 at 06:23 AM.
-
Post Thanks / Like - 1 Thanks
MSainT98 (1 members gave Thanks to Sappok for this useful post)
-
Member
but PokemonGo.RocketAPI.Console.exe is an xml file, how can I open it? when I CTRL + F5, it gives me an error . Something like "the debug executable file could not be found"
-
Sergeant
Originally Posted by
hotfilehd
How to compile to exe please.
\CatcherStopperTransfer\PokemonGo\RocketAPI\Console\bin\Debug\
There should be a section in the op which includes both this, and how to change delays.
-
Sergeant
Originally Posted by
Sappok
http://www.elite pvpers .com/forum/pokemon-hacks-bots-cheats-exploits/4110431-pok-mon-go-c-bot-pokemon-go-rocket-api-pok-stops-pok-mon-farmen-google-ptc.html
someone leaking this bot in another forum, not even crediting anyone.
Rofl, wanna see something funnier? This guy is charging for uses of this bot [WTS] PokeBot Service! FastXP + Auto Catching + PokeStop collector - Pay Per HOUR - MPGH - MultiPlayer Game Hacking & Cheats
-
Member
Originally Posted by
Bixxn

Its Meowth not Mewtwo :~ Meowth is easy to get and Mewtwo isnt out yet
-
Member
thank you so much axewfious.
I assume public const string LongDurationToken = "fakeid"; is for auto logging you in when the bot stops every 30minutes? How do I enable this?
Thanks!
Last edited by husec; 07-21-2016 at 06:37 AM.
-
Member
Originally Posted by
Sappok
http://www.elite pvpers .com/forum/pokemon-hacks-bots-cheats-exploits/4110431-pok-mon-go-c-bot-pokemon-go-rocket-api-pok-stops-pok-mon-farmen-google-ptc.html
someone leaking this bot in another forum, not even crediting anyone.
Und um es nochmal zu erwähnen, jegliche Credits gehen an: https://github.com/FeroxRev/
he gives credits to FeroxRev ...
-
Member
been half a day getting this error.....usually i always fine since version 2....but today i got DC ed and cant run it anymore,fyi i can still n play with nox
Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object.
at PokemonGo.RocketAPI.Client.<LoginPtc>d__13.MoveNext() in E:\CatcherStopperTransfer\PokemonGo\RocketAPI\Client.cs:line 234
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotificat ion(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.GetResult()
at PokemonGo.RocketAPI.Console.Program.<Execute>d__1.MoveNext() in E:\CatcherStopperTransfer\PokemonGo\RocketAPI\Console\Program.cs:line 37
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.AsyncMethodBuilderCore.<>c.<ThrowAsync>b__6_1(Ob ject state)
at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem. ExecuteWorkItem()
at System.Threading.ThreadPoolWorkQueue.Dispatch()
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()
Press any key to continue . . .
-
Member
Originally Posted by
axewfious
Oh wow, why do these guys do this?
-
Member
Because it's easy moeny for them,, not everybody knows about this bot, we're only the 1% actually
-
Member
Originally Posted by
7ken
It's working. Screen -
@edit2 - working, just add&replace these 2 functions in Client.cs
Code:
private async Task<MiscEnums.Item> GetBestBall()
{
var inventory = await GetInventory();
var ballCollection = inventory.Payload[0].Bag.Items.Select(i => i.Item.Item).Where(p => p != null)
.GroupBy(i => (MiscEnums.Item)i.Item)
.Select(kvp => new { ItemId = kvp.Key, Amount = kvp.Sum(x => x.Count) })
.Where(y => y.ItemId == MiscEnums.Item.ITEM_POKE_BALL
|| y.ItemId == MiscEnums.Item.ITEM_GREAT_BALL
|| y.ItemId == MiscEnums.Item.ITEM_ULTRA_BALL);
var pokeBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_POKE_BALL).
DefaultIfEmpty(new { ItemId = MiscEnums.Item.ITEM_POKE_BALL, Amount = 0 }).FirstOrDefault().Amount;
var greatBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_GREAT_BALL).
DefaultIfEmpty(new { ItemId = MiscEnums.Item.ITEM_GREAT_BALL, Amount = 0 }).FirstOrDefault().Amount;
var ultraBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_ULTRA_BALL).
DefaultIfEmpty(new { ItemId = MiscEnums.Item.ITEM_ULTRA_BALL, Amount = 0 }).FirstOrDefault().Amount;
if (ultraBallsCount > 0)
{
Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Ultra ball has been chosen. " + ultraBallsCount + "balls left.");
return MiscEnums.Item.ITEM_ULTRA_BALL;
}
if (greatBallsCount > 0)
{
Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Great ball has been chosen. " + greatBallsCount + "balls left.");
return MiscEnums.Item.ITEM_GREAT_BALL;
}
Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Poke ball has been chosen. " + pokeBallsCount + "balls left.");
return MiscEnums.Item.ITEM_POKE_BALL;
}
public async Task<CatchPokemonResponse> CatchPokemon(ulong encounterId, string spawnPointGuid, double pokemonLat,
double pokemonLng)
{
MiscEnums.Item bestPokeBall = await GetBestBall();
var customRequest = new Request.Types.CatchPokemonRequest()
{
EncounterId = encounterId,
Pokeball = (int)bestPokeBall,
SpawnPointGuid = spawnPointGuid,
HitPokemon = 1,
NormalizedReticleSize = Utils.FloatAsUlong(1.950),
SpinModifier = Utils.FloatAsUlong(1),
NormalizedHitPosition = Utils.FloatAsUlong(1)
};
var catchPokemonRequest = RequestBuilder.GetRequest(_unknownAuth, _currentLat, _currentLng, 30,
new Request.Types.Requests()
{
Type = (int)RequestType.CATCH_POKEMON,
Message = customRequest.ToByteString()
});
return
await
_httpClient.PostProto<Request, CatchPokemonResponse>($"https://{_apiUrl}/rpc", catchPokemonRequest);
}
has anybody figured it out where to exactly copy and paste it? I'm a bit lost with the explanation
-
Active Member
Last edited by navyguy; 07-21-2016 at 06:58 AM.
-
Sergeant
After running the bot for some time equipment gets full of potions, revives and other useless stuff and you have to manually throw them away so the bot can restock pokeballs from pokestops. Has anyone implemented a way to fix that?
-
Member
i open 3 bots it only works for 1 acc why?