Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name SAO Autoreload
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Autoreload SAO at reset
- // @author Kieffer/Keena
- // @match http://*.gamesprite.me/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- var int = setInterval(function () {
- if (new Date().getHours() === 5) {
- var intMin = setInterval(function () {
- if (new Date().getMinutes() === 32) {
- clearInterval(intMin);
- location.reload();
- }
- }, 60000);
- }
- }, 1790000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment