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:
{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;
}
}}