-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (82 loc) · 3.89 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="scoob.png">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,500&family=Roboto&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Martian+Mono:wght@500&family=Roboto+Mono:wght@600&display=swap" rel="stylesheet">
<title>Scobe Miner</title>
<script src="index.js"></script>
<link rel="stylesheet" href="index.css" />
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/9.4.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.4.0/firebase-firestore-compat.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap" rel="stylesheet">
<script>
var firebaseConfig = {
apiKey: "AIzaSyCzmEtWZO2-d6JCy4GoBzOfdvdo52w0HN8",
authDomain: "scobe-miner.firebaseapp.com",
projectId: "scobe-miner",
storageBucket: "scobe-miner.appspot.com",
messagingSenderId: "1086615688423",
appId: "G-HNQ4FW8P9S"
};
firebase.initializeApp(firebaseConfig);
var db = firebase.firestore();
</script>
</head>
<body onload="startUp()">
<div id="button-container">
<button class="gen" onclick="resetScore()">Reset Score</button>
<button class="gen" onclick="exportSave()">Export Save</button>
<button class="gen" onclick="importSave()">Import Save</button>
<input class="gen" type="text" id="importInput" placeholder="Paste your save here">
<input class="gen" type="text" oninput="filterUsername()" id="user" placeholder="Enter Username (DO NOT ABUSE. YOUR SCORE WILL BE RESET)">
<button class="gen" id="passbox" accesskey="o" onclick="clearLeaderboard()">Clear Leaderboard (Password Required)</button>
</div>
<div id="counting">
<label id="counttheclicks">You have clicked 0 times</label>
</div>
<div id="main">
<label id="counter">0</label>
<br />
<div class="button-container">
<button id="gain" onclick="goClick()">Click to Farm Scobe</button>
<br />
<label id="clickcounter">You are making 0 scobes per click</label>
<label class="counters" id="scoble-counter">You have 0 Scobles</label>
<br>
<label class="counters" id="scobular">You have 0 Scoobies</label>
<br>
<label class="counters" id="scooberc">You have 0 Scoobing Machines</label>
</div>
<br />
<img alt="" class="scoobies" src="scoobie.png" />
</div>
<div id="upgrades">
<button class="ub" id="bbb" onclick="getBb()">Better Biscuit. Price: 20 Scobes</button>
<button class="ub" id="bbd" onclick="getBd()">Big Biscuit. Price: 10000 Scobes</button>
<button class="ub" id="twomulti" onclick="addTwo()">Get a 2× multiplier for every click. Price: 6,000,000 Scobes</button>
<button class="ub" id="fourmulti" onclick="buy4xMultiplier()">Get a 4x multiplier for every click. Price: 5,000,000,000 Scobes</button>
<button class="ub" id="scoobie" onclick="getSc()">Buy Scoobie</button>
<button class="ub" id="scoble" onclick="buyScoble()">Buy Scoble. Price: 50,000</button>
<button class="ub" id="sm" onclick="getScoober()">Buy Scoobing Machine. Price: 1B</button>
<br>
<div id="counters-container">
</div>
</div>
<!-- Place the leaderboard <div> here -->
<div id="leaderboard-container">
<h2>Leaderboard</h2>
<ol id="leaderboard-list">
<!-- Leaderboard entries will be inserted here -->
</ol>
</div>
<div id="footnote">
<button onclick="moveOver()" id="changelog">v3.4.1</button>
Coded by Mustafa Azhar for you all!
</div>
</body>
</html>