Advertisement
Ineentho

Untitled

Nov 14th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. var timer;
  2. var ruta = document.createElement("div");
  3. ruta.innerHTML = "<div style='position: absolute;right: 400px; top: 10px; background: #111;padding: 5px'>Script för lite smartare<hr><a href='#' onclick='startClicking()'>Start</a> | <a href='#' onclick='stopClicking()'>Stop</a></div>";
  4. document.body.appendChild(ruta);
  5. stopClicking = function () {
  6.     timer = clearTimeout(timer)
  7. };
  8. startClicking = function () {
  9.     timer = setInterval(function () {
  10.         for(var i = 0; i < 2000; i++){
  11.             Game.lastClick = new Date().getTime() - 10;
  12.             Game.ClickCookie();
  13.         }
  14.     }, 0);
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement