PDA

View Full Version : A nice and original puzzle game : Untrusted



Endless
04-25-2014, 06:43 PM
Play it here. (http://alexnisnevich.github.io/untrusted/)

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

Dr Unne
04-25-2014, 09:35 PM
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.

krissy
04-26-2014, 04:51 PM
im also at level 10
trying to do calls but there's not enough space to do functions afaik
booo

Endless
04-26-2014, 06:41 PM
You can add lines if the whole line is editable.

krissy
04-26-2014, 06:44 PM
i ended up doing it a different way

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

McLovin'
05-01-2014, 01:41 AM
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.

Madonna
05-01-2014, 02:49 AM
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?

blackmage_nuke
05-01-2014, 03:14 AM
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 if(false)

Tigmafuzz
05-01-2014, 09:39 AM
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 :nonono:

blackmage_nuke
05-01-2014, 02:27 PM
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

Mercen-X
05-01-2014, 08:29 PM
I got past level 1 without any knowledge.

I bow to you. I have no fucking idea what this thing wants me to do.

Mercen-X
05-02-2014, 05:34 AM
I've gotten to level 7 using a walkthrough, but the advice falls short thereupon. 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');

blackmage_nuke
05-02-2014, 01:58 PM
you want getColor not setColor in your if conditions

Mercen-X
05-02-2014, 09:33 PM
Nope. Still can only use the phone once.

blackmage_nuke
05-03-2014, 03:50 AM
Dont 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)



if(player.getColor()=='#f00')
player.setColor("#ff0");
else if(player.getColor()=='#ff0')
player.setColor("#0f0");
else
player.setColor("#f00");

Endless
05-04-2014, 07:13 PM
This is what should be in the black part of level 7:
var player = map.getPlayer();
if (player.getColor() == '#0f0') {
player.setColor('#f00');
} else if (player.getColor() == '#f00') {
player.setColor('#ff0');
} else {
player.setColor('#0f0');
}

For level 17, do what the comments imply: read the in-game doc to see what would allow you to see where each teleporter goes.