Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bot crashes with new account after setting Starter Pokemon as Buddy #5603

Closed
MerlionRock opened this issue Sep 22, 2016 · 1 comment
Closed
Assignees
Labels

Comments

@MerlionRock
Copy link
Contributor

Expected Behavior

Complete Tutorial, set newly caught starter as buddy and continue with rest of bot

Actual Behavior

Bot cashes with new account. Other accounts have no problem.

Your FULL config.json (remove your username, password, gmapkey and any other private info)

{
"websocket_server": false,
"heartbeat_threshold": 10,
"enable_social": false,
"live_config_update": {
"enabled": false,
"tasks_only": false
},
"tasks": [
{
"type": "TelegramTask",
"config": {
"enabled": true,
"master": REMOVED,
"password": null,
"// old syntax, still supported: alert_catch": ["all"],
"// new syntax:": {},
"alert_catch": {
"all": {"operator": "or", "cp": 1000, "iv": 0.90},
"Diglett": {"operator": "or", "cp": 10, "iv": 0.10},
"Horsea": {"operator": "or", "cp": 10, "iv": 0.10},
"Lapras": {"operator": "or", "cp": 900, "iv": 0.9},
"Dragonite": {"operator": "or", "cp": 900, "iv": 0.9},
"Arcanine": {"operator": "or", "cp": 900, "iv": 0.9},
"Exeggutor": {"operator": "or", "cp": 900, "iv": 0.9},
"Snorlax": {"operator": "or", "cp": 900, "iv": 0.9}
}
}
},
{
"type": "DiscordTask",
"config": {
"enabled": false,
"master": null,
"// old syntax, still supported: alert_catch": ["all"],
"// new syntax:": {},
"alert_catch": {
"all": {"operator": "and", "cp": 1000, "iv": 0},
"Snorlax": {"operator": "or", "cp": 900, "iv": 0.9}
}
}
},
{
"//NOTE: This task MUST be placed on the top of task list": {},
"type": "RandomAlivePause",
"config": {
"enabled": true,
"min_duration": "00:00:10",
"max_duration": "00:10:00",
"min_interval": "00:05:00",
"max_interval": "01:30:00"
}
},

  {
    "type": "HandleSoftBan"
  },
  {
    "type": "RandomPause",
    "config": {
      "enabled": true,
      "min_duration": "00:00:10",
      "max_duration": "00:10:00",
      "min_interval": "00:10:00",
      "max_interval": "02:00:00"
    }
  },
  {
    "type": "CompleteTutorial",
    "config": {
      "enabled": false,
      "// set a name": "",
      "nickname": "MerlionR0ck06",
      "// 0 = No Team, 1 = Blue, 2 = Red, 3 = Yellow": "",
      "team": 2
    }
  },
  {
    "type": "CollectLevelUpReward",
    "config": {
      "collect_reward": true,
      "level_limit": -1
    }
  },
  {
    "type": "IncubateEggs",
    "config": {
      "enabled": false,
      "infinite_longer_eggs_first": false,
      "breakable_longer_eggs_first": true,
      "min_interval": 120,
     "infinite": [2,5,10],
     "breakable": [2,5,10]
    }
  },
  {
    "type": "UpdateLiveStats",
    "config": {
      "enabled": false,
      "min_interval": 10,
      "stats": ["username", "uptime", "stardust_earned", "xp_earned", "xp_per_hour", "stops_visited"],
      "terminal_log": true,
      "terminal_title": true
    }
  },
  {
    "type": "UpdateLiveInventory",
    "config": {
      "enabled": false,
      "min_interval": 120,
      "show_all_multiple_lines": false,
      "items": ["pokemon_bag", "space_info", "pokeballs", "greatballs", "ultraballs", "razzberries", "luckyegg"]
    }
  },
 {
            "type": "PokemonOptimizer",
            "config": {
                "enabled": true,
                "min_slots_left": 5,
                "action_wait_min": 3,
                "action_wait_max": 5,
                "transfer": true,
                "evolve": true,
                "evolve_to_final": true,
                "evolve_time": 25,
                "evolve_for_xp": true,
                "evolve_only_with_lucky_egg": false,
                "evolve_count_for_lucky_egg": 80,
                "may_use_lucky_egg": true,
                "upgrade": true,
                "upgrade_level": 30,
                "groups": {
                    "gym": ["Dragonite", "Snorlax", "Lapras", "Arcanine"],
                    "HorseaDiglett": ["Diglett", "Horsea"]
                },
                "rules": [
                    {
                        "mode": "overall",
                        "top": 1,
                        "sort": ["max_cp", "cp"],
                        "evolve": false,
                        "buddy": {"candy": -124}
                    },
                    {
                        "mode": "by_pokemon",
                        "names": ["gym"],
                        "top": 3,
                        "sort": ["iv", "ncp"],
                        "evolve": {"iv": 0.9, "ncp": 0.9},
                        "upgrade": {"iv": 0.9, "ncp": 0.9}
                    },
                    {
                        "mode": "by_pokemon",
                        "names": ["HorseaDiglett"],
                        "top": 10,
                        "sort": ["cp"],
                        "keep": {"cp": -21},
                        "evolve": false,
                        "upgrade": false
                    },
                    {
                        "mode": "by_family",
                        "top": 1,
                        "sort": ["iv"],
                        "evolve": {"iv": 0.9}
                    },
                    {
                        "mode": "by_family",
                        "top": 1,
                        "sort": ["ncp"],
                        "evolve": {"ncp": 0.9}
                    },
                    {
                        "mode": "by_family",
                        "top": 1,
                        "sort": ["cp"]
                    }
                ]
            }
        },
  {
    "type": "ShowBestPokemon",
    "config": {
      "enabled": true,
      "min_interval": 60,
      "amount": 5,
      "order_by": "cp",
      "info_to_show": ["cp", "ivcp", "dps", "hp"]
    }
  },
  {
    "type": "TransferPokemon",
    "config": {
      "enabled": true,
      "min_free_slot": 5,
      "transfer_wait_min": 3,
      "transfer_wait_max": 5
    }
  },
  {
    "type": "NicknamePokemon",
    "config": {
      "enabled": true,
      "nickname_above_iv": 0.9,
      "nickname_template": "{name:.8s}_{ivcp_pct}",
      "nickname_wait_min": 3,
      "nickname_wait_max": 5
    }
  },
  {
    "type": "EvolvePokemon",
    "config": {
      "enabled": false,

        "evolve_list": "all",
        "donot_evolve_list": "none",

      "first_evolve_by": "cp",
      "evolve_above_cp": 500,
      "evolve_above_iv": 0.8,
      "logic": "or",
      "min_evolve_speed": 25,
      "max_evolve_speed": 30,
      "min_pokemon_to_be_evolved": 1,
      "use_lucky_egg": false
    }
  },
  {
    "type": "UseIncense",
    "config": {
      "use_incense": false,
      "use_order": [
        "ordinary",
        "spicy",
        "cool",
        "floral" 
      ]
    }
  },
  {
    "type": "RecycleItems",
    "config": {
      "enabled": true,
      "min_empty_space": 15,
      "max_balls_keep": 150,
      "max_potions_keep": 50,
      "max_berries_keep": 70,
      "max_revives_keep": 70,
      "item_filter": {
        "Pokeball":       { "keep" : 100 },
        "Potion":         { "keep" : 10 },
        "Super Potion":   { "keep" : 20 },
        "Hyper Potion":   { "keep" : 30 },
        "Revive":         { "keep" : 30 },
        "Razz Berry":     { "keep" : 100 }
      },
      "recycle_wait_min": 3,
      "recycle_wait_max": 5,
      "recycle_force": true,
      "recycle_force_min": "00:01:00",
      "recycle_force_max": "00:05:00"
    }
  },
  {
    "type": "CatchPokemon",
    "config": {
      "enabled": true,
      "catch_visible_pokemon": true,
      "catch_lured_pokemon": true,
      "catch_incensed_pokemon": true,
      "min_ultraball_to_keep": 5,
      "berry_threshold": 0.35,
      "vip_berry_threshold": 0.9,
      "treat_unseen_as_vip": false,
      "daily_catch_limit": 800,
      "vanish_settings": {
        "consecutive_vanish_limit": 10,
        "rest_duration_min": "02:00:00",
        "rest_duration_max": "04:00:00"
      },
      "catch_throw_parameters": {
        "excellent_rate": 0.1,
        "great_rate": 0.5,
        "nice_rate": 0.3,
        "normal_rate": 0.1,
        "spin_success_rate" : 0.6,
        "hit_rate": 0.75
      },
      "catch_simulation": {
        "flee_count": 3,
        "flee_duration": 2,
        "catch_wait_min": 3,
        "catch_wait_max": 6,
        "berry_wait_min": 3,
        "berry_wait_max": 5,
        "changeball_wait_min": 3,
        "changeball_wait_max": 5,
        "newtodex_wait_min": 20, 
        "newtodex_wait_max": 30
      }
    }
  },
  {
    "type": "SpinFort",
    "config": {
      "enabled": true,
      "spin_wait_min": 3,
      "spin_wait_max": 5,
      "daily_spin_limit": 1900
    }
  },
  { "type": "UpdateWebInventory",
    "config": {
      "enabled": true
    }
  },
    {
        "type": "PokemonHunter",
        "config": {
            "enabled": true,
            "max_distance": 1500,
            "hunt_all": false,
            "hunt_vip": true,
            "hunt_pokedex": false
        }
    },
  {
    "type": "MoveToFort",
    "config": {
      "enabled": true,
      "lure_attraction": true,
      "lure_max_distance": 300,
      "ignore_item_count": true,
      "walker": "PolylineWalker",
      "log_interval": 5
    }
  }
],
"map_object_cache_time": 5,
"forts": {
  "avoid_circles": true,
  "max_circle_size": 50,
  "cache_recent_forts": true
},
"pokemon_bag": {
  "// if 'show_at_start' is true, it will log all the pokemons in the bag (not eggs) at bot start": {},
  "show_at_start": true,
  "// if 'show_count' is true, it will show the amount of each pokemon (minimum 1)": {},
  "show_count": false,
  "// if 'show_candies' is true, it will show the amount of candies for each pokemon": {},
  "show_candies": false,
  "// 'pokemon_info' parameter define which info to show for each pokemon": {},
  "// the available options are": {},
  "// ['cp', 'iv_ads', 'iv_pct', 'ivcp', 'ncp', 'level', 'hp', 'moveset', 'dps']": {},
  "pokemon_info": ["cp", "iv_pct"]
},
"walk_max": 4.16,
"walk_min": 2.16,
"alt_min": 500,
"alt_max": 1000,

"sleep_schedule": {
  "enabled": true,
  "enable_reminder": false,
  "reminder_interval": 600,
  "entries": [
    {
      "enabled": true,
    "time": "17:30",
    "duration": "5:00",
    "time_random_offset": "00:20",
    "duration_random_offset": "00:20",
    "wake_up_at_location": ""
    },
    {
      "enabled": true,
    "time": "05:30",
    "duration": "6:00",
    "time_random_offset": "00:30",
    "duration_random_offset": "00:30",
    "wake_up_at_location": "1.283247,103.860243"
    }
  ]
},

"gps_default_altitude": 8.0,
"replicate_gps_xy_noise": true,
"replicate_gps_z_noise": true,
"gps_xy_noise_range": 0.000125,
"gps_z_noise_range": 12.5,
"debug": false,
"test": false,
"walker_limit_output": false,
"health_record": false,
"location_cache": true,
"distance_unit": "km",
"reconnecting_timeout": 15,
"logging": {
  "color": true,
  "show_datetime": true,
  "show_process_name": true,
  "show_log_level": true,
  "show_thread_name": false
},
"catch": {
  "any": {"candy_threshold" : 9999 ,"catch_above_cp": 1200, "catch_above_iv": 0.8, "logic": "and"},
  "// Example of always catching Rattata:": {},
  "Bulbasaur": {},
  "Charmander": {},
  "Squirtle": {},
  "Pikachu": {},
  "Vulpix": {},
  "Growlithe": {},
  "Mankey": {},
  "Abra": {},
  "Machop": {},
  "Geodude": {},
  "Ponyta": {},
  "Drowzee": {},
  "Rhyhorn": {},
  "Magikarp": {},
  "Dratini": {},
  "Onix": {"candy_threshold" : 9999 ,"catch_above_cp": 1000, "catch_above_iv": 0.8, "logic": "and"},
  "Hitmonlee": {"candy_threshold" : 9999 ,"catch_above_cp": 1000, "catch_above_iv": 0.8, "logic": "and"},
  "Hitmonchan": {"candy_threshold" : 9999 ,"catch_above_cp": 1000, "catch_above_iv": 0.8, "logic": "and"},
  "Lickitung": {"candy_threshold" : 9999 ,"catch_above_cp": 1200, "catch_above_iv": 0.8, "logic": "and"},
  "Scyther": {"candy_threshold" : 9999 ,"catch_above_cp": 1200, "catch_above_iv": 0.8, "logic": "and"},
  "Jynx": {"candy_threshold" : 9999 ,"catch_above_cp": 1200, "catch_above_iv": 0.8, "logic": "and"},
  "Electabuzz": {"candy_threshold" : 9999 ,"catch_above_cp": 1200, "catch_above_iv": 0.8, "logic": "and"},
  "Diglett": { "candy_threshold": 9999, "catch_below_cp": 11, "catch_above_iv": 0, "logic": "and", "fast_attack": ["Scratch", "Mud Slap"] },
  "Horsea": { "candy_threshold": 9999, "catch_below_cp": 11, "catch_above_iv": 0, "logic": "and", "fast_attack": ["Bubble"] }
},
"release": {
  "any": {"release_below_cp": 0, "release_below_iv": 0, "logic": "or"},


  "// Legendary pokemons (Goes under S-Tier)": {},
  "Lapras": { "release_below_cp": 1041, "release_below_iv": 0.8, "logic": "and" },
  "Moltres": { "release_below_cp": 1132, "release_below_iv": 0.8, "logic": "and" },
  "Zapdos": { "release_below_cp": 1087, "release_below_iv": 0.8, "logic": "and" },
  "Articuno": { "release_below_cp": 1039, "release_below_iv": 0.8, "logic": "and" },

  "// S-Tier pokemons (if pokemon can be evolved into tier, list the representative)": {},
  "Mewtwo": { "release_below_cp": 1447, "release_below_iv": 0.8, "logic": "and"},
  "Dragonite": { "release_below_cp": 1221, "release_below_iv": 0.8, "logic": "and" },
  "Snorlax": { "release_below_cp": 1087, "release_below_iv": 0.8, "logic": "and" },
  "// Mew evolves to Mewtwo": {},
  "Mew": { "release_below_cp": 1152, "release_below_iv": 0.8, "logic": "and" },
  "Arcanine": { "release_below_cp": 1041, "release_below_iv": 0.8, "logic": "and" },
  "Vaporeon": { "release_below_cp": 984, "release_below_iv": 0.8, "logic": "and" },
  "Gyarados": { "release_below_cp": 938, "release_below_iv": 0.8, "logic": "and" },
  "Exeggutor": { "release_below_cp": 1032, "release_below_iv": 0.8, "logic": "and" },
  "Muk": { "release_below_cp": 909, "release_below_iv": 0.8, "logic": "and" },
  "Weezing": { "release_below_cp": 784, "release_below_iv": 0.8, "logic": "and" },
  "Flareon": { "release_below_cp": 924, "release_below_iv": 0.8, "logic": "and" },

  "// Growlithe evolves to Arcanine": {},
  "Growlithe": { "release_below_cp": 465, "release_below_iv": 0.8, "logic": "and" },
  "// Dragonair evolves to Dragonite": {},
  "Dragonair": { "release_below_cp": 609, "release_below_iv": 0.8, "logic": "and" },
  "// Grimer evolves to Muk": {},
  "Grimer": { "release_below_cp": 448, "release_below_iv": 0.8, "logic": "and" },
  "// Magikarp evolves to Gyarados": {},
  "Magikarp": { "release_below_cp": 91, "release_below_iv": 0.8, "logic": "and" },
  "// Exeggcute evolves to Exeggutor": {},
  "Exeggcute": { "release_below_cp": 384, "release_below_iv": 0.8, "logic": "and" },
  "// Eevee evolves to many versions, like Vaporeon, Flareon": {},
  "Eevee": { "release_below_cp": 376, "release_below_iv": 0.8, "logic": "and" },

  "// A-Tier pokemons": {},
  "Slowbro": { "release_below_cp": 907, "release_below_iv": 0.8, "logic": "and" },
  "Victreebel": { "release_below_cp": 883, "release_below_iv": 0.8, "logic": "and" },
  "Machamp": { "release_below_cp": 907, "release_below_iv": 0.8, "logic": "and" },
  "Poliwrath": { "release_below_cp": 876, "release_below_iv": 0.8, "logic": "and" },
  "Clefable": { "release_below_cp": 837, "release_below_iv": 0.8, "logic": "and" },
  "Nidoking": { "release_below_cp": 864, "release_below_iv": 0.8, "logic": "and" },
  "Venusaur": { "release_below_cp": 902, "release_below_iv": 0.8, "logic": "and" },
  "Charizard": { "release_below_cp": 909, "release_below_iv": 0.8, "logic": "and" },
  "Golduck": { "release_below_cp": 832, "release_below_iv": 0.8, "logic": "and" },
  "Nidoqueen": { "release_below_cp": 868, "release_below_iv": 0.8, "logic": "and" },
  "Vileplume": { "release_below_cp": 871, "release_below_iv": 0.8, "logic": "and" },
  "Blastoise": { "release_below_cp": 888, "release_below_iv": 0.8, "logic": "and" },
  "Omastar":  { "release_below_cp": 780, "release_below_iv": 0.8, "logic": "and" },
  "Aerodactyl": { "release_below_cp": 756, "release_below_iv": 0.8, "logic": "and" },
  "Golem": { "release_below_cp": 804, "release_below_iv": 0.8, "logic": "and" },
  "Wigglytuff": { "release_below_cp": 760, "release_below_iv": 0.8, "logic": "and" },
  "Dewgong": { "release_below_cp": 748, "release_below_iv": 0.8, "logic": "and" },
  "Ninetales": { "release_below_cp": 763, "release_below_iv": 0.8, "logic": "and" },
  "Magmar": { "release_below_cp": 792, "release_below_iv": 0.8, "logic": "and" },
  "Kabutops": { "release_below_cp": 744, "release_below_iv": 0.8, "logic": "and" },
  "Electabuzz": { "release_below_cp": 739, "release_below_iv": 0.8, "logic": "and" },
  "Starmie": { "release_below_cp": 763, "release_below_iv": 0.8, "logic": "and" },
  "Jolteon": { "release_below_cp": 746, "release_below_iv": 0.8, "logic": "and" },
  "Rapidash": { "release_below_cp": 768, "release_below_iv": 0.8, "logic": "and" },
  "Pinsir": { "release_below_cp": 741, "release_below_iv": 0.8, "logic": "and" },
  "Scyther": { "release_below_cp": 724, "release_below_iv": 0.8, "logic": "and" },
  "Tentacruel": { "release_below_cp": 775, "release_below_iv": 0.8, "logic": "and" },
  "Gengar": { "release_below_cp": 724, "release_below_iv": 0.8, "logic": "and" },
  "Hypno": { "release_below_cp": 763, "release_below_iv": 0.8, "logic": "and" },
  "Pidgeot": { "release_below_cp": 729, "release_below_iv": 0.8, "logic": "and" },
  "Rhydon": { "release_below_cp": 782, "release_below_iv": 0.8, "logic": "and" },
  "Seaking": { "release_below_cp": 712, "release_below_iv": 0.8, "logic": "and" },
  "Kangaskhan": { "release_below_cp": 712, "release_below_iv": 0.8, "logic": "and" },

  "// Koffing evolves to Weezing (A-Tier)": {},
  "Koffing": { "release_below_cp": 403, "release_below_iv": 0.8, "logic": "and" },

  "// Below is B-tier and lower pokemons": {},
  "Caterpie": { "release_below_cp": 156, "release_below_iv": 0.8, "logic": "and" },
  "Weedle": { "release_below_cp": 156, "release_below_iv": 0.8, "logic": "and" },
  "Metapod": { "release_below_cp": 168, "release_below_iv": 0.8, "logic": "and" },
  "Kakuna": { "release_below_cp": 170, "release_below_iv": 0.8, "logic": "and" },
  "Rattata": { "release_below_cp": 204, "release_below_iv": 0.8, "logic": "and" },
  "Abra": { "release_below_cp": 208, "release_below_iv": 0.8, "logic": "and" },
  "Zubat": { "release_below_cp": 225, "release_below_iv": 0.8, "logic": "and" },
  "Chansey": { "release_below_cp": 235, "release_below_iv": 0.8, "logic": "and" },
  "Spearow": { "release_below_cp": 240, "release_below_iv": 0.8, "logic": "and" },
  "Meowth": { "release_below_cp": 264, "release_below_iv": 0.8, "logic": "and" },
  "Krabby": { "release_below_cp": 276, "release_below_iv": 0.8, "logic": "and" },
  "Sandshrew": { "release_below_cp": 278, "release_below_iv": 0.8, "logic": "and" },
  "Poliwag": { "release_below_cp": 278, "release_below_iv": 0.8, "logic": "and" },
  "Gastly": { "release_below_cp": 280, "release_below_iv": 0.8, "logic": "and" },
  "Ekans": { "release_below_cp": 288, "release_below_iv": 0.8, "logic": "and" },
  "Shellder": { "release_below_cp": 288, "release_below_iv": 0.8, "logic": "and" },
  "Vulpix": { "release_below_cp": 290, "release_below_iv": 0.8, "logic": "and" },
  "Voltorb": { "release_below_cp": 292, "release_below_iv": 0.8, "logic": "and" },
  "Geodude": { "release_below_cp": 297, "release_below_iv": 0.8, "logic": "and" },
  "Doduo": { "release_below_cp": 297, "release_below_iv": 0.8, "logic": "and" },
  "Onix": { "release_below_cp": 300, "release_below_iv": 0.8, "logic": "and" },
  "Mankey": { "release_below_cp": 307, "release_below_iv": 0.8, "logic": "and" },
  "Pikachu": { "release_below_cp": 309, "release_below_iv": 0.8, "logic": "and" },
  "Magnemite": { "release_below_cp": 312, "release_below_iv": 0.8, "logic": "and" },
  "Tentacool": { "release_below_cp": 316, "release_below_iv": 0.8, "logic": "and" },
  "Paras": { "release_below_cp": 319, "release_below_iv": 0.8, "logic": "and" },
  "Jigglypuff": { "release_below_cp": 321, "release_below_iv": 0.8, "logic": "and" },
  "Ditto": { "release_below_cp": 321, "release_below_iv": 0.8, "logic": "and" },
  "Staryu": { "release_below_cp": 326, "release_below_iv": 0.8, "logic": "and" },
  "Charmander": { "release_below_cp": 333, "release_below_iv": 0.8, "logic": "and" },
  "Goldeen": { "release_below_cp": 336, "release_below_iv": 0.8, "logic": "and" },
  "Squirtle": { "release_below_cp": 352, "release_below_iv": 0.8, "logic": "and" },
  "Cubone": { "release_below_cp": 352, "release_below_iv": 0.8, "logic": "and" },
  "Venonat": { "release_below_cp": 360, "release_below_iv": 0.8, "logic": "and" },
  "Bulbasaur": { "release_below_cp": 374, "release_below_iv": 0.8, "logic": "and" },
  "Drowzee": { "release_below_cp": 374, "release_below_iv": 0.8, "logic": "and" },
  "Machop": { "release_below_cp": 381, "release_below_iv": 0.8, "logic": "and" },
  "Psyduck": { "release_below_cp": 386, "release_below_iv": 0.8, "logic": "and" },
  "Seel": { "release_below_cp": 386, "release_below_iv": 0.8, "logic": "and" },
  "Kabuto": { "release_below_cp": 386, "release_below_iv": 0.8, "logic": "and" },
  "Bellsprout": { "release_below_cp": 391, "release_below_iv": 0.8, "logic": "and" },
  "Omanyte": { "release_below_cp": 391, "release_below_iv": 0.8, "logic": "and" },
  "Kadabra": { "release_below_cp": 396, "release_below_iv": 0.8, "logic": "and" },
  "Oddish": { "release_below_cp": 400, "release_below_iv": 0.8, "logic": "and" },
  "Dugtrio": { "release_below_cp": 408, "release_below_iv": 0.8, "logic": "and" },
  "Rhyhorn": { "release_below_cp": 412, "release_below_iv": 0.8, "logic": "and" },
  "Clefairy": { "release_below_cp": 420, "release_below_iv": 0.8, "logic": "and" },
  "Slowpoke": { "release_below_cp": 424, "release_below_iv": 0.8, "logic": "and" },
  "Pidgeotto": { "release_below_cp": 427, "release_below_iv": 0.8, "logic": "and" },
  "Farfetch'd": { "release_below_cp": 441, "release_below_iv": 0.8, "logic": "and" },
  "Poliwhirl": { "release_below_cp": 468, "release_below_iv": 0.8, "logic": "and" },
  "Nidorino": { "release_below_cp": 480, "release_below_iv": 0.8, "logic": "and" },
  "Haunter": { "release_below_cp": 482, "release_below_iv": 0.8, "logic": "and" },
  "Nidorina": { "release_below_cp": 489, "release_below_iv": 0.8, "logic": "and" },
  "Graveler": { "release_below_cp": 501, "release_below_iv": 0.8, "logic": "and" },
  "Beedrill": { "release_below_cp": 504, "release_below_iv": 0.8, "logic": "and" },
  "Raticate": { "release_below_cp": 504, "release_below_iv": 0.8, "logic": "and" },
  "Butterfree": { "release_below_cp": 508, "release_below_iv": 0.8, "logic": "and" },
  "Hitmonlee": { "release_below_cp": 520, "release_below_iv": 0.8, "logic": "and" },
  "Ponyta": { "release_below_cp": 530, "release_below_iv": 0.8, "logic": "and" },
  "Hitmonchan": { "release_below_cp": 530, "release_below_iv": 0.8, "logic": "and" },
  "Charmeleon": { "release_below_cp": 544, "release_below_iv": 0.8, "logic": "and" },
  "Wartortle": { "release_below_cp": 552, "release_below_iv": 0.8, "logic": "and" },
  "Persian": { "release_below_cp": 568, "release_below_iv": 0.8, "logic": "and" },
  "Lickitung": { "release_below_cp": 568, "release_below_iv": 0.8, "logic": "and" },
  "Ivysaur": { "release_below_cp": 571, "release_below_iv": 0.8, "logic": "and" },
  "Electrode": { "release_below_cp": 576, "release_below_iv": 0.8, "logic": "and" },
  "Marowak": { "release_below_cp": 578, "release_below_iv": 0.8, "logic": "and" },
  "Gloom": { "release_below_cp": 590, "release_below_iv": 0.8, "logic": "and" },
  "Porygon": { "release_below_cp": 590, "release_below_iv": 0.8, "logic": "and" },
  "Seadra": { "release_below_cp": 597, "release_below_iv": 0.8, "logic": "and" },
  "Jynx": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "and" },
  "Weepinbell": { "release_below_cp": 602, "release_below_iv": 0.8, "logic": "and" },
  "Tangela": { "release_below_cp": 607, "release_below_iv": 0.8, "logic": "and" },
  "Fearow": { "release_below_cp": 609, "release_below_iv": 0.8, "logic": "and" },
  "Parasect": { "release_below_cp": 609, "release_below_iv": 0.8, "logic": "and" },
  "Machoke": { "release_below_cp": 614, "release_below_iv": 0.8, "logic": "and" },
  "Arbok": { "release_below_cp": 616, "release_below_iv": 0.8, "logic": "and" },
  "Sandslash": { "release_below_cp": 631, "release_below_iv": 0.8, "logic": "and" },
  "Alakazam": { "release_below_cp": 633, "release_below_iv": 0.8, "logic": "and" },
  "Kingler": { "release_below_cp": 636, "release_below_iv": 0.8, "logic": "and" },
  "Dodrio": { "release_below_cp": 640, "release_below_iv": 0.8, "logic": "and" },
  "Tauros": { "release_below_cp": 643, "release_below_iv": 0.8, "logic": "and" },
  "Primeape": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "and" },
  "Magneton": { "release_below_cp": 657, "release_below_iv": 0.8, "logic": "and" },
  "Venomoth": { "release_below_cp": 660, "release_below_iv": 0.8, "logic": "and" },
  "Golbat": { "release_below_cp": 672, "release_below_iv": 0.8, "logic": "and" },
  "Raichu": { "release_below_cp": 708, "release_below_iv": 0.8, "logic": "and" },
  "Cloyster": { "release_below_cp": 717, "release_below_iv": 0.8, "logic": "and"},
  "Diglett": { "release_above_cp": 30 },
  "Horsea": { "release_above_cp": 30 },
  "Mr. Mime": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "and" }
},
"vips" : {
    "// Any pokemon put here directly force to use Berry & Best Ball to capture, to secure the capture rate": {},
    "//any": {"catch_above_cp": 1500, "catch_above_iv": 0.9, "logic": "and" },
    "Lapras": {},
    "Moltres": {},
    "Zapdos": {},
    "Articuno": {},

    "// S-Tier pokemons (if pokemon can be evolved into tier, list the representative)": {},
    "Mewtwo": {},
    "Dragonite": {},
    "Snorlax": {},
    "// Mew evolves to Mewtwo": {},
    "Mew": {},
    "Arcanine": {},
    "Vaporeon": {},
    "Gyarados": {},
    "Exeggutor": {},
    "Muk": {},
    "Weezing": {},
    "Flareon": {},

    "// Others": {},
  "Bulbasaur": {},
  "Charmander": {},
  "Squirtle": {},
  "Pikachu": {},
  "Vulpix": {},
  "Growlithe": {},
  "Mankey": {},
  "Abra": {},
  "Machop": {},
  "Geodude": {},
  "Ponyta": {},
  "Drowzee": {},
  "Rhyhorn": {},
  "Onix": {},
  "Hitmonlee": {},
  "Hitmonchan": {},
  "Lickitung": {},
  "Scyther": {},
  "Jynx": {},
  "Electabuzz": {},
  "Diglett": {"catch_below_cp": 11, "catch_above_iv": 0, "logic": "and", "fast_attack": ["Scratch", "Mud Slap"] },
  "Horsea": {"catch_below_cp": 11, "catch_above_iv": 0, "logic": "and", "fast_attack": ["Bubble"] }
},
"websocket": {
    "start_embedded_server": true,
    "server_url": "127.0.0.1:4000"
}

}

