// You'll need good strategy to win this one!
// Your clone will have the same equipment you have!
// But, they're not very skilled at using special powers.
while (true) {
var enemy = hero.findNearestEnemy();
if (hero.isReady("bash")) {
hero.bash(enemy);
}
else {
hero.shield(enemy);
}
if (hero.isReady("cleave")) {
hero.cleave(enemy);
}
else {
hero.attack(enemy);
}
}
I’ve been stuck on this level for a while now and cannot pass it. The code will work but the cleave doesn’t seem to kill enemies. I am using a longsword. Thanks in advance.
Something to think about… You don’t seem to have any special gear (rings or the emperor’s glove) that really help on this level. Regular attacks don’t quite complete this level since your enemy has the same gear and there are more enemies.
Another option, is trying another hero that might have some special abilities if you have the gems to get them.