-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
MoveToMapPokemon doesn't work as expected #3816
Comments
Can you provide evidence that your map scan is working? (also, can a mod please help this OP) |
Try removing the MoveToFort task from your config and see if MoveToMapPokemon works then. |
Change min_ball to a lower number like below. "type": "MoveToMapPokemon", If you don't have at least that many of the lowest ball, it only moves to forts. #3166 |
@nDarkness Works like a charm!!! Cheers mate :))) |
you guys aren't experiencing bans yet? |
why ban @beanstalkk |
@supana please close the issue if the problem solved. thanks. happy catch ; ). |
I'm having a problem with MoveToMapPokemon. It seems only MoveToFort is working.
This is what happening
Here's my code.
`{
"auth_service": "google",
"username": "",
"password": "",
"location": "",
"gmapkey": "",
"encrypt_location": "",
"tasks": [{
"type": "HandleSoftBan"
}, {
"type": "SleepSchedule",
"config": {
"enabled": false,
"time": "22:54",
"duration": "7:46",
"time_random_offset": "00:24",
"duration_random_offset": "00:43"
}
}, {
"type": "CollectLevelUpReward"
}, {
"type": "IncubateEggs",
"config": {
"longer_eggs_first": true
}
}, {
"type": "UpdateLiveStats",
"config": {
"enabled": false,
"min_interval": 10,
"stats": ["uptime", "stardust_earned", "xp_earned", "xp_per_hour", "stops_visited"],
"terminal_log": true,
"terminal_title": true
}
}, {
"type": "TransferPokemon"
}, {
"type": "NicknamePokemon",
"config": {
"enabled": true,
"nickname_template": "{iv_pct}_{iv_ads}"
}
}, {
"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": {
"min_empty_space": 15,
"item_filter": {
"Pokeball": {
"keep": 0
},
"Greatball": {
"keep": 70
},
"Ultraball": {
"keep": 200
},
"Potion": {
"keep": 0
},
"Super Potion": {
"keep": 0
},
"Hyper Potion": {
"keep": 30
},
"Revive": {
"keep": 20
},
"Razz Berry": {
"keep": 50
}
}
}
}, {
"type": "CatchVisiblePokemon"
}, {
"type": "CatchLuredPokemon"
}, {
"type": "SpinFort"
}, {
"type": "MoveToMapPokemon",
"config": {
"address": "http://localhost:5000",
"max_distance": 500,
"min_time": 30,
"min_ball": 50,
"prioritize_vips": true,
"snipe": false,
"snipe_high_prio_only": true,
"snipe_high_prio_threshold": 600,
"update_map": true,
"mode": "priority",
"map_path": "raw_data",
"catch": {
"==========Legendaries==========": 0,
"Aerodactyl": 1000,
"Snorlax": 1000,
"Articuno": 1000,
"Zapdos": 1000,
"Moltres": 1000,
"Dratini": 1000,
"Dragonair": 1000,
"Dragonite": 1000,
"Mewtwo": 1000,
"Mew": 1000,
}`
The text was updated successfully, but these errors were encountered: