Burning Ices Updates Thread

I am looking into it.

I think I just fixed it.
Try again. :slight_smile: @Alexander_Gu

It still doesn’t work.

Yeah, I know.
Still trying to fix it.
Thanks for informing me.

Hmmm, I think its a problem with your code.
Copy paste this code into your code.
CostOf works fine.
So, just check your code.

hero.summon('builder')
while True:
    builder = hero.findNearest(hero.findByType("builder"))
    if builder:
        if hero.gold > builder.costOf("fortress"):
            hero.command(builder, "summon", 'fortress')

This also seems to work with builders


hero.summon('builder')
builder = hero.findNearest(hero.findByType("builder"))
summonTypes = ['robobomb', 'castle', 'fortress']
while True:
    type = summonTypes[len(builder.built) % len(summonTypes)]
    if hero.gold > builder.costOf(type):
        hero.command(builder, 'summon', type)

How can I make the hero summon certain units and the builder summon certain units?

@Alexander_Gu, Frankly, I have no idea.
Maybe you could do a math.random between 1 and 0, and if its a 1 you summon. If its a zero, command the builder to summon.

How do you make multiplayer levels on CoCo?

You need to be a sub, right?

1 Like

https://codecombat.com/editor/level

Nope :slight_smile:

Necromancer Revamp:
Necromancers have long been weak, unused, and underpowered.
Now, it summons 4 skeletons every 10 seconds, does 25 damage, and raise deads the entire map!
Dark Alchemist skeletons count 1-2.

ok lemme try it

Heroes now have 100 DPS and can shield blocking 50% of damage.

Added scattershot ability for rangers. Credit goes to @riticmaster908 for reminding me.
Use if rangers.isReady(“scattershot”):

then command it to scattershot.
hero.command(ranger, ‘scattershot’, enemy)

1 Like

Also backstab now does 800 damage. Heros beware!

new texture update!!! try finding the dropped swords and staglimites!!!

1 Like

Wow you’re good at making these stuff

3 Likes

I made some suggestions but the code credit goes to @RangerGrant9307

im basicly like the person who informes people on updates and makes level thang edits and other stuff

1 Like

Ranger Update:
Damaged decreased from 40-20.
Scattershot shoots 15 arrows at once in a medium radius. Soldier spammers beware!

1 Like