[SOLVED] Friend and Foe (Python)

@Saanvi_Mysore already did.


it aint working

I’m not sure if this is a problem, but you seem to be using two different coding languages at the same time.

ok i got it

Hello and welcome to codecombat discourse! This is a cozy forum where you can share ideas, share fan art, get assistance for code, etc! Before you proceed, we hope that you review this topic, which shows all essentials of this board! Thanks!

are you telling me

?

I think @Tripp sent that on accident

Which language do you want to use? By the image you’re providing us, you’re simultaneously trying to use Python and Javascript, but the current language you are using in that level is Python. Press the :arrows_counterclockwise: Restart button and do the level in Python. If you want to switch to JavaScript, press Game Menu-> Change Language/Hero, then select Javascript or any other language.


Note: If you changed your language, be sure to press :arrows_counterclockwise: Restart after loading the level.

what does it mean by rallying the troops is it attacking or rallying plz help

while True:
friend = hero.findNearestFriend()
if friend:
hero.say("To battle, " + friend.id + “!”)
# Now find the nearest enemy and tell them to go away.
enemy = hero.findNearestEnemy()
if enemy:
hero.say(“go away”)

Don’t forget to call the enemy by name like you did with your friends.

1 Like

what do you mean name enemy

what does it mean by rally the troops

If you look at what you said to your friends:

hero.say("To battle, " + friend.id + “!”)

You said something other than just a message. How do you think you could change this:

hero.say(“go away”)

Hint:

Hope you solve this level.
:lion: :lion: :lion:

2 Likes