Live data from Hacker News

Show HN: Untrusted, a JavaScript adventure game you play by modifying its source

alex.nisnevich.com

241–246 of 246 posts

Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source

#241

Any tips for level 17? I can't seem to figure out a solution for the teleporters using the getObjectCoords hint that was given

I did it by drawing on the canvas to mark the way. (I'm trying not to spoil it, apologies if this is too vague).

I'm stuck on the teleporters one as well. Can we please have another hint?

Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source

#242

Any tips on level 15? Once the player is killed what could I possibly do?

Remember in of the earlier levels when who-ever is talking to us, said that the name of the level could come in handy? Try using that ;)

Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source

#243
post #136

Does anyone know of a nice way to unlock levels for the mirror? I'm on the first jQuery one but all I see is black text on a white screen. No players and nothing changes when I use the arrow keys. I can't find anything in the code I can edit either. I'd like to try the mirror but I don't want to have to play though the whole game again?

Can you show me what the jQuery level looks like for you? I want to make sure that it's working correctly.

It's fixed now with the servers no longer overloaded (although for some reason I had to start again).

What was happening was that the highlighting of you and the boss were not showing. So just the page without anything interactive.

Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source

#244

Here's an Iron Man inspired solution for the boss battle :) map.placeObject(map.getWidth()/2, 5, 'block'); //map.placeObject(map.getWidth()/2, 1, 'block'); var player = map.getPlayer(); map.defineObject('missile', { 'type': 'dynamic', 'symbol': '^', 'color': 'blue', 'interval': 100, 'projectile': true, 'behavior': function (me) { me.move('up'); } }); function jericho() { var i; for (i = 3; i

I've used their own weapon! :)

for(ii=0;iif=function(){ map.placeObject(10, 18, 'bullet'); } map.getPlayer().setPhoneCallback(f);

Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source

#245

Earlier quoted context omitted.

I did it by drawing on the canvas to mark the way. (I'm trying not to spoil it, apologies if this is too vague).

I'm stuck on the teleporters one as well. Can we please have another hint?

This level is hard. It took me a while until I found the coords for the transporters I was looking for but in the end I done it :). tip: find the transporter from the spawn point and the one where the exits is and link them together
Post reply on HN