Help on The-Agrippa-Defense,

loop:
    
    enemy = self.findNearestEnemy()
    if enemy:
        distance = self.distanceTo(enemy)
        if distance <4:
            if   self.isReady("cleave"):
             self.cleave(enemy)
            else:
                 self.attack(enemy)

what happens is I’m able to cleave the first group of enemies, and by the second group the cleave apparently has to recharge by 10 seconds, and following the levels advice of " or else just attack" just gets me killed in the 2nd wave because the cleave isn’t ready, I’ve tried a bunch of techniques been on this all night, including trying to check if its ready again

1 Like

From just a quick look, maybe change the distance to 5?
Or grab a different sword?

thank you so much man, I had set the distance to 4 because it didn’t kill the whole group before and left 1, but then I realized the “Else” can deal with that 1 guy!

1 Like