Clash of clones

also you can do the other levels in the other terrains that you have yet to complete

you can also play the brawls levels

how does deadpool198 make his own thangs?

huh what do you mean

also, how do you access his created things?

i think this is one

how does deadpool189 create things in code combat, because I don’t know how.

no idea(20characters)

1 Like

aww man!

ohh well

i’m not deadpool if you want go ask him

Ok.

also if you need more gems you can simulate games

It’s nice to know that they look like real thangs! But they’re not. It’s just drawings done on Krita and stats that I’ve thought up you can’t find them in the game.
And make sure this stays on topic from now on.
Danny

1 Like

what are ‘thangs’?(20)

They’re items in the game and they’re stored in https://codecombat.com/editor/thang if you want to look at some examples
Danny

oh thanks a lot(20chars)

Because I am on Mountain, and I beat the level that unlocks Boss Star 3.
Lydia

I need help on clash of clones too. I’ve tried out many armor solutions.
Here’s my code:

# 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.
if hero.time < 7:
    hero.say("Pause...")
while True:
    enemy = hero.findNearestEnemy()
    
    if hero.isReady("bash") and enemy.type == "soldier":
        hero.bash(enemy)
    elif hero.isReady("electrocute") and enemy.type == "archer":
        if hero.canElectrocute(hero.findNearestEnemy()):
            hero.electrocute(hero.findNearestEnemy())
    elif hero.isReady("flash") and enemy.type == "scout":
        hero.flash()
    elif hero.isReady("flash"):
        hero.flash()
    else:
        hero.attack(enemy)

Tarnished Bronze breastplate:
image
Stats: Battles for approximately 11 seconds, my hero dies at approximately 8 seconds. My clone dies before I do.

Steel Breastplate:
image
Stats: Battles for approximately 11 seconds, my hero dies at approximately 10 seconds. My clone dies before I do.

Dragon Breastplate:
image
Stats: Battles for approximately 16 seconds, my hero dies at approximately 13 seconds. My clone survives.

(@moonwatcher348 wanted to be summoned for this levevl)

Manually programming the first few actions might prove useful. For example, you could move to the center, then flash(To stun enemies) and defeat the archers first. Then you can go on with the bash, flash, attack combinations.

You should be using your hero as a decoy.