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).
Show HN: Untrusted, a JavaScript adventure game you play by modifying its source
241–246 of 246 posts
Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source
#242Any tips on level 15? Once the player is killed what could I possibly do?
Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source
#243Does 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.
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
#244Here'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
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
#245Earlier 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?
Re: Show HN: Untrusted, a JavaScript adventure game you play by modifying its source
#246Anybody think of another way to do the robot levels without adding any state? https://gist.github.com/db41e069df7bae142248