-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
343 lines (327 loc) · 11.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Click Spammer</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class='popup' id='upgrades'>
<div class='popup-content'>
<h1>Upgrades</h1>
<div class='bulk-purchase-wrapper'>
<label for='amount'>Purchase Amount</label>
<select name='amount' id='amount'>
<option value='1'>1</option>
<option value='10'>10</option>
<option value='25'>25</option>
<option value='50'>50</option>
<option value='100'>100</option>
</select>
</div>
<div id='no-upgrades-message'>
<h3>You cannot afford any upgrades!</h3>
</div>
<div class='all-upgrades'>
<div class='upgrade' id='u-one' onclick='upgrade(100,0,1)'>
<h3 class='title'>Auto Clicker</h3>
<p class='cost'>Cost: <span class='cost-value'>100</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='neutral'>±0</span></td>
<td><span class='positive'>+1</span></td>
</tr>
</table>
<p class='description'>A simple clicker to mindlessly press the button over and over again</p>
</div>
<div class='upgrade' id='u-two' onclick='upgrade(100,1,0)'>
<h3 class='title'>Fingers</h3>
<p class='cost'>Cost: <span class='cost-value'>100</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+1</span></td>
<td><span class='neutral'>±0</span></td>
</tr>
</table>
<p class='description'>Extra fingers for extra clicking.</p>
</div>
<div class='upgrade' id='u-three' onclick='upgrade(150,3,-1)'>
<h3 class='title'>Feet</h3>
<p class='cost'>Cost: <span class='cost-value'>150</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+3</span></td>
<td><span class='negative'>-1</span></td>
</tr>
</table>
<p class='description'>Feet help you to click really fast! The downside being they get in the way of everything else</p>
</div>
<div class='upgrade' id='u-four' onclick='upgrade(200,-1,3)'>
<h3 class='title'>Toddler</h3>
<p class='cost'>Cost: <span class='cost-value'>200</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='negative'>-1</span></td>
<td><span class='positive'>+3</span></td>
</tr>
</table>
<p class='description'>Does a good job of pressing buttons, but is annoying and always crying.</p>
</div>
<div class='upgrade' id='u-five' onclick='upgrade(800,0,8)'>
<h3 class='title'>Octopus</h3>
<p class='cost'>Cost: <span class='cost-value'>800</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='neutral'>±0</span></td>
<td><span class='positive'>+8</span></td>
</tr>
</table>
<p class='description'>Octopus's eight tenticles help them press buttons really quickly!</p>
</div>
<div class='upgrade' id='u-six' onclick='upgrade(1000,5,5)'>
<h3 class='title'>Basic Programmer</h3>
<p class='cost'>Cost: <span class='cost-value'>1,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+5</span></td>
<td><span class='positive'>+5</span></td>
</tr>
</table>
<p class='description'>Programs an application to automatically create clicks</p>
</div>
<div class='upgrade' id='u-seven' onclick='upgrade(1500,-2,15)'>
<h3 class='title'>Horse</h3>
<p class='cost'>Cost: <span class='cost-value'>1,500</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='negative'>-2</span></td>
<td><span class='positive'>+15</span></td>
</tr>
</table>
<p class='description'>Stomps really hard on the clicker button!</p>
</div>
<div class='upgrade' id='u-eight' onclick='upgrade(5000,20,0)'>
<h3 class='title'>Two Hands</h3>
<p class='cost'>Cost: <span class='cost-value'>5,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+20</span></td>
<td><span class='neutral'>±0</span></td>
</tr>
</table>
<p class='description'>Extra Hands to click even more</p>
</div>
<div class='upgrade' id='u-nine' onclick='upgrade(20000,30,30)'>
<h3 class='title'>Experienced Programmer</h3>
<p class='cost'>Cost: <span class='cost-value'>20,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+30</span></td>
<td><span class='positive'>+30</span></td>
</tr>
</table>
<p class='description'>An experienced programmer to code a really good clicking application</p>
</div>
<div class='upgrade' id='u-ten' onclick='upgrade(50000,-100,1000)'>
<h3 class='title'>Hacker</h3>
<p class='cost'>Cost: <span class='cost-value'>50,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='negative'>-100</span></td>
<td><span class='positive'>+1000</span></td>
</tr>
</table>
<p class='description'>Hacks the game, but at great cost. </p>
</div>
<div class='upgrade' id='u-eleven' onclick='upgrade(80000,1000,-10)'>
<h3 class='title'>Avacado</h3>
<p class='cost'>Cost: <span class='cost-value'>80,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+1000</span></td>
<td><span class='negative'>-10</span></td>
</tr>
</table>
<p class='description'>It works. Don't question it.</p>
</div>
<div class='upgrade' id='u-twelve' onclick='upgrade(150000,0,1500)'>
<h3 class='title'>Python Developer</h3>
<p class='cost'>Cost: <span class='cost-value'>150,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='neutral'>±0</span></td>
<td><span class='positive'>+1500</span></td>
</tr>
</table>
<p class='description'>Python is not a bad language.</p>
</div>
<div class='upgrade' id='u-thirteen' onclick='upgrade(300000,0,2000)'>
<h3 class='title'>JavaScript Developer</h3>
<p class='cost'>Cost: <span class='cost-value'>300,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='neutral'>±0</span></td>
<td><span class='positive'>+2000</span></td>
</tr>
</table>
<p class='description'>JavaScript is a really useful languageto know.</p>
</div>
<div class='upgrade' id='u-fourteen' onclick='upgrade(500000,0,3000)'>
<h3 class='title'>C# Developer</h3>
<p class='cost'>Cost: <span class='cost-value'>500,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='neutral'>±0</span></td>
<td><span class='positive'>+3000</span></td>
</tr>
</table>
<p class='description'>C# is like Java, except good.</p>
</div>
<div class='upgrade' id='u-fifteen' onclick='upgrade(1000000,0,10000)'>
<h3 class='title'>C++ Developer</h3>
<p class='cost'>Cost: <span class='cost-value'>1,000,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='neutral'>±0</span></td>
<td><span class='positive'>+10000</span></td>
</tr>
</table>
<p class='description'>std﹤﹤cout "Hello World" (Whoops! Forgot the comma and now my entire program is broken!)</p>
</div>
<div class='upgrade' id='u-sixteen' onclick='upgrade(100000000000,15000000000,15000000000)'>
<h3 class='title'>Discord Nitro</h3>
<p class='cost'>Cost: <span class='cost-value'>10,000,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='positive'>+15000000000</span></td>
<td><span class='positive'>+15000000000</span></td>
</tr>
</table>
<p class='description'>Get Gift Discord Nitro For Free!!</p>
</div>
<div class='upgrade' id='u-seventeen' onclick='upgrade(10000000,-1500000,-1500000)'>
<h3 class='title'>BrainF Dev</h3>
<p class='cost'>Cost: <span class='cost-value'>10,000,000</span></p>
<table class='upgrade-stats'>
<tr>
<th>Mult</th>
<th>CPS</th>
</tr>
<tr>
<td><span class='negative'>-1500000</span></td>
<td><span class='negative'>-1500000</span></td>
</tr>
</table>
<p class='description'>Would you like to instantly lose 100000000000 brain cells? Code in BrainF</p>
</div>
</div>
<button onclick='closeUpgrades()' class='bigger-button'>Close</button>
</div>
</div>
<div class='popup' id='settings'>
<div class='popup-content'>
<h1>Settings</h1>
<button onclick='reset()' class='button-block'>Reset Game</button>
<button onclick='showAllUpgrades()' class='button-block off' id='show-all'>Show All Upgrades</button>
<button onclick='removeAlerts()' class='button-block on' id='alerts'>Remove Alerts</button>
<button button onclick='closeAndSaveSettings()' class='bigger-button'>Close</button>
</div>
</div>
<div class='options'>
<button onclick='openUpgrades()'>Upgrades</button>
<button onclick='save()'>Save</button>
<button onclick='openSettings()'>Settings</button>
</div>
<div class='stats'>
<div class='left'>
<h2>All Time Clicks: <span id='user-clicks'>0</span></h2>
<h2>$ On PayPal: <span id='user-bucks'>0</span></h2>
</div>
<div class='right'>
<h3>Mult: <span id='user-mult'>1</span>x</h3>
<h3>CPS: <span id='user-cps'>0</span></h3>
</div>
<div class='center'>
<h1>Level: <span id='user-level'>1</span></h1>
</div>
</div>
<div class='reward'>
<h1>Next Level Reward: <span id='next-level-reward'>200 bucks</span></h1>
</div>
<div class='clicker'>
<div class='xp-bar'>
<span id='xp'>0</span>/<span id='needed-xp'>100</span>xp
<div class='xp-bar-outer'>
<div id='xp-var-value' class='xp-bar-inner'></div>
</div>
</div>
<button id='click-button' onclick='clickActions()' onmousedown='hold=true;' onmouseup='hold=false'>Click Me</button>
</div>
<script src="script.js"></script>
</body>
</html>