Mam problem z poziomem wymienionym wyżej, nie zgadzają się x i y, nie wiem już co mam zrobić.
Pomożecie?
while True:
enemy = hero.findNearestEnemy()
xPos = hero.pos.x + 5
yPos = hero.pos.y
if enemy:
# Adjust y up or down to get away from yaks.
if enemy.pos.y > hero.pos.y:
# If the Yak is above you, subtract 3 from yPos.
xPos = hero.pos.x + 5
yPos = hero.pos.y - 3
pass
elif enemy.pos.y < hero.pos.y:
# If the Yak is below you, add 3 to yPos.
xPos = hero.pos.x + 5
yPos = hero.pos.y + 3
pass
hero.moveXY(xPos, yPos)