Skip to content

Instantly share code, notes, and snippets.

@wteuber
Last active March 5, 2021 16:06
Show Gist options
  • Save wteuber/5593199 to your computer and use it in GitHub Desktop.
Save wteuber/5593199 to your computer and use it in GitHub Desktop.
minimalistic bot for Google's atari breakout
/* go to https://elgoog.im/breakout/ and run the snippet in your js console (works only for one level): */
hit = function($) { $('#breakout-paddle').style.left = (parseInt($('#breakout-ball').style.left, 10)-50).toString()+'px'; window.setTimeout(function(){ hit($); }, 10)}; hit($);
@Hiojios
Copy link

Hiojios commented Dec 2, 2020

Ok

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