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

Not parsing #2232

Closed
ghost opened this issue Aug 1, 2016 · 2 comments
Closed

Not parsing #2232

ghost opened this issue Aug 1, 2016 · 2 comments

Comments

@ghost
Copy link

ghost commented Aug 1, 2016

Run normaly

Actual Behavior

python pokecli.py --config configs/config.json

[10:49:17] PokemonGO Bot v1.0
Traceback (most recent call last):
File "pokecli.py", line 436, in
main()
File "pokecli.py", line 52, in main
config = init_config()
File "pokecli.py", line 120, in init_config
load.update(json.load(data))
File "/usr/lib64/python2.7/json/init.py", line 291, in load
**kw)
File "/usr/lib64/python2.7/json/init.py", line 339, in loads
return _default_decoder.decode(s)
File "/usr/lib64/python2.7/json/decoder.py", line 364, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib64/python2.7/json/decoder.py", line 380, in raw_decode
obj, end = self.scan_once(s, idx)
ValueError: Expecting , delimiter: line 37 column 43 (char 877)

Steps to Reproduce

config.json(removed just acount)--------------------------------------------------------------------------
{
"auth_service": "google",
"username": "[email protected]",
"password": "----",
"location": "41.874467, -87.632925",
"gmapkey": "---",
"tasks": [
{
"type": "HandleSoftBan"
},
{
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
"config": {
"longer_eggs_first": true
}
},
{
"type": "TransferPokemon"
},
{
"type": "EvolveAll",
"config": {
"evolve_all": "NONE",
"evolve_cp_min": 300,
"evolve_speed": 20,
"use_lucky_egg": false
}
},
{
"type": "RecycleItems",
"config": {
"item_filter": {
"Pokeball": { "keep" : 145 },
"Potion": { "keep" : 05 },
"Super Potion": { "keep" : 20 },
"Hyper Potion": { "keep" : 40 },
"Revive": { "keep" : 30 },
"Razz Berry": { "keep" : 50 }
}
}
},
{
"type": "CatchVisiblePokemon"
},
{
"type": "CatchLuredPokemon"
},
{
"type": "SpinFort"
},
{
"type": "MoveToFort"
},
{
"type": "FollowSpiral"
}
],
"max_steps": 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": 100, "release_below_iv": 0.4, "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": {}

}

}

Other Information

OS: Linux fedora24 4.6.4-301.fc24.x86_64 #1 SMP Tue Jul 12 11:50:00 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

Git Commit: a90a77a
Python Version: Python 2.7.12

@lukemeaden
Copy link

Your error is "ValueError: Expecting , delimiter: line 37 column 43 (char 877)" implying that you have an issue on line 37 of your config file:

"Potion": { "keep" : 05 },

Try this instead:

"Potion": { "keep" : 5 },

If you need help you should join the slack channel

@ghost ghost closed this as completed Aug 1, 2016
@ghost
Copy link
Author

ghost commented Aug 1, 2016

Thanks @lukemeaden

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

No branches or pull requests

1 participant