I did everything that says in the video and i have this problem.
____________________________
__________________________
CONFIG FILE:
{
"auth_service": "google",
"username": “
[email protected]”,
"password": “blablabla”,
"location": “Tempelhof, Berlín”,
"gmapkey": "AIzaSyBDxXPKQiX-NfB93CwGWV4Dk8Ks7jjvVfc",
"libencrypt_location": "",
"tasks": [
{
"type": "HandleSoftBan"
},
{
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
"config": {
"longer_eggs_first": true
}
},
{
"type": "TransferPokemon"
},
{
"type": "EvolvePokemon",
"config": {
"evolve_all": "none",
"first_evolve_by": "cp",
"evolve_above_cp": 500,
"evolve_above_iv": 0.8,
"logic": "or",
"evolve_speed": 20,
"use_lucky_egg": false
}
},
{
"type": "RecycleItems",
"config": {
"item_filter": {
"Pokeball": { "keep" : 100 },
"Potion": { "keep" : 10 },
"Super Potion": { "keep" : 20 },
"Hyper Potion": { "keep" : 30 },
"Revive": { "keep" : 30 },
"Razz Berry": { "keep" : 100 }
}
}
},
{
"type": "CatchVisiblePokemon"
},
{
"type": "CatchLuredPokemon"
},
{
"type": "SpinFort"
},
{
"type": "MoveToFort",
"config": {
"lure_attraction": true,
"lure_max_distance": 2000
}
},
{
"type": "FollowSpiral",
"config": {
"diameter": 4,
"step_size": 70
}
}
],
"map_object_cache_time": 5,
"forts": {
"avoid_circles": true,
"max_circle_size": 50
},
"websocket_server": false,
"walk": 4.16,
"action_wait_min": 1,
"action_wait_max": 4,
"debug": false,
"test": false,
"health_record": true,
"location_cache": true,
"distance_unit": "km",
"reconnecting_timeout": 15,
"evolve_captured": "NONE",
"catch_randomize_reticle_factor": 1.0,
"catch_randomize_spin_factor": 1.0,
"catch": {
"any": {"catch_above_cp": 0, "catch_above_iv": 0, "logic": "or"},
"// Example of always catching Rattata:": {},
"// Rattata": { "always_catch" : true }
},
"release": {
"any": {"release_below_cp": 0, "release_below_iv": 0, "logic": "or"},
"// Example of always releasing Rattata:": {},
"// Rattata": {"always_release": true},
"// Example of keeping 3 stronger (based on CP) Pidgey:": {},
"// Pidgey": {"keep_best_cp": 3},
"// Example of keeping 2 stronger (based on IV) Zubat:": {},
"// Zubat": {"keep_best_iv": 2},
"// Also, it is working with any": {},
"// any": {"keep_best_iv": 3},
"// Example of keeping the 2 strongest (based on CP) and 3 best (based on IV) Zubat:": {},
"// Zubat": {"keep_best_cp": 2, "keep_best_iv": 3}
},
"vips" : {
"Any pokemon put here directly force to use Berry & Best Ball to capture, to secure the capture rate!": {},
"any": {"catch_above_cp": 1200, "catch_above_iv": 0.9, "logic": "or" },
"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": {}
}
}
__________________________
__________________________
THE ERROR
(PokemonGo-Bot) No-sense:PokemonGo-Bot lucasmendoza$ python pokecli.py
2016-08-09 02:48:29,423 [ cli] [iNFO] PokemonGO Bot v1.0
2016-08-09 02:48:29,424 [ cli] [iNFO] No config argument specified, checking for /configs/config.json
configs/config.json:3:16: Error: Can not decode value starting with character u'\u201c'
| At line 3, column 16, offset 48
configs/config.json:3:36: Info: Recovering parsing after character u','
| At line 3, column 36, offset 68
configs/config.json:4:16: Error: Can not decode value starting with character u'\u201c'
| At line 4, column 16, offset 86
configs/config.json:4:28: Info: Recovering parsing after character u','
| At line 4, column 28, offset 98
configs/config.json:5:16: Error: Can not decode value starting with character u'\u201c'
| At line 5, column 16, offset 116
configs/config.json:5:26: Info: Recovering parsing after character u','
| At line 5, column 26, offset 126
configs/config.json:5:28: Warning: JSON does not allow identifiers to be used as strings: u'Berl\xedn'
| At line 5, column 28, offset 128
configs/config.json:5:28: Error: Missing value for object property, expected ":"
| At line 5, column 28, offset 128
| Object started at line 1, column 0, offset 0 (AT-START)
configs/config.json:5:35: Error: Can not decode value starting with character u','
| At line 5, column 35, offset 135
configs/config.json:6:4: Info: Recovering parsing after character u'\n'
| At line 6, column 4, offset 141
configs/config.json:6:4: Error: Values must be separated by a comma
| At line 6, column 4, offset 141
| Object started at line 1, column 0, offset 0 (AT-START)
configs/config.json:107:6: Warning: Object contains duplicate key: u'// Zubat'
| At line 107, column 6, offset 2932
| Object started at line 96, column 15, offset 2356
configs/config.json: has errors
2016-08-09 02:48:29,453 [ cli] [CRITICAL] Error with configuration file
Somebody can help me?