Advertisement
Guest User

Auto Click - Clicking Bad || andrew65952

a guest
Dec 16th, 2016
1,267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. Info: to easily use, save as a bookmark:
  2.  
  3. javascript:code_goes_here
  4.  
  5. Auto click Script:
  6.  
  7. message("Clicking Bad Hacks Loaded! H-Cookies, J-Stop Cookies, I-Sell, K-Stop Sell"); window.addEventListener("keydown", hacker, false); var autocook; var autosell; function hacker(e) { if (e.keyCode == "72") { autocook = setInterval(function() { document.getElementById("make_btn").click(); },1000/200); message("Auto-Cook: Active"); } else if (e.keyCode == "74") { if (typeof autocook != undefined) { clearInterval(autocook); message("Auto-Cook: Unactive"); } } else if (e.keyCode == "73") { autosell = setInterval(function() { document.getElementById("sell_btn").click(); }, 1000/200); message("Auto-Sell: Active"); } else if (e.keyCode == "75") { if (typeof autosell != undefined) { clearInterval(autosell); message("Auto-Sell: Unactive"); } } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement