Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 41 of 66 FirstFirst ... 373839404142434445 ... LastLast
Results 601 to 615 of 976
  1. #601
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by takeavvay View Post
    can you post an example of what the configs should look like for google? Im a little confused sorry
    in App.config (capital A), find:
    Code:
    <appSettings>
        <add key="AuthType" value="Google"/><!--Google/Ptc-->
    For Google, the default value is setup correctly

    After starting up, the console window gives you a code (something like: TURE--YUAA)

    Go to www.google.com/device
    Select the account you want to login with
    Enter the code
    Confirm
    Check back in the console window, it should automatically start
    .
    bitcoin? or gold coin?
    .

    Necronomicon's Version of FeroxRev's Bot
  2. #602
    angrytestie's Avatar Active Member
    Reputation
    15
    Join Date
    Oct 2012
    Posts
    149
    Thanks G/R
    2/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what do i have to enter here? "GoogleRefreshToken" value="" " which value? where i find it :/? help

    bot is working so far when i enter the code ect. but it stops after 30 min and i get this error help?

    http://imgur.com/a/TrhKY

    thanks in advance !
    Last edited by angrytestie; 07-21-2016 at 04:48 AM. Reason: typus

  3. #603
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ev0lbyte View Post
    Does anybody have any idea at what lvl i will stop getting normal pokeballs ?
    You will always keep getting normal pokeballs (at least until lvl 28 as far as I know)
    .
    bitcoin? or gold coin?
    .

  4. #604
    Tobbo88's Avatar Member
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    66
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've noticed you have to rebuild the .exe every hour or so? as it wont work otherwise? (google login)

  5. #605
    daastaman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    33
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What we need now:


    • Evolve

    • Destroy potions&other items above quantity X

    • Special treatment for high lvl pokemon (use raspberry)




    Evolve maybe someone can already help, where to set the pokemon.ids you want to evolve etc.

  6. #606
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by angrytestie View Post
    what do i have to enter here? "GoogleRefreshToken" value="" " which value? where i find it :/? help

    bot is working so far when i enter the code ect. but it stops after 30 min and i get this error help?

    Imgur: The most awesome images on the Internet

    thanks in advance !
    In the file: GoogleLogin.cs, find:

    Code:
    Console.WriteLine("Logged in Google Account..");
    Below that, paste this new line:
    Code:
    Console.WriteLine("Refresh Token: " + tokenResponse.refresh_token);
    Your code now looks like this:
    Code:
    Console.WriteLine("Logged in Google Account..");
    Console.WriteLine("Refresh Token: " + tokenResponse.refresh_token);
    return tokenResponse;
    When you start the bot, the console window will give you a Token (something like 1/QIWUrn1Op1JOoFervBmX7MVr5JLQYXnLmIGVUzQU4A3)
    Enter that into the App.config file

    CREDITS FOR THIS GO TO: psicrest (Necronomicon's Version of FeroxRev's Bot)


    This is how the console looks when giving you the token:
    Necronomicon's Version of FeroxRev's Bot-console-token-jpg
    Last edited by DeKnarf; 07-21-2016 at 04:57 AM. Reason: added image
    .
    bitcoin? or gold coin?
    .

  7. Thanks in_debt, RisH09 (2 members gave Thanks to DeKnarf for this useful post)
  8. #607
    angrytestie's Avatar Active Member
    Reputation
    15
    Join Date
    Oct 2012
    Posts
    149
    Thanks G/R
    2/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DeKnarf View Post
    In the file: GoogleLogin.cs, find:

    Code:
    Console.WriteLine("Logged in Google Account..");
    Below that, paste this new line:
    Code:
    Console.WriteLine("Refresh Token: " + tokenResponse.refresh_token);
    Your code now looks like this:
    Code:
    Console.WriteLine("Logged in Google Account..");
    Console.WriteLine("Refresh Token: " + tokenResponse.refresh_token);
    return tokenResponse;
    When you start the bot, the console window will give you a Token (something like 1/QIWUrn1Op1JOoFervBmX7MVr5JLQYXnLmIGVUzQU4A3)
    Enter that into the App.config file

    CREDITS FOR THIS GO TO: psicrest
    thank you very much <3

  9. #608
    nav4321's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    1,259
    Thanks G/R
    2/19
    Trade Feedback
    63 (94%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elytius View Post
    Kinda new to this, how do you get the refresh token info?

    Edit: I'm dumb, should've run the program before asking.
    I still get the error "ArgumentOutOfRangeException - Restarting" and it asks me to enter google code again.

    What am I doing wrong?

  10. #609
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by angrytestie View Post
    thank you very much <3
    Please give thanks to this post http://www.ownedcore.com/forums/poke...ml#post3463434 (Necronomicon's Version of FeroxRev's Bot) instead
    .
    bitcoin? or gold coin?
    .

  11. #610
    CyaBB's Avatar Member Authenticator enabled
    Reputation
    14
    Join Date
    Apr 2014
    Posts
    150
    Thanks G/R
    21/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where is the part to auto transfer pokemon till a specified number?

  12. #611
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CyaBB View Post
    Where is the part to auto transfer pokemon till a specified number?
    You can find it in Client.cs
    .
    bitcoin? or gold coin?
    .

  13. #612
    Crazyhead's Avatar Elite User
    Reputation
    328
    Join Date
    May 2009
    Posts
    287
    Thanks G/R
    19/316
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nonm View Post
    Good Morning guys , I will have a big Update ready in some Hours
    Could you also add a complete changelog and a list with the features that are currently in it

  14. #613
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Crazyhead View Post
    Could you also add a complete changelog and a list with the features that are currently in it
    You can find everything in the GitHub:

    https://github.com/NecronomiconCodin...-Go-Rocket-API

    More coming soon, as announced.
    .
    bitcoin? or gold coin?
    .

  15. #614
    senseirain's Avatar Member
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    142
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awesome! You have already got the newest version! 1.2.2.0

    after ctrl+f5 i got this:

    Unhandled exception: System.argumentnullexception: Value cannot be null.
    Parameter name: Value
    at google.protobuf.protopreconditions.checknotnull[t](t value, string name)
    at pokemongo.rocketapi.generatedcode.request.types.authinfo.types.jwt.set_contents( string value) in c:\users\senseirain\downloads\pokemon go\pokemon-go-rocket-api-master v2\pokemongo\rocketapi\generatedcode\request.cs:line 1625
    at pokemongo.rocketapi.helpers.requestbuilder.getinitialrequest(string authtoken, authtype authtype, double lat, double lng, double altitude, requests[] customrequests) in c:\users\senseirain\downloads\pokemon go\pokemon-go-rocket-api-master v2\pokemongo\rocketapi\helpers\requestbuilder.cs:line 16
    at pokemongo.rocketapi.helpers.requestbuilder.getinitialrequest(string authtoken, authtype authtype, double lat, double lng, double altitude, requesttype[] customrequesttypes) in c:\users\senseirain\downloads\pokemon go\pokemon-go-rocket-api-master v2\pokemongo\rocketapi\helpers\requestbuilder.cs:line 44
    at pokemongo.rocketapi.client.<setserver>d__23.movenext() in c:\users\senseirain\downloads\pokemon go\pokemon-go-rocket-api-master v2\pokemongo\rocketapi\client.cs:line 342
    --- end of stack trace from previous location where exception was thrown ---
    at system.runtime.compilerservices.taskawaiter.throwfornonsuccess(task task)
    at system.runtime.compilerservices.taskawaiter.handlenonsuccessanddebuggernotificat ion(task task)
    at system.runtime.compilerservices.taskawaiter.getresult()
    at pokemongo.rocketapi.console.program.<execute>d__5.movenext() in c:\users\senseirain\downloads\pokemon go\pokemon-go-rocket-api-master v2\pokemongo\rocketapi\console\program.cs:line 142
    --- end of stack trace from previous location where exception was thrown ---
    at system.runtime.compilerservices.asyncmethodbuildercore.<>c.<throwasync>b__6_1(ob ject state)
    at system.threading.queueuserworkitemcallback.waitcallback_context(object state)
    at system.threading.executioncontext.runinternal(executioncontext executioncontext, contextcallback callback, object state, boolean preservesyncctx)
    at system.threading.executioncontext.run(executioncontext executioncontext, contextcallback callback, object state, boolean preservesyncctx)
    at system.threading.queueuserworkitemcallback.system.threading.ithreadpoolworkitem. executeworkitem()
    at system.threading.threadpoolworkqueue.dispatch()
    at system.threading._threadpoolwaitcallback.performwaitcallback()
    press any key to continue . . .

  16. #615
    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)
    Make sure your App.config looks like this:

    https://github.com/NecronomiconCodin...ole/App.config

    Press Build then click on "Rebuild Solution"

    Run the bot and go to google.com/device and enter the user code.

    Once the code is accepted the bot will print the Refresh token COPY THE TOKEN AND CLOSE THE BOT

    Go back to app.config and paste the refresh token in the right field (something like this)
    Code:
    <add key="GoogleRefreshToken" value="1/QIWUrn1Op1JOoFervBmX7MVr5JLQYXnLmIGVUzQU4A3"/>
    run the bot again, it will not ask you to go back in google.com/device and will keep running even if there were some common exception triggered.

  17. Thanks Dartex (1 members gave Thanks to psicrest for this useful post)
Page 41 of 66 FirstFirst ... 373839404142434445 ... 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 03:20 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