Hi. I’m stuck at dueling grounds. On line 11 it says that I need to target a unit when in fact I am - the enemy. Here is my code.
# Defeat the enemy hero in a duel!
# Find and attack the enemy inside a loop.
# Use flags and your special moves to win!
self.moveXY(64, 14)
self.moveXY(54, 16)
self.moveXY(53, 19)
self.moveXY(43, 19)
self.findEnemies()
enemy = self.findEnemies()
self.attack(enemy)
Same problem as before: findEnemies() on your Mahogany Glasses gives an array of enemies. You want to combine it with findNearest to get the nearest single enemy.