# Get to the oasis. Watch out for new enemies: ogre scouts!
# Go up and right by adding to your current X and Y position.
enemy = self.findNearestEnemy()
x = self.pos.x
y = self.pos.y
loop:
# Attack any enemies you see.
if enemy:
self.attack(enemy)
# Or, if there are no enemies in sight, keep moving up and to the right.
else:
self.moveXY(x + 10, y + 10)
pass
My code is fine, but y guy just stops in one spot and dies (15, 15).