-
Contributor
Originally Posted by
sandking91
@HPT
So try creating BATCH file which will restart the app every 60 seconds. Not great, but working
#########
:1
TIMEOUT /T 10
start cmd /c "C:\boty\path\Pokemon-Go-Rocket-API-master\PokemonGo.RocketAPI.Console\bin\Debug\PokemonGo.RocketAPI.Console.exe"
TIMEOUT /T 60
taskkill /im PokemonGo.RocketAPI.Console.exe /F
goto 1
############
Why do you need this? I have been running the unedited release for over an hour now. No crashes, or bans. And it's collecting/hunting/transferring/evolving like crazy constantly.
-
Member
Originally Posted by
HPT
PokemonGO.RocketAPI.Console -> Setting.cs (Line 24)
How i do this bro, i don't understand.
My settings don't use not like that.
/// <summary>
/// Don't touch. User settings are in Console/App.config
/// </summary>
public string TransferType => GetSetting() != string.Empty ? GetSetting() : "none";
public int TransferCPThreshold => GetSetting() != string.Empty ? int.Parse(GetSetting(), CultureInfo.InvariantCulture) : 0;
public bool EvolveAllGivenPokemons => GetSetting() != string.Empty ? System.Convert.ToBoolean(GetSetting(), CultureInfo.InvariantCulture) : false;
public AuthType AuthType => (GetSetting() != string.Empty ? GetSetting() : "Ptc") == "Ptc" ? AuthType.Ptc : AuthType.Google;
public string PtcUsername => GetSetting() != string.Empty ? GetSetting() : "username";
public string PtcPassword => GetSetting() != string.Empty ? GetSetting() : "password";
public double DefaultLatitude => GetSetting() != string.Empty ? double.Parse(GetSetting(), CultureInfo.InvariantCulture) : 51.22640;
//Default Amsterdam Central Station if another location is not specified
public double DefaultLongitude => GetSetting() != string.Empty ? double.Parse(GetSetting(), CultureInfo.InvariantCulture) : 6.77874;
//Default Amsterdam Central Station if another location is not specified
// LEAVE EVERYTHING ALONE
public string GoogleRefreshToken
{
get { return GetSetting() != string.Empty ? GetSetting() : string.Empty; }
set { SetSetting(value); }
}
private string GetSetting([CallerMemberName] string key = null)
{
return ConfigurationManager.AppSettings[key];
}
private void SetSetting(string value, [CallerMemberName] string key = null)
{
var configFile = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
if (key != null) configFile.AppSettings.Settings[key].Value = value;
configFile.Save();
}
Look !
-
Member
Can you help me ? I want to use catching allpokemon with masterball ? no pokeball
-
-
Post Thanks / Like - 1 Thanks
Neer (1 members gave Thanks to Malkira for this useful post)
-
Contributor
Where did the transfer settings get moved to?
-
Member
Originally Posted by
sandking91
@HPT
So try creating BATCH file which will restart the app every 60 seconds. Not great, but working
#########
:1
TIMEOUT /T 10
start cmd /c "C:\boty\path\Pokemon-Go-Rocket-API-master\PokemonGo.RocketAPI.Console\bin\Debug\PokemonGo.RocketAPI.Console.exe"
TIMEOUT /T 60
taskkill /im PokemonGo.RocketAPI.Console.exe /F
goto 1
############
Oh thank you so much <3 Love you
-
Member
Originally Posted by
Malkira
Just wanna give a huge thanks to Necro and Neer for all of this. Been running the program for a straight 3 hours now with no issues whatsoever. I have no experience in running this kind of stuff but for some reason I kinda understood a little of it just by following the instructions and changing a bit of things here and there, never knew until now that coding can be a very beautiful thing

Nice! is that this bot or the python bot Neer posted?
-
Contributor
Originally Posted by
Malkira
Just wanna give a huge thanks to Necro and Neer for all of this. Been running the program for a straight 3 hours now with no issues whatsoever. I have no experience in running this kind of stuff but for some reason I kinda understood a little of it just by following the instructions and changing a bit of things here and there, never knew until now that coding can be a very beautiful thing

I'm in the exact same boat as you
Mine is now running almost 2 hours. No editing. No problems. Thank you guys for your work!
-
Member
Not a big deal, but after about 2 hours I got this issue over an over;
"--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNot
ification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.GetResult()
at PokemonGo.RocketAPI.Logic.Logic.<Execute>d__4.MoveNext() in C:\Users\Elyti
us\Downloads\Pokemon-Go-Rocket-API-master (3)\Pokemon-Go-Rocket-API-master\Pokem
onGo.RocketAPI.Logic\Logic.cs:line 40"
Only thing I've changed is I took out code to evolve pokemon
-
Active Member
how to set this up with simulated walking?
-
Member
Ferox bot, I just ss the running consoles
-
Member
How does the transfer work? It transfer only duplicate pokemon..?
-
Member
what kind of exp rates are people getting? I'm getting about ~35k exp phr
-
Active Member
Originally Posted by
Elytius
Not a big deal, but after about 2 hours I got this issue over an over;
"--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNot
ification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.GetResult()
at PokemonGo.RocketAPI.Logic.Logic.<Execute>d__4.MoveNext() in C:\Users\Elyti
us\Downloads\Pokemon-Go-Rocket-API-master (3)\Pokemon-Go-Rocket-API-master\Pokem
onGo.RocketAPI.Logic\Logic.cs:line 40"
Only thing I've changed is I took out code to evolve pokemon
I did the same thing removed evolved ran for a little over an hour and got that exact message. Otherwise working perfect great bot
-
Banned
Originally Posted by
rtstrauma
what kind of exp rates are people getting? I'm getting about ~35k exp phr
I get 55k exp without lucky eggs.