Last active
August 29, 2015 13:56
-
-
Save theRemix/8929626 to your computer and use it in GitHub Desktop.
Flappy Doge Fly Mod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// such new game in Flappy Doge | |
// http://www.dogetek.co/game/ | |
// plz developer tools in chrome | |
// much paste in console | |
// move mouse expert | |
(function () { | |
var pos = null; | |
$(window).mousemove(function (e) { | |
e || (e = window.event); | |
pos = {top: e.clientY, left: e.clientX}; | |
}); | |
setInterval(function () { | |
if (pos) { | |
$("#bird").offset(pos); | |
} | |
window.fall_bird = 1; | |
}, 17); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment