-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhowtoplay.html
More file actions
65 lines (60 loc) · 1.97 KB
/
howtoplay.html
File metadata and controls
65 lines (60 loc) · 1.97 KB
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
<head>
</head>
<body style="padding: 10px 20%" class="body">
<button class="button" onclick="changestate(1)">Mice</button>
<div style="text-align: left" id="div1" class="hidden">
<b>Mice:</b>
<br>
Mice are the main idle producer of clicks.
</br>
</div>
<button class="button" onclick="changestate(2)">Upgrades</button>
<div style="text-align: left" id="div2" class="hidden">
<b>Upgrades:</b>
<br>You can upgrade the mouse speed as well as buy more mice.
</br>
</div>
<button class="button" onclick="changestate(3)">Infinity</button>
<div style="text-align: left" id="div3" class="hidden">
<b>Infinity:</b>
<br>
Infinity is a forced prestige and the first of many layers of prestige. To reach infinity, you must reach 1.8e308 clicks as this is when devices will recognize it as an overflow error. Once you infinity, you gain an infinity click wich can be used for buying infinimice, making even the worst mouse semi-useful.
Prestiging works by reaching a point where you can't go any further. When you reach this point, you can reset the game for a substantial buff.
</br>
</div>
<button class="button" onclick="changestate(4)">Infiniclicks</button>
<div style="text-align: left" id="div4" class="hidden">
<b>Infiniclicks:</b>
<br>
When you infinity, you gain an infiniclick. The main purpose of these is to buy infinimice, wich act as a multiplier for all of your pre-infinity upgrades.
</br>
</div>
<button class="button" onclick="changestate(5)">Infinimice</button>
<script src="htp.js">
</script>
<style>
.body{
width: 150px;
margin: auto;
}
.button {
background-color: #04AA6D;
border: none;
color: white;
padding: 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
border-radius: 5px;
width: 150px;
}
.hidden {
display: none;
}
.shown {
display: block;
}
</style>
</body>