Output when issue occurred

[2016-09-22 13:08:00] [PokemonGoBot] [INFO] Login procedure started.
[2016-09-22 13:08:34] [PokemonGoBot] [INFO] Login successful.
[2016-09-22 13:08:35] [PokemonGoBot] [INFO] Found encrypt.so! Platform: darwin encrypt.so directory: /Users/Thomas/PokemonGo-Bot
[2016-09-22 13:08:35] [PokemonGoBot] [INFO]
[2016-09-22 13:08:37] [PokemonGoBot] [INFO] Level: 1 (Next Level: 350 XP) (Total: 650 XP)
[2016-09-22 13:08:37] [PokemonGoBot] [INFO] Pokemon Captured: 1 | Pokestops Visited: 1
[2016-09-22 13:08:38] [PokemonGoBot] [INFO]
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] --- USERNAMEREMOVED ---
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Pokemon Bag: 1/250
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Items: 57/350
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Stardust: 100 | Pokecoins: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] PokeBalls: 53 | GreatBalls: 0 | UltraBalls: 0 | MasterBalls: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] RazzBerries: 0 | BlukBerries: 0 | NanabBerries: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] LuckyEgg: 0 | Incubator: 0 | TroyDisk: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Potion: 0 | SuperPotion: 0 | HyperPotion: 0 | MaxPotion: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Incense: 2 | IncenseSpicy: 0 | IncenseCool: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Revive: 0 | MaxRevive: 0
[2016-09-22 13:08:38] [PokemonGoBot] [INFO]
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Pokemon:
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] #4 Charmander: (CP 12, IV 0.67)
[2016-09-22 13:08:38] [PokemonGoBot] [INFO]
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Telegram bot not running. Starting
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Telegram master is valid (numeric): 18511956
[2016-09-22 13:08:38] [RandomAlivePause] [INFO] Next random alive pause at 14:02:13, for a duration of 0:02:51
[2016-09-22 13:08:38] [RandomPause] [INFO] Next random pause at 14:29:55, for a duration of 0:00:14
[2016-09-22 13:08:38] [RecycleItems] [INFO] Next forced item recycle at 13:11:13
[2016-09-22 13:08:38] [PokemonGoBot] [INFO] Starting bot...
[2016-09-22 13:08:40] [CollectLevelUpReward] [INFO] Received level up reward:
[2016-09-22 13:08:40] [ cli] [INFO]
[2016-09-22 13:08:40] [ cli] [INFO] Ran for 0:00:40
[2016-09-22 13:08:40] [ cli] [INFO] Total XP Earned: 0 Average: 0.00/h
[2016-09-22 13:08:40] [ cli] [INFO] Travelled 0.00km
[2016-09-22 13:08:40] [ cli] [INFO] Visited 0 stops
[2016-09-22 13:08:40] [ cli] [INFO] Encountered 0 pokemon, 0 caught, 0 released, 0 evolved, 0 never seen before ()
[2016-09-22 13:08:40] [ cli] [INFO] Threw 0 pokeballs
[2016-09-22 13:08:40] [ cli] [INFO] Earned 0 Stardust
[2016-09-22 13:08:40] [ cli] [INFO] Hatched eggs 0
[2016-09-22 13:08:40] [ cli] [INFO]
[2016-09-22 13:08:40] [ cli] [INFO] Highest CP Pokemon:
[2016-09-22 13:08:40] [ cli] [INFO] Most Perfect Pokemon:
Traceback (most recent call last):
File "pokecli.py", line 843, in
main()
File "pokecli.py", line 202, in main
bot.tick()
File "/Users/Thomas/PokemonGo-Bot/pokemongo_bot/init.py", line 744, in tick
if worker.work() == WorkerResult.RUNNING:
File "/Users/Thomas/PokemonGo-Bot/pokemongo_bot/cell_workers/pokemon_optimizer.py", line 91, in work
self.check_buddy()
File "/Users/Thomas/PokemonGo-Bot/pokemongo_bot/cell_workers/pokemon_optimizer.py", line 209, in check_buddy
distance_walked = inventory.player().player_stats.get("km_walked", 0) - self.buddy["last_km_awarded"]
KeyError: 'last_km_awarded'
Thu Sep 22 13:08:40 SGT 2016 Pokebot Stopped.
Press any button or wait 20 seconds to continue.

Steps to Reproduce

New account, with CompleteTutorial enabled.

Other Information

OS:
MacOS
Branch:
Dev
Git Commit:
7ecaa17
Python Version:
Python 2.7.10

@MerlionRock
Copy link
Contributor Author

New merge fixed it. Thanks @anakin5 . Closing it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants