Skip to content

Instantly share code, notes, and snippets.

@hevans90
Created July 14, 2022 12:40
Show Gist options
  • Save hevans90/f67a64faaa8aa010eba1abdc63b1d94d to your computer and use it in GitHub Desktop.
Save hevans90/f67a64faaa8aa010eba1abdc63b1d94d to your computer and use it in GitHub Desktop.
mine defense auto-play
const autoPlay = () => {
setInterval(() => MD.dig(200, 200));
setInterval(() => {
MD.combineGems();
for (let index = 0; index < 6; index++) {
MD.clickMage(index);
}
}, 200);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment