Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 37 of 66 FirstFirst ... 333435363738394041 ... LastLast
Results 541 to 555 of 976
  1. #541
    psicrest's Avatar Active Member

    Reputation
    23
    Join Date
    Sep 2010
    Posts
    23
    Thanks G/R
    3/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by expander8 View Post
    Line 153 is between this two:

    ColoredConsoleWrite(ConsoleColor.Cyan, "Password: " + ClientSettings.PtcPassword + "\n");
    ColoredConsoleWrite(ConsoleColor.DarkGray, "Latitude: " + ClientSettings.DefaultLatitude);

    are you sure is in that line?
    Check out this pastebin

    Necronomicon's Version of FeroxRev's Bot
  2. #542
    ptmazkirut's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    89
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If we want to use transfer? how get it work?

  3. #543
    Sithylis's Avatar Elite User Authenticator enabled
    Reputation
    332
    Join Date
    Jul 2016
    Posts
    562
    Thanks G/R
    124/277
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by expander8 View Post
    Line 153 is between this two:

    ColoredConsoleWrite(ConsoleColor.Cyan, "Password: " + ClientSettings.PtcPassword + "\n");
    ColoredConsoleWrite(ConsoleColor.DarkGray, "Latitude: " + ClientSettings.DefaultLatitude);

    are you sure is in that line?
    What do you mean?

  4. #544
    wetshrimp's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    61
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psicrest View Post
    tentrust made a post about catching the execption and restarting the the program. I have no idea whats causing the error, but after i add right refresh token in the app.config even if it encounters another error tentrust's code restart it and I do not have to input the user code in google.com/device again.

    edit: im an idiot and i tohught it was the device code token thing. ok so i see the refresh token in the cmd. is there a way to copy and paste it easily? its very long.

    wil lthis work forever? or until i restart my computer or something, thne i got to repeat?
    Last edited by wetshrimp; 07-21-2016 at 03:36 AM.

  5. #545
    Super12312'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)
    Hi !

    I set "LeaveStrongest" but i have like 50 doduo ! so why it doesn't work ?

    I need to set another setting ?

  6. #546
    ptmazkirut's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    89
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If we want to use transfer? how get it work? cant find it

  7. #547
    Alters's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psicrest View Post
    tentrust made a post about catching the execption and restarting the the program. I have no idea whats causing the error, but after i add right refresh token in the app.config even if it encounters another error tentrust's code restart it and I do not have to input the user code in google.com/device again.
    im using ptc and i still get this error every 30min
    An exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll but was not handled in user code

    Additional information: Specified argument was out of the range of valid values.

  8. #548
    lantecer's Avatar Member
    Reputation
    1
    Join Date
    Aug 2014
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Super12312 View Post
    Hi !

    I set "LeaveStrongest" but i have like 50 doduo ! so why it doesn't work ?

    I need to set another setting ?
    Select "duplicate". This option leaves you one pokemon of every type with the highest CP, the others will be transfered

  9. #549
    Super12312'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)
    @lantecer My bad !!

    Ok what is the best option in reality ?
    Evolve or not ? dont really know ..

  10. #550
    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)
    Originally Posted by Super12312 View Post
    Hi !

    I set "LeaveStrongest" but i have like 50 doduo ! so why it doesn't work ?

    I need to set another setting ?
    Maybe this?

    <add key="TransferCPThreshold" value="400"/>

  11. #551
    b0Ni07's Avatar Sergeant Major
    Reputation
    19
    Join Date
    Jul 2016
    Posts
    184
    Thanks G/R
    7/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Super12312 View Post
    Hi !

    I set "LeaveStrongest" but i have like 50 doduo ! so why it doesn't work ?

    I need to set another setting ?
    setting.cs

    Code:
            public string TransferType => GetSetting() != string.Empty ? GetSetting() : "leaveStrongest";
            public int TransferCPThreshold => GetSetting() != string.Empty ? int.Parse(GetSetting(), CultureInfo.InvariantCulture) : 0;
    program.cs

    Code:
          private static async Task TransferAllButStrongestUnwantedPokemon(Client client)
            {
                //ColoredConsoleWrite(ConsoleColor.White, $"[{DateTime.Now.ToString("HH:mm:ss")}] Firing up the meat grinder");
    
                var unwantedPokemonTypes = new[]
                {
    
    PokemonId.Doduo,
    
                };

  12. #552
    Shellr57's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Google work 30+ min and :
    Code:
    [05:31:24] Farmed XP: 50, Gems: 0, Eggs:  Items:
    [05:31:40] Farmed XP: 50, Gems: 0, Eggs:  Items:
    [05:31:56] We caught a Magnemite with CP 157
    
    Unhandled Exception: System.ArgumentOutOfRangeException: Specified argument was
    out of the range of valid values.
    Parameter name: index
       at Google.Protobuf.Collections.RepeatedField`1.get_Item(Int32 index)
       at PokemonGo.RocketAPI.Extensions.HttpClientExtensions.<PostProtoPayload>d__1
    `2.MoveNext() in C:\Users\objShell\Desktop\Pokemon-Go-Rocket-API-master\PokemonG
    o\RocketAPI\Extensions\HttpClientExtensions.cs:line 39
    --- 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`1.GetResult()
       at PokemonGo.RocketAPI.Client.<UpdatePlayerLocation>d__24.MoveNext() in C:\Us
    ers\objShell\Desktop\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Client.cs:
    line 350
    --- 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`1.GetResult()
       at PokemonGo.RocketAPI.Console.Program.<ExecuteCatchAllNearbyPokemons>d__6.Mo
    veNext() in C:\Users\objShell\Desktop\Pokemon-Go-Rocket-API-master\PokemonGo\Roc
    ketAPI\Console\Program.cs:line 169
    --- 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.Console.Program.<ExecuteFarmingPokestopsAndPokemons>d_
    _7.MoveNext() in C:\Users\objShell\Desktop\Pokemon-Go-Rocket-API-master\PokemonG
    o\RocketAPI\Console\Program.cs:line 213
    --- 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.Console.Program.<Execute>d__5.MoveNext() in C:\Users\o
    bjShell\Desktop\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Console\Program
    .cs:line 155
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.AsyncMethodBuilderCore.<>c.<ThrowAsync>b__
    6_1(Object state)
       at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(Object sta
    te)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionCo
    ntext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, C
    ontextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWor
    kItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()
    ^A
    pls fix bro

  13. #553
    dartar's Avatar Member
    Reputation
    2
    Join Date
    Jul 2008
    Posts
    19
    Thanks G/R
    2/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DanGuerrero View Post
    Maybe this?

    <add key="TransferCPThreshold" value="400"/>
    i think he means it just transfer on startup, not while farming.?!

  14. #554
    b0Ni07's Avatar Sergeant Major
    Reputation
    19
    Join Date
    Jul 2016
    Posts
    184
    Thanks G/R
    7/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edit : nevermind its k
    Last edited by b0Ni07; 07-21-2016 at 03:41 AM.

  15. #555
    sabbir9985's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    12
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This might be a noob question for you but not for all of us.

    The thing is, can any of you help me out on running multiple instances of bot on same account ?

Page 37 of 66 FirstFirst ... 333435363738394041 ... LastLast

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 02:03 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