Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Created October 4, 2019 12:02
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/ca7739b410841ea346c526824c19acf6 to your computer and use it in GitHub Desktop.
Save AJFaraday/ca7739b410841ea346c526824c19acf6 to your computer and use it in GitHub Desktop.
// grabbed from gist
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