You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
I would like to suggest adding the option to acquire all ? nodes before approaching the boss. Many of the farm locations are popular because of their high ? node density.
The text was updated successfully, but these errors were encountered:
Especially for 7-2. Prioritize node collection over retreating Lvl after 3 fights.
However, the bot just exits after the 3rd battle without collecting the 2 new nodes.
This has already been suggested and a makeshift solution for this very niche case came out by hjk:
if self.config.combat['retreat_after'] != 0 and self.combats_done >= self.config.combat['retreat_after']:
should be changed to
if self.config.combat['retreat_after'] != 0 and self.kills_count >= self.config.combat['retreat_after'] and (target_info != None and target_info[2] == 'enemy')
And you need an additional continue after target_info = self.get_closest_target(self.blacklist, mystery_node=(not self.config.combat["ignore_mystery_nodes"]))
Props to hjk22.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I would like to suggest adding the option to acquire all ? nodes before approaching the boss. Many of the farm locations are popular because of their high ? node density.
The text was updated successfully, but these errors were encountered: