2048

One Step New Game
Moves per second:
Moves in last frame:
Last move time:
Average move time:
Total move time:
Total moves:

Auto Restart: OFF Reset

AutoDB

How to submit bots: Message numberstada on Discord and send a JS file with the bot. The bot should be an object that has these properties:

Here is an example of a simple bot:
{name: "Priority", author: "NumbersTada", obj: {
getBestMove: function () {
  var results;
  var move = null;
  for (var dir = 0; dir < 4; dir++) {
    // Check all possible moves and pick the first one
    // that is valid
    results = window.game.move(dir, false, true);
    // Second argument is whether to actuate the game
    // (takes 1 frame), third argument is whether to simulate
    // the game (meaning the board doesn't change).
    if (results && results.moved) {
      move = dir;
      break;
    }
  }
  return move;
}
}}

Select a bot from AutoDB and turn on auto moving. Turn on Auto Restart to automatically restart when the game is over (useful for long simulations).