Skip to content

Instantly share code, notes, and snippets.

@eviltester
Created December 11, 2017 10:14
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 eviltester/076b8e52a9b3c0bb3868a0ec6150c860 to your computer and use it in GitHub Desktop.
Save eviltester/076b8e52a9b3c0bb3868a0ec6150c860 to your computer and use it in GitHub Desktop.
A simple z-type bot
var zTypeBotAlphaChars = "abcdefghijklmnopqrstuvwxyz";
var zTypeBotCharToType = 0;
ztypebot = setInterval(function() {
ig.game.shoot(
zTypeBotAlphaChars.charAt(zTypeBotCharToType));
zTypeBotCharToType = (zTypeBotCharToType +1)%26;
}
, 100);
@eviltester
Copy link
Author

to stop the bot, type the following into the console

clearInterval(ztypebot);

@eviltester
Copy link
Author

run against https://zty.pe/

@supremexxxx
Copy link

HOW DO YOU ACTIVATE THE ZTYPE BOT!?!?!?!?!?!?!?!??!!

@eviltester
Copy link
Author

Copy the code into the dev tools console.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment