Live data from Hacker News

Will you drown?

game.notch.net

61–70 of 145 posts

Re: Will you drown?

#63
Boiling every experience in life to make it nearly meaningless and lack any glimpse of context will eventually become depressing and appear highly relatable to others. Someone get this man some help.

Re: Will you drown?

#64
post #42

You just keep clicking on whatever links show up? I'm not catching the spark. But it reminds me of A Dark Room, which was excellent. http://adarkroom.doublespeakgames.com/

It has potential, but I had a hard time relating to my character. I need a lover as a teenager? And 2 broken hearts to stop being a teenager? And the only way to get experience is by losing friends.

At the point where I was farming friends solely so I could convert them into experience, I started questioning myself.

Re: Will you drown?

#66
post #63

Boiling every experience in life to make it nearly meaningless and lack any glimpse of context will eventually become depressing and appear highly relatable to others. Someone get this man some help.

Is it possible that he is not the one who needs help?

Re: Will you drown?

#67
post #52

Does this http://game.notch.net/drowning/packages/browser/dart.js actually run Dart? The home page looks like it has Dart scripts on a web page, but actually it does not?

No, that script looks for scripts of type "application/dart" in the page and then tries to find a compiled-to-JavaScript version of any scripts it finds by appending ".js" to them.

It looks like the actual Dart file hasn't been uploaded - which is sensible, in a way, since browsers don't natively supports Dart right now, with the exception of Dartium (?).

Re: Will you drown?

#68

Earlier quoted context omitted.

It is appropriate that relying on a static heuristic to point one's path leaves you unfulfilled, bitter, and dead.

I wasn't aware that clicking different things in different orders affected the outcome. I have just been clicking solve every time it comes up and not reading the captions.

> I wasn't aware that clicking different things in different orders affected the outcome.

I don't think it does.

Here's the relevant part of the (dart2js'd but slightly cleaned-up) code:

https://gist.github.com/CyberShadow/11329584

Edit: I made a full graph of the entire game: https://news.ycombinator.com/item?id=7652770

Re: Will you drown?

#69
post #56

Earlier quoted context omitted.

nope, that wont work at all. Even if you add jquery manually, this won't work at all. The correct one should be fireEvent = function(element){ var event; // The custom event that will be created if (document.createEvent) { event = document.createEvent("HTMLEvents"); event.initEvent("click", true, true); } else { event = document.createEventObject(); event.eventType = "click"; } event.eventName = "name-of-custom-event…

Quick to call someone stupid, aren't we? Did you even try his code? Go try it. Just because a site doesn't have jQuery, doesn't mean $ isn't assigned to anything.

Pretty sure cturhan did try jffry's code and that's why he wrote this code. The $ var on the page only returns the first instance that it matches so his code doesn't work.

A less efficient but shorter way is:

    var interval = setInterval(function(){
    	var links = document.querySelectorAll('#problems a');
    	for(var z =0; z
Also he never called him stupid he simply informed him that it didn't work.

Re: Will you drown?

#70
post #26

What a simple and profound game.... I hope Notch is feeling ok.

> I hope Notch is feeling ok.

That was my first thought, and I suspect that's not the case at the moment :-\

Post reply on HN