[UPDATED] Pokemon Bot in C# Community Version menu

User Tag List

Page 204 of 229 FirstFirst ... 104154200201202203204205206207208 ... LastLast
Results 3,046 to 3,060 of 3427
  1. #3046
    Casey Neistat's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nioin View Post
    Look in the log and see if there was an error at the end.

    There are settings in the config to transfer certain pokemon based on CP and IV.
    Here is my config file, I was sure that the way it was set up it would transfer everything. It wasn't transferring Pinsers or Ponytas though.

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <configSections>
            <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="PokemonGo.RocketAPI.Console.UserSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
                <section name="PokemonGo.RocketAPI.Console.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
            </sectionGroup>
        </configSections>
        <startup> 
            <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
        </startup>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
      <userSettings>
        <PokemonGo.RocketAPI.Console.UserSettings>
          <setting name="DefaultAltitude" serializeAs="String">
            <value>10</value>
          </setting>
          <setting name="KeepMinIVPercentage" serializeAs="String">
            <value>100</value>
          </setting>
          <setting name="KeepMinCP" serializeAs="String">
            <value>1000</value>
          </setting>
          <setting name="WalkingSpeedInKilometerPerHour" serializeAs="String">
            <value>300</value>
          </setting>
          <setting name="DefaultLatitude" serializeAs="String">
            <value>33.959108843</value>
          </setting>
          <setting name="DefaultLongitude" serializeAs="String">
            <value>-118.152029502</value>
          </setting>
          <setting name="UsePokemonToNotCatchList" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="AuthType" serializeAs="String">
            <value>Google</value>
          </setting>
          <setting name="PtcUsername" serializeAs="String">
            <value>username</value>
          </setting>
          <setting name="PtcPassword" serializeAs="String">
            <value>password</value>
          </setting>
          <setting name="PrioritizeIVOverCP" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="MaxTravelDistanceInMeters" serializeAs="String">
            <value>1000</value>
          </setting>
          <setting name="UseGPXPathing" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="GPXFile" serializeAs="String">
            <value>GPXFILE.gpx</value>
          </setting>
          <setting name="useLuckyEggsWhileEvolving" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="NotTransferPokemonsThatCanEvolve" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolveOnlyPokemonAboveIV" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolvePokemon" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolveOnlyPokemonAboveIVValue" serializeAs="String">
            <value>95</value>
          </setting>
          <setting name="TransferPokemon" serializeAs="String">
            <value>True</value>
          </setting>
          <setting name="TransferPokemonKeepDuplicateAmount" serializeAs="String">
            <value>1</value>
          </setting>
        </PokemonGo.RocketAPI.Console.UserSettings>
      </userSettings>
    </configuration>

    [UPDATED] Pokemon Bot in C# Community Version
  2. #3047
    nioin's Avatar Sergeant
    Reputation
    8
    Join Date
    Apr 2012
    Posts
    34
    Thanks G/R
    1/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by akaneharuka View Post
    Yes, When I close the bot by click X in the cmd menu and open bignox > pokemon go

    I always get soft ban but I never move far away from my home Tokyo city
    Might be something with Nox because I close bot and log in all the time with no issues.

  3. Thanks akaneharuka (1 members gave Thanks to nioin for this useful post)
  4. #3048
    kelesch429's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i did it already 3 times now but it wont drop it automatically can you help me please

  5. #3049
    nioin's Avatar Sergeant
    Reputation
    8
    Join Date
    Apr 2012
    Posts
    34
    Thanks G/R
    1/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Casey Neistat View Post
    Here is my config file, I was sure that the way it was set up it would transfer everything. It wasn't transferring Pinsers or Ponytas though.

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <configSections>
            <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="PokemonGo.RocketAPI.Console.UserSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
                <section name="PokemonGo.RocketAPI.Console.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
            </sectionGroup>
        </configSections>
        <startup> 
            <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
        </startup>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
      <userSettings>
        <PokemonGo.RocketAPI.Console.UserSettings>
          <setting name="DefaultAltitude" serializeAs="String">
            <value>10</value>
          </setting>
          <setting name="KeepMinIVPercentage" serializeAs="String">
            <value>100</value>
          </setting>
          <setting name="KeepMinCP" serializeAs="String">
            <value>1000</value>
          </setting>
          <setting name="WalkingSpeedInKilometerPerHour" serializeAs="String">
            <value>300</value>
          </setting>
          <setting name="DefaultLatitude" serializeAs="String">
            <value>33.959108843</value>
          </setting>
          <setting name="DefaultLongitude" serializeAs="String">
            <value>-118.152029502</value>
          </setting>
          <setting name="UsePokemonToNotCatchList" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="AuthType" serializeAs="String">
            <value>Google</value>
          </setting>
          <setting name="PtcUsername" serializeAs="String">
            <value>username</value>
          </setting>
          <setting name="PtcPassword" serializeAs="String">
            <value>password</value>
          </setting>
          <setting name="PrioritizeIVOverCP" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="MaxTravelDistanceInMeters" serializeAs="String">
            <value>1000</value>
          </setting>
          <setting name="UseGPXPathing" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="GPXFile" serializeAs="String">
            <value>GPXFILE.gpx</value>
          </setting>
          <setting name="useLuckyEggsWhileEvolving" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="NotTransferPokemonsThatCanEvolve" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolveOnlyPokemonAboveIV" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolvePokemon" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolveOnlyPokemonAboveIVValue" serializeAs="String">
            <value>95</value>
          </setting>
          <setting name="TransferPokemon" serializeAs="String">
            <value>True</value>
          </setting>
          <setting name="TransferPokemonKeepDuplicateAmount" serializeAs="String">
            <value>1</value>
          </setting>
        </PokemonGo.RocketAPI.Console.UserSettings>
      </userSettings>
    </configuration>
    Your config looks fine so I am confused

  6. #3050
    kelesch429's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nioni can you please help me only 2 mins please i will go to sleep and open my bot

  7. #3051
    nioin's Avatar Sergeant
    Reputation
    8
    Join Date
    Apr 2012
    Posts
    34
    Thanks G/R
    1/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kelesch429 View Post
    nioni can you please help me only 2 mins please i will go to sleep and open my bot
    You're using version 2 of pokefast? It automatically clears items. Like this: [UPDATED] Pokemon Bot in C# Community Version-recycling-png

  8. #3052
    kelesch429's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am using pokecolors do you got skype i can show you my screenshare

  9. #3053
    nioin's Avatar Sergeant
    Reputation
    8
    Join Date
    Apr 2012
    Posts
    34
    Thanks G/R
    1/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kelesch429 View Post
    i am using pokecolors do you got skype i can show you my screenshare
    I don't think Pokecolor clears inventory. Try Pokefast 2 in the first page of this thread, it's more recent and will clear items. There are other issues though so it might not be as stable. There are other options like Spegeli's bot which you can find on the forum, and seem more stable to me - but not as much EXP.

  10. #3054
    kelesch429's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i downloaded now pokefast2 can you help me to turn it on i dont know how that works cant finde the run file

  11. #3055
    kelesch429's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nion why you dont want help me man thats sucks its should take only 2 mins wth is wrong with you i am not anonymous i cant hack youre ****ing computer i just want bring that bot to work

  12. #3056
    wiruso's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    7
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for developers:
    can be make to delete all the Pokémon with the cp/IV less given, even if this Pokemon 1 in the inventory?

  13. #3057
    randykaskuser's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kelesch429 View Post
    nion why you dont want help me man thats sucks its should take only 2 mins wth is wrong with you i am not anonymous i cant hack youre ****ing computer i just want bring that bot to work
    the cock u talking about

  14. Thanks Casey Neistat (1 members gave Thanks to randykaskuser for this useful post)
  15. #3058
    nioin's Avatar Sergeant
    Reputation
    8
    Join Date
    Apr 2012
    Posts
    34
    Thanks G/R
    1/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kelesch429 View Post
    nion why you dont want help me man thats sucks its should take only 2 mins wth is wrong with you i am not anonymous i cant hack youre ****ing computer i just want bring that bot to work
    I was away from my computer. The information for setting it up is available either on page 1 or with the download. It's very similar to pokecolor. Open up the config and change the values.

  16. #3059
    reegant's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RasmuzElm View Post
    Hello , i've been reading about 70+ page. but i can't find the best configuration for "keep only the strongest each type pokemon, and transfer the weaker one."

    can anybody here give me the best configuration for it? i really thankful for that.
    example: i got pikachu with cp 900, 800,700,600,500 . i only want to keep the top 3 strongest one, which is keep the 900,800, and 700. and transfer the weaker ones.
    Up, I need this configuration too


    And honestly I don't understand IV-IV thing,
    Update:
    I've learned IV from http://gaming.stackexchange.com/questions/276692/in-pokemon-go-what-are-my-pokemons-hidden-iv-stats-and-why-do-they-matter
    Last edited by reegant; 07-27-2016 at 01:48 AM.

  17. #3060
    niko89's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    7
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Casey Neistat View Post
    Here is my config file, I was sure that the way it was set up it would transfer everything. It wasn't transferring Pinsers or Ponytas though.

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <configSections>
            <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="PokemonGo.RocketAPI.Console.UserSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
                <section name="PokemonGo.RocketAPI.Console.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
            </sectionGroup>
        </configSections>
        <startup> 
            <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
        </startup>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
      <userSettings>
        <PokemonGo.RocketAPI.Console.UserSettings>
          <setting name="DefaultAltitude" serializeAs="String">
            <value>10</value>
          </setting>
          <setting name="KeepMinIVPercentage" serializeAs="String">
            <value>100</value>
          </setting>
          <setting name="KeepMinCP" serializeAs="String">
            <value>1000</value>
          </setting>
          <setting name="WalkingSpeedInKilometerPerHour" serializeAs="String">
            <value>300</value>
          </setting>
          <setting name="DefaultLatitude" serializeAs="String">
            <value>33.959108843</value>
          </setting>
          <setting name="DefaultLongitude" serializeAs="String">
            <value>-118.152029502</value>
          </setting>
          <setting name="UsePokemonToNotCatchList" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="AuthType" serializeAs="String">
            <value>Google</value>
          </setting>
          <setting name="PtcUsername" serializeAs="String">
            <value>username</value>
          </setting>
          <setting name="PtcPassword" serializeAs="String">
            <value>password</value>
          </setting>
          <setting name="PrioritizeIVOverCP" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="MaxTravelDistanceInMeters" serializeAs="String">
            <value>1000</value>
          </setting>
          <setting name="UseGPXPathing" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="GPXFile" serializeAs="String">
            <value>GPXFILE.gpx</value>
          </setting>
          <setting name="useLuckyEggsWhileEvolving" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="NotTransferPokemonsThatCanEvolve" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolveOnlyPokemonAboveIV" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolvePokemon" serializeAs="String">
            <value>False</value>
          </setting>
          <setting name="EvolveOnlyPokemonAboveIVValue" serializeAs="String">
            <value>95</value>
          </setting>
          <setting name="TransferPokemon" serializeAs="String">
            <value>True</value>
          </setting>
          <setting name="TransferPokemonKeepDuplicateAmount" serializeAs="String">
            <value>1</value>
          </setting>
        </PokemonGo.RocketAPI.Console.UserSettings>
      </userSettings>
    </configuration>
    I had a same problem. but here the things, KeepMinIVPercentage and KeepMinCP both values works no matter your value of PrioritizeIVOverCP is.

    it still keep your pinsirs and ponitas because it's either have CP over 1000 or IV 100(incase your setting). if there is pokemon meet neither min CP or min IV the program will only keep the highest value of your PrioritizeIVOverCP(if it true then the highest IV, if it false the highest CP). we assume this example TransferPokemonKeepDuplicateAmount value is 1.

    i hope you understand my explaination.

    Originally Posted by randykaskuser View Post
    the cock u talking about
    wow a kaskuser hallo. i'm from indonesia too

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:34 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