[UPDATED] Pokemon Bot in C# Community Version menu

User Tag List

Page 229 of 229 FirstFirst ... 129179225226227228229
Results 3,421 to 3,427 of 3427
  1. #3421
    weird0ne's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm getting about 55k in central park... lol

    [UPDATED] Pokemon Bot in C# Community Version
  2. #3422
    raynandakho's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    12
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, I cant find the settings at " Open the folder 'PokemonGo.RocketAPI.Console' > open folder 'bin' > open folder 'Debug' > open folder 'Settings' "
    what should i do T_T

  3. #3423
    simbean's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ever since the last update I keep getting the same error. anyone with the same issue? [UPDATED] Pokemon Bot in C# Community Version-37bdc9ca34df4826af982685a497588b-jpg

  4. #3424
    nickestrand's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bra jobbat King

  5. #3425
    sEolpox's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CptMcBurger View Post
    Tutorial Spegeli's bot (with Visual Studio) (Updated bot & fully working)

    1. Go to https://github.com/Spegeli/PokemoGoBot-GottaCatchEmAll, press the 'Clone or download' button and get the zip file.

    2. Make a folder and extract the zip file

    3. Download Visual Studio and install it (it's all free): https://www.visualstudio.com/post-do...oadrename=true

    4. Open the folder you've extracted the zip file in. Open 'Pokemon GO Rocket API' with Visual Studio.

    Check the right panel, it's called 'Solution Explorer'. In this panel/list you're basically seeing the content of that folder, all structured.

    5.Double click 'UserSettings.settings'. This is where you can edit speed, latitude/longitude, gmail login etc. You're basically seeing the content of the 'user.xml' file in the user-friendly GUI version. Edit whatever you like. When you're done, press the X (of the tab ofcourse, not VS!!!). It will ask you to save everything, hit yes (obviously).

    6. Now we need to fix our items. For that you'll need to be in the same panel (the Solution Explorer) and double click 'Settings.cs'. Scroll a bit till you see the lines 'ItemUnknown', 'ItemPokeball' etc etc. Edit the values however you like. When you're done, press the X (of the tab). It will ask you again to save everything, hit yes.

    If you're using lists like 'PokemonsToEvolve', 'PokemonsToNotCatch' and 'PokemonsToNotTransfer', please go to your folder where you've extracted the zip. Open the folder 'PokemonGo.RocketAPI.Console' > open folder 'bin' > open folder 'Debug' > open folder 'Settings'. Here you'll see those lists. Open them, put the names of your pokemons in your lists (e.g. Dragonite Rattata). Save the edited lists.

    7. I think we're done setting up the bot. So now it's time to fire it up. For this, check the same panel (Solution Explorer) and find 'PokemonGo.RocketAPI.Console'. Press the right button, hit 'Set as StartUp Project'.

    8. Press CTRL + F5. Your CMD console (like you guys are used to see in the own GUI versions, the user friendly ones) will start up. No tokens required!


    Tutorial Necrobot (without VS, kinda user friendly) (Updated bot & fully working)

    1. Visit https://github.com/NecronomiconCoding/NecroBot/releases

    2. Get the newest version. Download the 'release.zip'

    3. Extract the release.zip. You'll notice the release folder

    4. Open that folder, run Necrobot.exe once. It will auto-close. But it was necessary because some files needed to be generated.

    5. Open the Config folder

    6. Open 'auth' with notepad. You'll see this:

    {
    "AuthType": "google",
    "GoogleRefreshToken": null,
    "PtcUsername": null,
    "PtcPassword": null,
    "GoogleUsername": null,
    "GooglePassword": null
    }


    If you use Google login, then leave AuthType set to 'google'. Go to the GoogleUsername field and write your email there. Go to the GooglePassword field and write your password. However, you need to write it like this:

    {
    "AuthType": "google",
    "GoogleRefreshToken": null,
    "PtcUsername": null,
    "PtcPassword": null,
    "GoogleUsername": "[email protected]",
    "GooglePassword": "FakeAssPassword"
    }


    The " before and after your email as well as your password is very important! Without it, the bot will show errors! Also make sure, after the email line, you end it with a ,

    Just replicate the example given with your real email and password in your auth file!


    If you use PTC login, then change google to ptc and ignore all other fields and use PtcUsername and PtcPassword. Also write it with the " before and after your email as well as your password! And also make sure the email line ends with a ,

    7. We're done with the auth file. Save it and close it. Open up 'config' with notepad and change 'true' in 'false' or edit values and whatever. No special treatments required. Save this sucker and close it

    8.Fire up your bot and everything should work perfect.


    SOME FACTS & TIPS

    *** I understand that people don't want to do the whole VS thing each time they want to run the CMD. To bypass VS once you've set up the bot correctly, you can easily create a shortcut directly to the CMD itself. This can be done by getting in the folder of your bot. Navigate like this: folder 'PokemonGo.Rocket.API.Console' > folder 'bin' > folder 'Debug'. Now you'll see the file 'PokemonGo.RocketApi.Console' (filetype Application). This is the CMD you'll need a shortcut from. Do keep in mind you need VS to edit the settings if needed!

    *** When your CMD fires up, it's save to close Visual Studio!

    *** It's better to learn how to use Visual Studio instead of waiting for an GUI version. It's much more easier to get bots that way. You just need to check Spegeli's github (the link is given in step 1) and see if there are any updates. If so, just download the new zip, extract it, and follow the same steps above.

    *** The BadAuthentication/NeedsBrowser error is fixed by turning OFF your 2 step authentication of your Google account. So log into your Google, go to Security and turn if OFF

    *** If your bot isn't showing any pokestops, that's Niantic cleaning up pokestops and gyms at your chosen location. The bot makers have no business nor any other relation with this issue. It's all Niantic-sided. Just choose another location with pokestops!

    Good luck! And if there are any questions, don't hesitate to ask!
    I followed all your steps and when I try to start it I get an error that says NeedsBrowser from Pokemon Go Rocket API ERROR trying automatic restart.. and it keeps repeating that over and over any idea whats going on and is anyone else having that same issue?

  6. #3426
    SHIZPICKLE's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any of you lads pulling more than 25k exp p/h in central park? No idea why i'm only getting 25k. It's pretty shithouse tbh. Using Necrobro.

  7. #3427
    HI5's Avatar ( ͡° ͜ʖ ͡°) Some Random Leacher
    Authenticator enabled
    Reputation
    1053
    Join Date
    Dec 2007
    Posts
    5,143
    Thanks G/R
    542/299
    Trade Feedback
    217 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thread locked due to project begin discontinued, for ongoing projects see maclone's thread: http://www.ownedcore.com/forums/poke...ongo-bots.html (Maclone's Community Versions - Compiled, ready to go PokemonGo bots)
    Last edited by HI5; 08-03-2016 at 09:21 AM.


Similar Threads

  1. [Release] MyGoBuddy Pokemon BOT/Sniper - Cross Platform - Machine Learning - Always Updated
    By MyGoBuddy in forum Pokemon GO Hacks|Cheats
    Replies: 49
    Last Post: 09-30-2016, 07:36 PM
  2. [Release] Maclone's Community Versions - Compiled, ready to go PokemonGo bots
    By maclone in forum Pokemon GO Hacks|Cheats
    Replies: 2519
    Last Post: 08-24-2016, 11:55 AM
  3. [REV2.0.1] [UPDATED!] Fishing Bot. Written by me =)
    By PopcornWoW in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 06-25-2008, 01:04 AM
  4. 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
  5. [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:00 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search