Mad Pod Racing - Puzzle Discussion

Can anyone assist with this?

I expected:

print(str(next_checkpoint_x) + " " + str(next_checkpoint_y) + str(thrust))

To work but that crashes every time. Any help is greatly appreciated!

Ah I figured it out! I need it add the " "

2 Likes

bro did you find out what’s need to be done here ?
because I’m not getting anything at all …

Hope these two links help you (Coders Strike Back is the previous name of Mad Pod Racing):

1 Like

I actually have a problem. I reached Silver league in less than 2 games and i have to win 2 game in bronze to go forward in the home path. Can I go back in bronze or can anyone fix this ?

The quest you’re referring to is about reaching the Bronze league in 2 different bot programming games. You’ve done half of the job with Mad Pod Racing. Now to another game. Good luck!

1 Like

Hi im stuck in bronze league (although some ppl say that u dont need boost and u still can get to gold) im not using boost currently and im stuck still what is the logic to beat bronze league?

There are some tips shared above. Have you tried any of them?

u mean the 2 links u sent?

No, I mean the tips in this thread.

it was a bug we had fixed in higher leagues only. It’s now fixed in all leagues and shouldn’t happen anymore

i am super confused with the angle turning and onley a wood 2 on boss 2 any tips?

1 Like

although this msg is very late in time to when this puzzle was created
if you use the correct code for wood 1 (honestly its not that hard without using boost)
u can get from wood 3/wood 1 to silver instantly (but the only tricky part is finding that simple if statement :slight_smile:

1 Like

its a simple if statement that is already been posted js scroll up abit u can find the answer alr

1 Like

Hi guys I am stuck in wood 2 and I don’t get what I am doing wrong with my loop any hint ?

if next_checkpoint_angle > 90 or next_checkpoint_angle < -90:

    thrust = 0

else

    thrust = 100

print(str(next_checkpoint_x) + " " + str(next_checkpoint_y) + str(thrust) + "80")

You have specified 4 outputs, while you should have output 3 only.

Thank you for your reply :slight_smile:
As you said 3 outputs are not working either :

print(str(next_checkpoint_x) + str(next_checkpoint_y) + str(thrust))

Please read the error messages in the console to debug your code.
If you’re using python, you’ve missed the colon after “else”.

Thank you for your help : I saw the debug. Meanwhile it is now telling me :

invalid input. Expected ‘x y power’ but found ‘11981198090’

Are you sure I should have erase the other variables earlier ?

You should add the spaces in between the three variables when you print them out.