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!
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 " "
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):
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!
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?
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
its a simple if statement that is already been posted js scroll up abit u can find the answer alr
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
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.