forked from mcdfinn/slavehack2ools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotutorial.user.js
More file actions
22 lines (21 loc) · 750 Bytes
/
Copy pathnotutorial.user.js
File metadata and controls
22 lines (21 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// ==UserScript==
// @name notutorial
// @namespace https://github.com/mcdfinn/slavehack2ools
// @version 0.1
// @description remove annoying tutorial screen
// @author professedhate
// @include https://www.slavehack2.com/*
// @match http://tampermonkey.net/?ext=dhdg&browser=chrome
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
var gameStartScreen = document.getElementById("start_overlay");
setTimeout(function removeStart() {
if (gameStartScreen === null) {
gameStartScreen = document.getElementById("start_overlay");
}
else {
document.getElementById("no1").click();
document.getElementById("no2").click();
getIpButton();
}
}, 2000);