Guest User

Untitled

a guest
May 29th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var time = 12000; //= 12sec
  2. window.setTimeout(
  3. \tfunction()
  4. \t{
  5. \t\twindow.location.reload() ;
  6. \t},
  7. \ttime
  8. ) ;
  9.  
  10. function rand(min, max){
  11. return (max-min)*Math.random()+min;
  12. }
  13.  
  14. function step() {
  15. document.querySelector('#firebutton').click();
  16. }
  17. setTimeout (step, rand (5000, 7000));
  18.  
  19. (function() {
  20. document.getElementById("walk").checked=true;
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment