The Fierce Forces Topic



So closeeeeee :upside_down_face: :smiling_face_with_tear:

1 Like

1 Like

Ugh, happens so often, and I’m meant to be way higher on the rankings

image
.

1 Like

Hello, Guys!

I’m Yashins small brother on codecombat. :slight_smile:
Why do i have success when my brother has less health then me when he has a code written


and also why does my health turn into 5001 at the end?

5 Likes

Welcome! :slight_smile: Have fun!

The team that gets to 0 health first loses, if timeout, the team with the highest health wins, if the health is the same, then the winner will be picked by a coin flip (50/50)

It’s not fair, it should just be written as a tie, since I got a couple of games like that, and is affecting my rating on the leaderboard.

2 Likes

Hey guys, could someone know, when will fierce forces take place?

It’s happening right now! And welcome to the discourse :slight_smile:

1 Like

oh, ok thanks so much!

Seeing that you never got welcomed, make sure to read our FAQ, our guidelines, and remember to format your code! Have a good time!

So you win me!!!

When will fierce forces end?

It will probably end at the end of April.

I’m new to the discourse as well. I have been reading this chat from the beginning. I was wondering if you guys could help me have a better run at fierce forces.

make sure to read our FAQ , our guidelines, and remember to format your code! As for better code, try something like this:

function Push(lane) {
    hero.summon('snail', lane);
    hero.summon('elemental', lane);
    hero.summon('elemental', lane);
    hero.summon('phoenix', lane);
    hero.summon('phoenix', lane);
    hero.summon('orb', lane);
    hero.summon('orb', lane);
}
while(true){
    Push(0);
    Push(1);
    Push(2);
}

or you could just copy someone’s tactic.

1 Like

Thanks! I already had a 6,000 score but when I tried to fix it I messed it up. I was trying to figure out a good method for boulder control.

I added on to that a little bit and I’m not sure that works better but…

Try fiddling with the placement of your spells in your cast function. Try everything until u get maximum distance from your boulder.

1 Like

Ya, I think I could add a fourth spell to the end to get it to the base but I’m not sure that I would have enough time before the cooldown was finished.

1 Like

You could probably set up a system that messes with the others units instead of targeting the boulder.

1 Like