C# Bot menu

User Tag List

Thread: C# Bot

Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    kaptainkook's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    50
    Thanks G/R
    6/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    C# Bot

    Hi there,
    I'd like to share my work done on a C# API library which might help you develop yours!
    It currently has the following features and i'll be adding more later this week:
    PTC Login / Google last part
    Get Map Objects and Inventory
    Search for gyms/pokestops/spawns
    Farm pokestops
    Farm all Pokemon in neighborhood
    Source https://github.com/FeroxRev/Pokemon-Go-Rocket-API
    If you're interested in helping or have ideas on how to automatically generate the .proto headers (incl types) then send me a PM!
    Small note
    I only implemented the last part of the google login. If you MITM the /auth call going to android.google.com, then check the request headers and paste them in the settings.cs. PTC requires no annoying setup.
    Example usage
    await client.LoginPtc("username", "password");
    var serverResponse = await client.GetServer();
    var profile = await client.GetProfile();
    var settings = await client.GetSettings();
    var mapObjects = await client.GetMapObjects();
    var inventory = await client.GetInventory();

    await ExecuteFarmingPokestops(client);
    await ExecuteCatchAllNearbyPokemons(client);



    https://www.reddit.com/r/pokemongode...in_c/?sort=new

    C# Bot
  2. Thanks Detk0rd (1 members gave Thanks to kaptainkook for this useful post)
  3. #2
    Detk0rd's Avatar Member
    Reputation
    1
    Join Date
    Dec 2014
    Posts
    22
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for this, if you ever build hte project i wouldnt mind testing, i dont really know to much about c# any more been years for me.. since i've used it i mean like 7 years or so. lol

  4. #3
    bengeminuy's Avatar Member
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    -Deleted-

    -Realized that this was a copy paste of the reddit post. Sad. Someone here able to use this? Please?
    Last edited by bengeminuy; 07-19-2016 at 11:53 AM. Reason: Realization for being too excited without checking reddit post.

  5. #4
    gurkensalat88's Avatar Member
    Reputation
    5
    Join Date
    Dec 2014
    Posts
    18
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    why do you post a reddit thread here? i am sure 90% read it .. if you made a tutorial how to use and compile or give a compiled one .... its just a 1:1 copy/paste from reddit? oO

  6. Thanks kaptainkook (1 members gave Thanks to gurkensalat88 for this useful post)
  7. #5
    uploader619's Avatar Knight
    Reputation
    65
    Join Date
    Jul 2016
    Posts
    219
    Thanks G/R
    13/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    are you the one that made this or you are just copying and getting the credit from the creator of this?

  8. #6
    awp2004's Avatar Active Member
    Reputation
    34
    Join Date
    Jun 2012
    Posts
    631
    Thanks G/R
    0/4
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gurkensalat88 View Post
    why do you post a reddit thread here? i am sure 90% read it .. if you made a tutorial how to use and compile or give a compiled one .... its just a 1:1 copy/paste from reddit? oO
    well, as being in the 10% non-reddit users, im glad but I see your point.
    Anyway, did anyone try this?

  9. #7
    kaptainkook's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    50
    Thanks G/R
    6/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I mean I linked the reddit post at the bottom...Just open it up and VS and follow the readme.

  10. #8
    uploader619's Avatar Knight
    Reputation
    65
    Join Date
    Jul 2016
    Posts
    219
    Thanks G/R
    13/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    open it with what do you need to install C# first ? seems its not an exe which you can just run its hard to run

  11. #9
    ensar00's Avatar Member
    Reputation
    3
    Join Date
    Aug 2009
    Posts
    11
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)



    Works fine.

  12. #10
    Devolkoff's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have 0 knowledge about C#...
    how can i use this? any tutorial for newbie?

  13. #11
    uploader619's Avatar Knight
    Reputation
    65
    Join Date
    Jul 2016
    Posts
    219
    Thanks G/R
    13/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ensar00 View Post



    Works fine.
    im trying to make it work i have VS 2015 already i cant compile or maybe im doing something wrong

  14. #12
    bengeminuy's Avatar Member
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ensar00 View Post



    Works fine.
    Please teach us sensei.

  15. #13
    badidea's Avatar Member
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    9
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    download C# Express/Microsoft Visual Studio Express (community edition)
    open sln.
    compile, read notes from readme, if using google auth. (may be to complicated for you right now)

    or have someone compile it for you if using PTC and call it a day. (from someone you trust as they can send you anything in the EXE aka virus/malware)

  16. #14
    bengeminuy's Avatar Member
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by badidea View Post
    download C# Express/Microsoft Visual Studio Express (community edition)
    open sln.
    compile, read notes from readme, if using google auth. (may be to complicated for you right now)

    or have someone compile it for you if using PTC and call it a day. (from someone you trust as they can send you anything in the EXE aka virus/malware)
    I'm willing to learn how to use Google Auth. Please teach me.

  17. #15
    skrillux0's Avatar Member
    Reputation
    1
    Join Date
    Nov 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

Page 1 of 2 12 LastLast

Similar Threads

  1. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  2. WoWGlider and GALB Botting Locations
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 04-11-2006, 08:01 PM
  3. Bot for gaining XP
    By JesseG18 in forum World of Warcraft General
    Replies: 1
    Last Post: 03-09-2006, 08:52 PM
  4. World of Warcraft Bot (GetALifeBot) 0.57 working with 1.9.4
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-07-2006, 09:43 PM
  5. Best Botting/Grinding Locations
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 02-27-2006, 12:39 AM
All times are GMT -5. The time now is 08:31 PM. 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