Hi,
I recently made it to Signal Corpse on my python account. I think I typed the right code:
# You can use flags to choose different tactics.
# In this level, the green flag will mean you want to move to the flag.
# The black flag means you want to cleave at the flag.
# The doctor will heal you at the Red X.
while True:
green = hero.findFlag("green")
black = hero.findFlag("black")
nearest = hero.findNearestEnemy()
if green:
hero.pickUpFlag(green)
elif black and hero.isReady("cleave"):
hero.pickUpFlag(black)
# Cleave!
hero.cleave()
elif nearest and hero.distanceTo(nearest) < 10:
# Attack!
hero.attack(nearest)
pass
But I can’t seem to beat the 2 big ogres. I bought the short sword and the sharpened sword, but they were restricted. It was a total rip-off. I wasted gems and can’t bring them back. Is there a way to get my gems back? Also, any strategies?