Clash of Clones: Help!

I cannot figure out how to get past this. I’ve tried fully automating it and using flags, but it nothing seems to work. Any ideas? Here’s my equipment.

Well first you have to paste your code.

1 Like
while True:
    enemy = hero.findNearestEnemy()
    flag = hero.findFlag()
    if flag:
        hero.move(flag.pos)
        hero.buildXY("bear-trap", flag.pos.x, flag.pos.y)
        hero.removeFlag(flag)
    elif enemy.type != 'sand-yak':
        hero.attack(enemy)
    

This is just one example.

while True:
    enemy = hero.findNearestEnemy()
    flag = hero.findFlag()
    if flag:
        hero.pickUpFlag(flag)
    elif enemy and hero.isReady("cleave"):
        hero.cleave(enemy)
    elif enemy:
        hero.attack(enemy)

Another example.

This too.

while True:
    enemy = hero.findNearestEnemy()
    if enemy and hero.isReady("cleave"):
        hero.cleave(enemy)
    elif hero.health <= 200:
        hero.move(37, 28)
        hero.consecrate()
    elif enemy:
        hero.attack(enemy)

Well which code are you using.

Currently the Bear-trap one.

I recommend using a terrible sword, but using good shields that have good amounts of bash damage.
Use special abilities, as your clone’s code is just while true, attack.
Or, use the long sword, and cleave when ever you can.
Aim for shamans first, as they do high area damage, and can cast grow, which makes something huge and doubles it’s health.
Then, aim for the archers, as if you ignore them, they can tear holes in your lines.
Hope this helps.

1 Like