Skip to content

Instantly share code, notes, and snippets.

@krasnoukhov
Created August 29, 2013 11:25
Show Gist options
  • Save krasnoukhov/6376885 to your computer and use it in GitHub Desktop.
Save krasnoukhov/6376885 to your computer and use it in GitHub Desktop.
var jq = document.createElement('script')
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"
document.getElementsByTagName('head')[0].appendChild(jq)
setTimeout(function() {
// Stole shekels
setInterval(function() { gibeShekel() }, 10)
// Press random buttons
setInterval(function() {
buttons = $(".buyButton")
button = buttons[Math.floor(Math.random()*buttons.length)]
button.onclick()
}, 5000)
}, 5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment