Clash of Clones Help!

So I should use the simple sword. also, i have painted steel shield. is that a good shield?

Yes, you should use those equipments. Clash of clones will be easy to beat if you also have the emperor’s gloves.

i have 17 gems. :frowning_face:

1 Like

how do you cast invis?

You mean be invisible? For that you need The Precious.

I have 17 gems :dizzy_face:. is there another way to win?

1 Like

Are you a sub? If so, use the abilities, like with Arryn Stonewall, warcry or throw.

i didn’t subscribe. also, how do you use the abilities if you subscribe?

It’s like any ability (e.g. hero.attack())
This is one of Pender Spellbane’s abilities:

hero.manaBlast()

:lion: :lion: :lion:

is there a way to win if I didn’t subscribe and use simple sword and painted steel shield.

I’m sure you can easily win. You just have to use bash and other attacks to get an advantage over your clone.

i could also use long sword because it has cleave.

here is my code:

hero.moveXY(63, 68)
while True:
    enemy = hero.findNearestEnemy()
    if enemy and enemy.type != "sand-yak":
        if hero.isReady("bash"):
            hero.bash(enemy)
        elif hero.isReady("cleave") and hero.distanceTo(enemy) < 10:
            hero.cleave(enemy)
        elif hero.distanceTo(enemy) < 15:
            hero.attack(enemy)
        else:
            hero.moveXY(68, 39)
            enemy = hero.findNearestEnemy()
            if enemy and enemy.type != "sand-yak":
                if hero.isReady("bash"):
                    hero.bash(enemy)
                elif hero.isReady("cleave") and hero.distanceTo(enemy) < 10:
                    hero.cleave(enemy)
                else:
                    hero.attack(enemy)
            else:
                hero.moveXY(104, 50)
                enemy = hero.findNearestEnemy()
                if enemy and enemy.type != "sand-yak":
                    if hero.isReady("bash"):
                        hero.bash(enemy)
                    elif hero.isReady("cleave") and hero.distanceTo(enemy) < 10:
                        hero.cleave(enemy)
                    elif hero.distanceTo(enemy) < 15:
                        hero.attack(enemy)
                    else:
                       continue

okay. i just fixed that.

1 Like

That’s why you read the guide before you format it.

1 Like

IF THIS COUNTS AS A SOLUTION, PLEASE LET ME KNOW SO I CAN REMOVE, THANK YOU FOR YOUR PATIENCE, IM VERY NEW HERE****
this is my code and it worked SMOOTHLY.
notice how on the second to last line, I made a mistake and wrote if hero.cast instead of if hero.canCast. THIS ACTUALLY worked as opposed to if I had fixed it, because after the hero moved, it got confused and she froze…allowing the other soldiers to do the fighting after I killed the leader.
anyway, hope this helps.

Solutions removed by forum moderator. 
1 Like

I am not sure if this is a solution or a hint i hope it is just a hint i only attacked once very strongly (not saying how) and left the rest to soldiers and archers. hope this helps!

1 Like

Hi TEO. That would be a perfect reply…there is no code, just suggestions (or ideas, hints, etc) giving the other the opportunity to try to figure out the code for themselves. This is exactly the goal of this forum!

Unfortunately, since this topic is over a year old, it is not likely going to help the original poster…however, others can (might) read it and gain insight from it. Thanks for the assist!

2 Likes

:slight_smile: thank i try to be helpful

1 Like

It says you must have a sword. Any help on that?