Hi, I am doing Backwoods Brawl 4 I’ve tried many codes but none of them worked. Now I want to find the strongest enemy and attack it. I have 2514 health and here is my current code:
while True:
enemy = hero.findNearestEnemy()
enemies = hero.findEnemies()
l=1
health = []
for enemy in enemies:
l+=1
health[l] = enemy.health
strongest =
hero.attack(strongest)
How do you find strongest
?