Necronomicon's Version of FeroxRev's Bot menu

User Tag List

Page 13 of 66 FirstFirst ... 9101112131415161763 ... LastLast
Results 181 to 195 of 976
  1. #181
    hardell's Avatar Member
    Reputation
    11
    Join Date
    Mar 2016
    Posts
    68
    Thanks G/R
    15/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eyoubdw59 View Post
    No matter where I put the "leaveStrongest" in the transfer line, the transfer is always disabled. What should the line look like ?

    Mine looks like that : public string TransferType => GetSetting() != string.Empty ? GetSetting() : "leaveStrongest";
    And it doesn't work
    Wrong file man. Check the readme.

    Necronomicon's Version of FeroxRev's Bot
  2. #182
    xoreyo's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cedricdu94 View Post
    Where modify this ? What's the logic ?
    private async Task<MiscEnums.Item> GetBestBall()
    {
    var inventory = await GetInventory();

    var ballCollection = inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.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
    || y.ItemId == MiscEnums.Item.ITEM_MASTER_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;
    var masterBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_MASTER_BALL).
    DefaultIfEmpty(new {ItemId = MiscEnums.Item.ITEM_MASTER_BALL, Amount = 0}).FirstOrDefault().Amount;

    if (masterBallsCount > 0)
    return MiscEnums.Item.ITEM_MASTER_BALL;

    if (ultraBallsCount > 0)
    return MiscEnums.Item.ITEM_ULTRA_BALL;

    if (greatBallsCount > 0)
    return MiscEnums.Item.ITEM_GREAT_BALL;

    return MiscEnums.Item.ITEM_POKE_BALL;
    }

    Its already in there m8.

    In Clients.cs

  3. #183
    dawnera's Avatar Member
    Reputation
    4
    Join Date
    Jun 2013
    Posts
    32
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would be nice if it would do the transfers when ur box is full or something. ^_^

  4. #184
    bossman300's Avatar Member
    Reputation
    2
    Join Date
    Jun 2014
    Posts
    3
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My bot cant find any pokestops and everything keeps getting away from it
    [20:57:37] Eevee with CP 108 got away..
    [20:57:47] Farmed XP: 0, Gems: 0, Eggs: Items:
    [20:58:03] Farmed XP: 0, Gems: 0, Eggs: Items:
    [20:58:19] Pidgey with CP 41 got away..

  5. #185
    andyt315's Avatar Member
    Reputation
    4
    Join Date
    May 2012
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hardell View Post
    Wrong file man. Check the readme.
    so, right now, this bot will not transfer after catch? so when it will transfer then? if I set leaveStrongest

  6. #186
    Skara's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bossman300 View Post
    My bot cant find any pokestops and everything keeps getting away from it
    Softbanned probably.

  7. #187
    Deedaa's Avatar Member
    Reputation
    3
    Join Date
    Dec 2013
    Posts
    42
    Thanks G/R
    22/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cedricdu94 View Post
    Use my bat file, restart 5mn so u skip error after 100 try and transfert duplicate after each restart, save file start.bat in PokemonGo.RocketAPI.Console.exe folder

    @ECHO OFF
    :start
    timeout /t 300
    TASKKILL /F /IM "PokemonGo.RocketAPI.Console.exe"
    timeout /t 3
    start "PokemonGo.RocketAPI.Console.exe" "E:\Compressed\Pokemon-Go-Rocket-API-master_8\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Console\bin\Debug\PokemonGo.RocketAPI.Console.exe"
    goto start
    REM pause
    will this work for google account?

  8. #188
    thenameDS's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bossman300 View Post
    My bot cant find any pokestops and everything keeps getting away from it
    Looks like you have received a soft ban. Try again in a few hours or use different account.

  9. #189
    zs12's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to enable transferring because at the moment it disabled ?

  10. #190
    ahmar789's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    only transfers pokemon at the starting pls fix

  11. #191
    bossman300's Avatar Member
    Reputation
    2
    Join Date
    Jun 2014
    Posts
    3
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i can still play the game on my phone though?

  12. Thanks Slie1937 (1 members gave Thanks to bossman300 for this useful post)
  13. #192
    godpwnage's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not unless you modified it with the GetBestBall() script that someone posted in the other thread. Currently it uses pokeballs:
    Necronomicon's Version of FeroxRev's Bot-capture-jpg

    EDIT: nvm, seems like GetBestball() is used in CatchPokemon(), isn't the last argument useless then?
    Last edited by godpwnage; 07-20-2016 at 08:06 PM.

  14. #193
    spoofjack's Avatar Active Member
    Reputation
    23
    Join Date
    May 2009
    Posts
    187
    Thanks G/R
    14/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its not softban the other bot works fine. Its the move he made to setting

    Code:
                        ; //note: reverted from settings because this should not be part of settings but part of logic

  15. #194
    ahmar789's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So this means if server issues happen it will not retry itself that means I cannot leave this overnight right?

  16. #195
    bossman300's Avatar Member
    Reputation
    2
    Join Date
    Jun 2014
    Posts
    3
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im not sure what you mean by this!

Similar Threads

  1. [Question] Editing console output (with FeroxRev's bot)
    By Zexpeo in forum Pokemon GO Chat
    Replies: 0
    Last Post: 07-22-2016, 01:55 PM
  2. Mac OS X BG Bot version 2.0.X
    By Valmilu in forum World of Warcraft Bots and Programs
    Replies: 30
    Last Post: 02-10-2007, 11:39 AM
  3. Tool to get all Fish/bots working for EU version users! [self-made]
    By -MadMax- in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 09-08-2006, 09:02 AM
  4. [WoW Bot] WoW Glider Full Version 0.6.8
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 39
    Last Post: 05-08-2006, 12:15 AM
All times are GMT -5. The time now is 12:13 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