Guest User

Untitled

a guest
Oct 18th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. // ==UserScript==
  2. // @name SAO Autoreload
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Autoreload SAO at reset
  6. // @author Kieffer/Keena
  7. // @match http://*.gamesprite.me/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var int = setInterval(function () {
  14. if (new Date().getHours() === 5) {
  15. var intMin = setInterval(function () {
  16. if (new Date().getMinutes() === 32) {
  17. clearInterval(intMin);
  18. location.reload();
  19. }
  20. }, 60000);
  21. }
  22. }, 1790000);
  23. })();
Advertisement
Add Comment
Please, Sign In to add comment