Skip to content

Instantly share code, notes, and snippets.

@eviltester
Created December 11, 2017 10:14
Show Gist options
  • Select an option

  • Save eviltester/076b8e52a9b3c0bb3868a0ec6150c860 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
Author

to stop the bot, type the following into the console

clearInterval(ztypebot);

@eviltester

Copy link
Copy Markdown
Author

run against https://zty.pe/

@supremexxxx

Copy link
Copy Markdown

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

@eviltester

Copy link
Copy Markdown
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