ALAuto icon indicating copy to clipboard operation
ALAuto copied to clipboard

? node collection

Open Alyssaareva opened this issue 6 years ago • 4 comments

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.

Alyssaareva avatar Dec 19 '19 21:12 Alyssaareva

It seems that the program is unable to find the boss if a ? node spawns in front of it. Collecting the ? nodes may help with this as well.

Alyssaareva avatar Dec 20 '19 00:12 Alyssaareva

After the last few updates, you can now configure the bot so that it collects the mystery nodes when they spawn on the map.

hjk22 avatar Apr 02 '20 00:04 hjk22

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.

RubySapior avatar Apr 08 '20 15:04 RubySapior

Hello!

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.

UserFromSpace avatar Apr 08 '20 16:04 UserFromSpace