Necrobot - sniping | egghatch | gpx | lure | incense | & more menu

Shout-Out

User Tag List

Page 8 of 282 FirstFirst ... 45678910111258108 ... LastLast
Results 106 to 120 of 4221
  1. #106
    Zongfoo's Avatar Contributor
    Reputation
    109
    Join Date
    Dec 2007
    Posts
    150
    Thanks G/R
    10/28
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sandking91 View Post
    @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.

    Necrobot - sniping | egghatch | gpx | lure | incense | & more
  2. #107
    Artistaum's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by HPT View Post
    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 !

  3. #108
    jvats's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you help me ? I want to use catching allpokemon with masterball ? no pokeball

  4. #109
    Malkira's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    29
    Thanks G/R
    16/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more-op-jpg

    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

  5. Thanks Neer (1 members gave Thanks to Malkira for this useful post)
  6. #110
    mpslayer's Avatar Contributor
    Reputation
    112
    Join Date
    Dec 2008
    Posts
    142
    Thanks G/R
    24/53
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where did the transfer settings get moved to?
    Rebot Mod (RIP)

  7. #111
    HPT's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sandking91 View Post
    @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

  8. #112
    TheGhostMaster's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    46
    Thanks G/R
    15/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Malkira View Post
    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more-op-jpg

    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?

  9. #113
    Zongfoo's Avatar Contributor
    Reputation
    109
    Join Date
    Dec 2007
    Posts
    150
    Thanks G/R
    10/28
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Malkira View Post


    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!

  10. #114
    Elytius's Avatar Member
    Reputation
    1
    Join Date
    May 2014
    Posts
    22
    Thanks G/R
    3/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  11. #115
    liffe's Avatar Active Member
    Reputation
    30
    Join Date
    May 2009
    Posts
    178
    Thanks G/R
    13/18
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to set this up with simulated walking?

  12. #116
    Malkira's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    29
    Thanks G/R
    16/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ferox bot, I just ss the running consoles

  13. #117
    DanGuerrero's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    31
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How does the transfer work? It transfer only duplicate pokemon..?

  14. #118
    rtstrauma's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what kind of exp rates are people getting? I'm getting about ~35k exp phr

  15. #119
    BlooDSki's Avatar Active Member
    Reputation
    37
    Join Date
    May 2012
    Posts
    535
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elytius View Post
    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

  16. #120
    grapedrankdawg's Avatar Banned
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    24
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rtstrauma View Post
    what kind of exp rates are people getting? I'm getting about ~35k exp phr



    I get 55k exp without lucky eggs.

Page 8 of 282 FirstFirst ... 45678910111258108 ... LastLast

Similar Threads

  1. Necrobot & Sniping problem.
    By victornoleto in forum Pokemon GO Hacks|Cheats
    Replies: 5
    Last Post: 08-26-2016, 05:54 AM
  2. [Release] PokeMobBot - sniping | egghatch | gpx | lure | incense | & more
    By DurtyFree in forum Pokemon GO Hacks|Cheats
    Replies: 175
    Last Post: 07-31-2016, 03:16 PM
  3. [Release] [»»] NecroBOT Discord Channel (Live) [««] (Pokemon coordinates, support & more!)
    By LennoxAli in forum Pokemon GO Hacks|Cheats
    Replies: 2
    Last Post: 07-31-2016, 11:48 AM
  4. [Release] Necrobot.io - sniping | egghatch | gpx | lure | incense | & more
    By nonm in forum Pokemon GO Hacks|Cheats
    Replies: 43
    Last Post: 07-31-2016, 11:43 AM
  5. [Question] Necrobot sniping
    By xswayer in forum Pokemon GO Chat
    Replies: 1
    Last Post: 07-31-2016, 10:25 AM
All times are GMT -5. The time now is 10:13 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search