Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Last active August 29, 2018 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJFaraday/b9a0fe99060d9be1fc617bb7262f57be to your computer and use it in GitHub Desktop.
Save AJFaraday/b9a0fe99060d9be1fc617bb7262f57be to your computer and use it in GitHub Desktop.
Long random bot
if((api.turn() % 10) == 0) {
directions = ['towardsY', 'towardsX', 'awayY', 'awayX'];
dir = Math.floor(Math.random() * 4);
api[directions[dir]]();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment