eggsaltfarming
New Member
- Joined
- Oct 2, 2014
- Messages
- 5
- Reaction score
- 0
It seems that its leaving before fighting the boss still. Are there settings that I'm doing wrong?
ExampleRoutine uses a model of combat that is best described as "kill anything close by".
ExampleRoutine does not implement specific boss fighting logic. To be technically specific, ExampleRoutine does not contain logic to track down and kill an enemy if it's outside of CombatRange, which is pretty much what happens in a lot of areas for boss fights.
That's basically the issue users see when they report the CR doesn't kill the bosses (especially in specific Corrupted Areas). All ExampleRoutine does is handle combat around the player in a specific range. For bosses, users have two choices, either: 1) make a new CR that implements that type of logic into the design to avoid issues or 2) use a plugin, as DominusFight shows, to move the bot into boss range so the current CR can fight it.
Trying to make ExampleRoutine or any CR for that mater, track down and kill a target presents a very challenging design issue for those who try it. The problem you end up running into, will be the same problem we saw when we tried to do too much with the previous Explorer system; conflict of execution. As a result, by simplifying the process, as the current design does, you can implement more complex logic in a way that doesn't break down.
The actual solution to the problem isn't too hard; users need to make a plugin just like DominusFight (which is why it was provided), except you keep track of any unique mob, and move towards it so it eventually comes into combat range of the CR. That should pretty much solve the problem, because the only reason the CR doesn't attack the boss, is because the boss isn't in combat range or is in a state (buried) that the CR doesn't process because it only cares about active mobs around it, by design.
When time permits, I'll post an updated boss plugin that should solve the issue.
The actual issue is described in the ExampleRoutine Guide:
]Can we please get an update on this? Can't seem to do anything about the bot skipping boss and vessel in the corrupted areas.
will it be compatible with the dominus plugin?
Is the plugin up for download somewhere ? Can't find anything
If you read changelogIs the plugin up for download somewhere ? Can't find anything
Please Disable Library Plugin as it probably will conflict.Added CorruptedAreaTweaks so BasicGrindBot will fight all corrupted area bosses.