while True:
enemy = hero.findNearestEnemy()
hero.moveXY(10, 30)
enemy = hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
hero.moveXY(30, 10)
enemy = hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
hero.moveXY(50, 30)
enemy = hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
I’m thinking that the line where it say enemy = hero.findNearestEnemy in the def is a parameter, but I’m not sure. Any help, I would appritiate it?
Please paste ALL of your code inside the triple back tick marks.
``` <— Triple back tick marks.
Paste ALL of your code in here.
``` <— Triple back tick marks.
There are many people here willing and able to help. If you use the </> button correctly, then ALL of your code should look like this:
while True:
enemy = hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
else:
hero.say("My code is formatted properly")
If ALL of your code isn’t formatted like the code above, then you’re doing it wrong and we can’t see the structure of the code to troubleshoot whether or not that is the issue. Use the </> button and help us help you. This works when sending a private message as well.