Https://codecombat.com/play/level/arcane-ally?

even when i do everything right, my character can not beat the ogres. https://codecombat.com/play/level/arcane-ally?

can i have help with a strategy or a code. im truly baffled?

Could you share your code and equipment for the level so that we can help you?

these are all of my items thusfar into my progression.

this is the code im using to attack the ogres.

# Take down those ogres! 
def stabOrSwing():
    e = hero.findNearestEnemy()
    if e:
        if e < 5:
            if hero.isReady("cleave"):
                hero.cleave(e)
                pass
        else:
            hero.attack(e)
            pass 
        pass 
while True:
    stabOrSwing()

If you can’t beat the ogers most likely you need more gear

okay ill say that is the solution. ill buy the needed equipment after i complete all the other missions so it may be a while util i test your solution.

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