Hey, author here! I'm pretty overwhelmed that this made it to the top of HN without me even thinking of posting it here :) I made this game as a fun weekend project, inspired by another game called 1024 ( https://itunes.apple.com/us/app/1024!/id823499224 ) and a spinoff called 2048 ( http://saming.fr/p/2048/ ). I did mine to add animations to the latter, which was a bit hard to play without them. I discovered Threes…
I haven't been this addicted to a game since Drop7.
2048
161–170 of 423 posts
Re: 2048
#162Animation doesn't seem to work in Firefox. Does nobody test in Firefox anymore? This WebKit monoculture is getting quite anything. It's msie all over again...
Re: 2048
#163Animation doesn't seem to work in Firefox. Does nobody test in Firefox anymore? This WebKit monoculture is getting quite anything. It's msie all over again...
Re: 2048
#164Made it to 1024: http://imgur.com/QQUXzCN . Here's my routine: 1. "tumbler" until 128: up right down left, repeat 2. Get 128 on the top in the middle two slots. Really any edge works, but I'll say top for simplicity. Keep a semi-large value on the side with one open slot in top row to prevent sliding. The other side on top is used for staging 3. Only use left, right and up. Never let a smaller value get trapped. This…
Re: 2048
#165Animation doesn't seem to work in Firefox. Does nobody test in Firefox anymore? This WebKit monoculture is getting quite anything. It's msie all over again...
Re: 2048
#166Re: 2048
#167Re: 2048
#168Made it to 1024: http://imgur.com/QQUXzCN . Here's my routine: 1. "tumbler" until 128: up right down left, repeat 2. Get 128 on the top in the middle two slots. Really any edge works, but I'll say top for simplicity. Keep a semi-large value on the side with one open slot in top row to prevent sliding. The other side on top is used for staging 3. Only use left, right and up. Never let a smaller value get trapped. This…
Re: 2048
#169Earlier quoted context omitted.
Tried 3 games, and the scores were 2700, 1200, 5000. So maybe. But then I wrote a function to play it for me: var manager = new GameManager(4, KeyboardInputManager, HTMLActuator); function play() { manager.restart(); var m = 0; while (!manager.over) { manager.move(m); m = (m+1)%4; } return manager.score; } ... and that gets scores between 500 and 3000. (Edit) Histogram of 500 runs: 0k: *** 1k: ******************* 2k:…
Which is about the same score you get if you concentrate and really try hard to get a high score. I think this might be a "hacker" version of the slot machine - the player feels as if he's in control while in fact the outcome is pretty random.
Re: 2048
#170This simple game really shows how amazing the human mind is. I've never played any variant of this game before and when I first started I was blind to the mechanics of how this worked. I was moving so slowly and would fill up the board quite quickly. After playing this game for 2 hours now my fingers are moving faster than my conscious mind can really follow. In my last game I was doing combo moves taking "2" blocks…