I can not get past the level siginal corpse in the forest

i have been working on this level for like 5 days now and I cant h=get it I need help

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(nearest)
    elif nearest and hero.distanceTo(nearest) < 10:
        # Attack!
        hero.attack(nearest)
        pass
    else:
        hero.shield()
    hero.moveXY(18, 29)

i need help and this is my code thanks

my hero cant kill the big ogres and i have the strongest one i can afored now

You can always use the flags by submitting

i now and i have tryed doing many many areas in different ways

Use both flags and also use long sword. Show us your equipment

how do you destroy the big guys?

You just attack them

but when i can i get attacked by munchkins and when i kill the munchkins then i run out of time

You need to kill the munchkins early on, then attack the big ogres later.

that is what i am doing

Yeah that is what I do. Get close to then cleave a bunch of them. then kill the big guys.

I GOT IT THANKS MAN you helped alot

1 Like

This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.