Same seed, same game
The last piece of the engine is about trust. Stacked! 2048's randomness — which tiles come next — is driven by a "seed," a starting number. Give the game the same seed and make the same moves, and you get exactly the same game: tile for tile, score for score.
That sounds technical, but it's really about fairness. A daily challenge can hand everyone the identical sequence of tiles, so the leaderboard measures skill rather than luck. A run can be replayed exactly. And when something goes wrong, a bug can be reproduced precisely instead of guessed at. We deliberately avoided the kind of randomness that drifts from one phone to another, so a run plays out the same on every device.
We also settled how new tiles are chosen: early on you mostly get 2s and 4s, and as you reach bigger tiles the mix shifts upward to keep the pressure on. All of it flows from the seed, and all of it is tested — including the core promise that the same seed and the same moves always land on the same board.
With that, the rules engine behind Stacked! 2048 is complete and proven: the board, the merges, the scoring, and the fairness, all running and checked without a single graphic. Next, we give it a face — the screen you'll actually play on.