Play it here.
Discuss your progress or where you're stuck, but do use spoilers for those who haven't progressed through it yet![]()
Play it here.
Discuss your progress or where you're stuck, but do use spoilers for those who haven't progressed through it yet![]()
Interesting. I got to level 10. I might try a few more later. I wonder if you can break the game by messing with its internals. I like how it calls you a cheater if you open the JS console in Chrome.
im also at level 10
trying to do calls but there's not enough space to do functions afaik
booo
You can add lines if the whole line is editable.
i ended up doing it a different way
(SPOILER) if robot is on y=13, move left, otherwise i took all movement away
this meant i could walk through the middle of them after the two in the middle want aways
If i didn't know java how would i ever get anywhere in this game? Anyway i got to level 3. And it hurt my head reading all that java code, like I never left my programming class.
I got past level 1 without any knowledge. I do feel incentive to go beyond this, and will try again when I have time.
Is someone trying to make the act of coding fun?
Out of curiosity how did you guys solve 4? because it said theres a hint in the file name (multiplicity) but all I did was put (SPOILER)if(false)
Level 9 confused me for a while since the phone callback wouldn't do anything. Then I slapped myself in the face for being dumb![]()
currently on the 12 and I can think of a long boring solution but I cant figure out an elegant one
now im on 17 and stumped
Last edited by blackmage_nuke; 05-01-2014 at 03:08 PM.
I've gotten to level 7 using a walkthrough, but the advice falls short thereupon. (SPOILER)I'm supposed to set up a series of if-then statements that will turn my player color, but I can only use the phone once and I don't know how to input other conditions. Here's the language I used:
if(player.setColor()=='#f00');
player.setColor('#ff0');
else if(player.setColor()=='#ff0');
player.setColor('#0f0');
else
player.setColor('#f00');
Solution for mercen-xyou want getColor not setColor in your if conditions
Nope. Still can only use the phone once.
more solutionsDont put semi colons after your if and else if, for setColor use double quotes inside the brackets instead of single quotes (getColor with the == uses single quotes)
full solution i think might work
if(player.getColor()=='#f00')
player.setColor("#ff0");
else if(player.getColor()=='#ff0')
player.setColor("#0f0");
else
player.setColor("#f00");