-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
494 lines (473 loc) · 16.9 KB
/
index.html
File metadata and controls
494 lines (473 loc) · 16.9 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
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>XMODS | Outdated, needing updates</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400..800&display=swap" rel="stylesheet">
<style>
:root {
--cw: 88vw;
}
@media (min-width: 1000px) {
:root {
--cw: 41vw;
}
}
@media (min-width: 1750px) {
:root {
--cw: calc(76vw / 3);
}
}
body {
margin: 0;
background: #080810;
}
#edch {
margin-top: calc(11vh + 3vw - 2.6vh);
height: 5vh;
}
.marquee {
display: flex;
overflow: hidden;
user-select: none;
height: 5vh;
line-height: 5vh;
gap: 3vh;
}
.marquee2 {
animation: scroll 30s linear infinite;
flex-shrink: 0;
display: flex;
justify-content: space-around;
min-width: 100%;
font-weight: 700;
font-size: 2vh;
gap: 3vh;
p {
color: #ffffff;
margin: 0;
font-family: "Montserrat", arial;
font-weight: 500;
}
p.sep {
transform: translateY(-5%);
}
}
@keyframes scroll {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(-100% - 3vh));
}
}
#grid {
display: grid;
gap: 6vw;
margin: calc(3vw - 2.5vh) 6vw 6vw 6vw;
width: 88vw;
grid-template-columns: repeat(auto-fit, var(--cw));
}
#nav {
width: 100vw;
height: 11vh;
background: rgba(245, 245, 255, 0.075);
border-bottom: 0.1vw solid rgba(255, 255, 255, 0.164);
backdrop-filter: blur(10px);
border-bottom-left-radius: 1vh;
border-bottom-right-radius: 1vh;
position: fixed;
top: 0;
left: 0;
z-index: 50;
#title {
width: 50%;
height: 4vh;
line-height: 4vh;
font-size: 4vh;
margin: 2vh 25% 1vh 25%;
font-size: 4vh;
text-align: center;
color: #ffffff;
font-family: "Montserrat", arial;
font-weight: 700;
z-index: 51;
}
#links {
width: 80%;
margin-left: 10%;
height: 4vh;
display: grid;
grid-template-columns: repeat(3, 1fr);
z-index: 51;
.link {
position: relative;
a {
text-decoration: none;
color: #ffffff;
font-size: 2vh;
font-family: arial;
width: max-content;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
}
}
}
}
@media (max-width: 800px) {
#links {
width: 100% !important;
margin-left: 0 !important;
display: flex !important;
align-items: center;
justify-content: space-around;
.link {
width: min-content !important;
a {
font-size: 1.7vh !important;
width: min-content !important;
position: static !important;
}
}
}
}
#footer {
width: 100%;
height: 10vh;
position: fixed;
bottom: 0;
p {
background: rgba(245, 245, 255, 0.075);
border: 0.1vw solid rgba(255, 255, 255, 0.164);
border-bottom: none;
backdrop-filter: blur(10px);
border-top-left-radius: 1vh;
border-top-right-radius: 1vh;
width: max-content;
height: 10vh;
line-height: 10vh;
font-size: 3vh;
color: #ffffff;
font-family: "Montserrat", arial;
font-weight: 700;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
padding: 0 3vh;
}
}
p::selection,
h1::selection,
h2::selection,
a::selection {
background: #ffffff77;
}
.link-hover {
position: relative;
transition: .2s;
z-index: 2;
.underline {
width: 110%;
transform: translate(-4%, 0);
height: 1px;
background-color: #ffffff;
position: absolute;
bottom: 0;
transition: .2s;
z-index: -100;
}
}
.link-hover:hover {
color: #000000 !important;
.underline {
height: 100%;
}
}
.app {
width: 100%;
height: min-content;
background: rgba(245, 245, 255, .12);
border: 5px solid rgba(255, 255, 255, .15);
border-radius: calc(var(--cw) * 0.05);
padding: 5%;
transition: .4s;
box-sizing: border-box;
p {
margin: 0;
color: #ffffff;
font-family: "Montserrat";
font-weight: 700;
}
.info {
display: grid;
width: 100%;
aspect-ratio: 10 / 3;
grid-template-columns: 30% 70%;
grid-template-rows: 45% 55%;
img {
width: 100%;
aspect-ratio: 1 / 1;
border-radius: 18%;
grid-area: 1 / 1 / 3 / 2;
}
.name {
height: calc(var(--cw) * 0.9 * 0.3 * 0.3);
margin: 0 5%;
font-size: calc(var(--cw) * 0.9 * 0.3 * 0.3 * 0.7);
line-height: calc(var(--cw) * 0.9 * 0.3 * 0.3);
grid-area: 1 / 2 / 2 / 3;
}
.data {
height: calc(var(--cw) * 0.9 * 0.3 * 0.15);
margin: calc(var(--cw) * 0.9 * 0.3 * 0.275) 5%;
font-size: calc(var(--cw) * 0.9 * 0.3 * 0.15 * 0.6);
line-height: calc(var(--cw) * 0.9 * 0.3 * 0.15);
grid-area: 1 / 2 / 2 / 3;
}
a {
width: 95%;
height: calc(var(--cw) * 0.9 * 0.3 * 0.55);
margin: 0 5%;
grid-area: 2 / 2 / 3 / 3;
text-decoration: none;
border-radius: calc(var(--cw) * 0.03);
color: #ffffff;
text-align: center;
transition: .4s;
border: calc(var(--cw) * 0.007) solid #00ff00;
background: #00ff0077;
box-shadow: 0 0 calc(var(--cw) * 0.07) calc(var(--cw) * -0.015) #00ff0077;
position: relative;
box-sizing: border-box;
.svg1 {
width: 100%;
height: 70%;
position: absolute;
top: 49%;
left: 50%;
transform: translate(-50%, -50%);
}
.svg2 {
width: 100%;
height: 55%;
position: absolute;
top: 49%;
left: 49%;
transform: translate(-50%, -50%);
}
}
a:hover {
background: #00ff0099;
box-shadow: 0 0 calc(var(--cw) * 0.07) calc(var(--cw) * -0.015) #00ff00;
}
a.grey {
border: calc(var(--cw) * 0.007) solid rgba(255, 255, 255, .12);
background: rgba(245, 245, 255, .09);
box-shadow: 0 0 calc(var(--cw) * 0.07) calc(var(--cw) * -0.015) #99999877;
svg path {
stroke: rgba(255, 255, 255, .15);
}
}
a.grey:hover {
background: rgba(245, 245, 255, .19);
box-shadow: 0 0 calc(var(--cw) * 0.07) calc(var(--cw) * -0.015) #999998;
}
}
.mods {
margin-top: calc(var(--cw) * 0.04);
display: grid;
grid-template-columns: 1fr;
background: rgba(245, 245, 255, .09);
border: calc(var(--cw) * 0.007) solid rgba(255, 255, 255, .12);
border-radius: calc(var(--cw) * 0.03);
box-sizing: border-box;
p {
width: 100%;
text-align: center;
font-size: calc(var(--cw) * 0.9 * 0.035);
height: max-content;
line-height: calc(var(--cw) * 0.9 * 0.075);
}
}
}
.app:hover {
transform: scale(1.01);
}
</style>
</head>
<body>
<div id="nav">
<p id="title" class="no-sel">XMODS</p>
<div id="links">
<div class="link"><a class="link-hover no-sel" href="/x">Mods<div class="underline"></div></a></div>
<div class="link"><a class="link-hover no-sel" href="/x/comingsoon.html">Updates<div class="underline"></div></a></div>
<div class="link"><a class="link-hover no-sel" href="https://contact.qwk.zone/xmods" target="_blank" rel="noopener">Contact<div class="underline"></div></a></div>
</div>
</div>
<div id="edch" class="marquee">
<div class="marquee2">
<p class="edch-data">Site no longer maintained, new remake coming soon...</p><p class="sep">┃</p>
<p class="edch-data">Site no longer maintained, new remake coming soon...</p><p class="sep">┃</p>
</div>
<div class="marquee2">
<p class="edch-data">Site no longer maintained, new remake coming soon...</p><p class="sep">┃</p>
<p class="edch-data">Site no longer maintained, new remake coming soon...</p><p class="sep">┃</p>
</div>
</div>
<div id="grid">
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/achieve.png" alt="Achieve Logo">
<p class="name">Achieve</p>
<p class="data">Working 08/03/25</p>
<a href="/x/install/achieve.html">
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Answer Solver</p>
<p>Auto Answer</p>
<p>Themes</p>
<p>Hints</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/blooket.png" alt="Blooket Logo">
<p class="name">Blooket</p>
<p class="data">Coming soon...</p>
<a class="grey"> <!-- href="/x/install/blooket.html" -->
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Auto Answer</p>
<p>All Blooks</p>
<p>Infinite Currency</p>
<p>OP Towers</p>
<p>Instant Win</p>
<p>And More...</p>
<p>(Mods Depend On Game Mode)</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/gimkit.jpg" alt="Gimkit Logo">
<p class="name">Gimkit</p>
<p class="data">Working 08/03/25</p>
<a href="/x/install/gimkit.html">
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Auto Answer</p>
<p>Auto Upgrade</p>
<p>Rapid Fire</p>
<p>Use Any Skin</p>
<p>Customisable UI</p>
<p>And More...</p>
<p>(Mods Depend On Game Mode)</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/blooket.png" alt="Blooket Logo">
<p class="name">Blooket Bots</p>
<p class="data">Currently Patched</p>
<a class="grey"> <!-- href="/x/bots/blooket.html" -->
<svg class="svg2" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M20 4L12 12M20 4V8.5M20 4H15.5M19 12.5V16.8C19 17.9201 19 18.4802 18.782 18.908C18.5903 19.2843 18.2843 19.5903 17.908 19.782C17.4802 20 16.9201 20 15.8 20H7.2C6.0799 20 5.51984 20 5.09202 19.782C4.71569 19.5903 4.40973 19.2843 4.21799 18.908C4 18.4802 4 17.9201 4 16.8V8.2C4 7.0799 4 6.51984 4.21799 6.09202C4.40973 5.71569 4.71569 5.40973 5.09202 5.21799C5.51984 5 6.07989 5 7.2 5H11.5" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Fill Whole Lobby With Bots</p>
<p>Choose Any Blooks</p>
<p>5 Servers</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/krunker.png" alt="Krunker Logo">
<p class="name">Krunker</p>
<p class="data">Patched, Waiting on update...</p>
<a class="grey"> <!-- href="/x/install/krunker.html" -->
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Aimbot</p>
<p>Wallhack</p>
<p>Custom Visuals</p>
<p>Spin Bot</p>
<p>Unlimited Ammo</p>
<p>Custom Configs</p>
<p>6 Built-in Presets</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/chess.png" alt="Chess Logo">
<p class="name">Chess</p>
<p class="data">Working 08/03/25</p>
<a href="/x/install/chess.html">
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Best Move</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/youtube.png" alt="Youtube Logo">
<p class="name">Youtube</p>
<p class="data">Working 08/03/25</p>
<a href="/x/install/youtube.html">
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Age Restriction Bypass</p>
</div>
</div>
<div class="app">
<div class="info">
<img src="https://raw.githubusercontent.com/qwkdev/x/refs/heads/main/static/venge.png" alt="Venge Logo">
<p class="name">Venge</p>
<p class="data">Working 08/03/25</p>
<a href="/x/install/venge.html">
<svg class="svg1" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12 9.5V15.5M12 15.5L10 13.5M12 15.5L14 13.5M8.4 19C5.41766 19 3 16.6044 3 13.6493C3 11.2001 4.8 8.9375 7.5 8.5C8.34694 6.48637 10.3514 5 12.6893 5C15.684 5 18.1317 7.32251 18.3 10.25C19.8893 10.9449 21 12.6503 21 14.4969C21 16.9839 18.9853 19 16.5 19L8.4 19Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>
</a>
</div>
<div class="mods">
<p>Aimbot</p>
<p>ESP</p>
<p>OP Guns</p>
<p>Infinite Ammo</p>
<p>Fly Hacks</p>
<p>Speed Hacks</p>
<p>Invisibility</p>
<p>And More...</p>
</div>
</div>
</div>
<div id="footer">
<p>Made by <span><a class="link-hover" style="color: #ffffff; text-decoration: none;" href="https://qwkdev.github.io" target="_blank" rel="noopener">qwk<span class="underline" style="width: 110%; transform: translate(-95%, 0);"></span></a></span></p>
</div>
<script>
fetch('https://qtrack.pythonanywhere.com/visit/xmods', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
's': null,
'o': window.location.href || null,
'r': document.referrer || null
})
}).catch(error => console.error('Error fetching visits:', error));
</script>
</body>
</html>