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

User Tag List

Page 7 of 282 FirstFirst ... 3456789101157107 ... LastLast
Results 91 to 105 of 4221
  1. #91
    Merudo's Avatar Sergeant
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    35
    Thanks G/R
    0/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TBL-Equi View Post
    Just a headsup for higher level players. Masterballs are used on every 1000 CP pokemon if you don't change it. I set it to 1500 because I really don't want to waste my masterballs on 1100 CP Pinsirs in central park.
    Masterballs can be unlocked? At which level?

    Necrobot - sniping | egghatch | gpx | lure | incense | & more
  2. #92
    monis1133's Avatar Member
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    why console does not show googletoken in console ?

  3. #93
    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)
    I am not a coder at all, but I am good at reading and understanding certain parts of the development. I am running a Google login, without editing anything except co-ords, and it seems to be running slick. I am just going to leave fate in the hands of our coding masters Thanks guys! Love it!

  4. #94
    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 maybe try to change
    await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
    to
    await RepeatAction(2, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
    It shouldn't take much time.
    Ok thankssss

  5. #95
    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)

    =

    Delete shit in the bag code
    Code:
             new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0),
                        new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 0),
                        new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 0),
                        new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 0),
    
                        new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 20),

  6. #96
    SeaPancake3's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Merudo View Post
    For trainers in Central Park:

    I noticed the bot has a tendancy to leave Central Park to reach Pokestops in adjacent streets.

    To ensure the bot only gets Pokestops in Central Park, I changed this code

    Code:
                var pokeStops =
                    mapObjects.MapCells.SelectMany(i => i.Forts)
                        .Where(
                            i => i.Type == FortType.Checkpoint &&
                                i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
    To this


    Code:
                var pokeStops =
                    mapObjects.MapCells.SelectMany(i => i.Forts)
                        .Where(
                            i =>
                                i.Longitude < -103.692313681 + i.Latitude *   .72905203747 &&
                                i.Longitude > -103.703941616 + i.Latitude *   .72905203747 &&
                                i.Longitude <  22.4092333924 + i.Latitude * -2.36190713357 &&
                                i.Longitude >  22.3086001328 + i.Latitude * -2.36190713357 &&
                                i.Type == FortType.Checkpoint &&
                                i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
    where is this code? i cant seem to find it

  7. #97
    alhal's Avatar Member
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    16
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a tutorial to get this running? Thanks

  8. #98
    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)
    Originally Posted by HPT View Post
    Delete shit in the bag code
    Code:
             new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0),
                        new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 0),
                        new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 0),
                        new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 0),
    
                        new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 20),
    What file do we stick that in?

    Where do the transfer settings go now?

    Found the new config settings
    usersettings.settings
    Rebot Mod (RIP)

  9. #99
    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 maybe try to change
    await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
    to
    await RepeatAction(2, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
    It shouldn't take much time.
    Seem not work

  10. #100
    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 mpslayer View Post
    What file do we stick that in?

    Where do the transfer settings go now?

    Found the new config settings
    usersettings.settings
    PokemonGO.RocketAPI.Console -> Setting.cs (Line 24)

  11. #101
    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)
    How to auto repeat it after 1 minute ?

    n PokemonGo.RocketAPI.Logic/Logic.cs
    Code:
    try
    {
    await _client.SetServer();
    await EvolveAllPokemonWithEnoughCandy();
    await TransferDuplicatePokemon(true);
    await RecycleItems();
    await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
    }

  12. #102
    rowxs's Avatar Member
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    160
    Thanks G/R
    35/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    man this bot is hard I cant get the transfer thing to work.......

  13. #103
    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)
    I want to use masterball not pokeball. What Can I do ?

  14. #104
    Merudo's Avatar Sergeant
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    35
    Thanks G/R
    0/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When do people unlock masterball? At level 40?

  15. #105
    sandking91's Avatar Private
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @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
    ############

  16. Thanks HPT (1 members gave Thanks to sandking91 for this useful post)
Page 7 of 282 FirstFirst ... 3456789101157107 ... 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. 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 05:02 PM. 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