Page 1 of 2 12 LastLast
Results 1 to 15 of 16

Thread: A nice and original puzzle game : Untrusted

  1. #1

    A nice and original puzzle game : Untrusted

    Play it here.

    Discuss your progress or where you're stuck, but do use spoilers for those who haven't progressed through it yet

  2. #2
    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.

  3. #3
    im also at level 10
    trying to do calls but there's not enough space to do functions afaik
    booo

  4. #4
    You can add lines if the whole line is editable.

  5. #5
    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

  6. #6
    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.

  7. #7
    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?

  8. #8
    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)

  9. #9
    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

  10. #10
    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.

  11. #11
    Quote Originally Posted by Madonna View Post
    I got past level 1 without any knowledge.
    I bow to you. I have no smurfing idea what this thing wants me to do.

  12. #12
    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');

  13. #13

  14. #14

  15. #15
    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");

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •