-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
1660 lines (1539 loc) · 93.4 KB
/
Copy pathindex.html
File metadata and controls
1660 lines (1539 loc) · 93.4 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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>x3e unblocked games</title>
<link rel="icon" type="image/png" href="https://cdn.jsdelivr.net/gh/gamebackup/gamebackup.github.io@main/images/Cat-looks-inside-meme.png"/>
<base href="https://gamebackup.github.io/">
<meta name="x3e-version" content="2026/09/4-01">
<script>
(function(){
var cloakPresets = {
"x3e unblocked games": { title: "x3e unblocked games", icon: "https://cdn.jsdelivr.net/gh/gamebackup/gamebackup.github.io@main/images/Cat-looks-inside-meme.png" },
"Google": { title: "Google", icon: "https://cdn.jsdelivr.net/gh/gamebackup/gamebackup.github.io@main/images/googleiconv2.png" },
"YouTube": { title: "YouTube", icon: "https://www.youtube.com/s/desktop/2f549df7/img/favicon_32x32.png" },
"Canvas": { title: "Dashboard", icon: "https://du11hjcvx0uqb.cloudfront.net/br/dist/images/favicon-e10d657a73.ico" },
"Khan": { title: "Khan Academy", icon: "https://cdn.kastatic.org/images/favicon.ico" },
"Docs": { title: "Google Docs", icon: "https://ssl.gstatic.com/docs/documents/images/kix-favicon7.ico" },
"Desmos": { title: "Desmos | Graphing Calculator", icon: "https://www.desmos.com/favicon.ico" },
"Drive": { title: "My Drive - Google Drive", icon: "https://ssl.gstatic.com/images/branding/product/1x/drive_2020q4_32dp.png" },
"Google Classroom": { title: "Home - Classroom", icon: "https://edu.google.com/images/svg/gsuite-icons/classroom.svg" },
"XtraMath": { title: "XtraMath", icon: "https://cdn.prod.website-files.com/62db0786ca1a5127000f16e6/68f393b6311816a40a8da3c6_XM-FAVICON.png" }
};
var savedKey = localStorage.getItem("userCloak") || "x3e unblocked games";
if (cloakPresets[savedKey]) {
document.title = cloakPresets[savedKey].title;
var link = document.querySelector("link[rel~='icon']");
if (link) {
link.href = cloakPresets[savedKey].icon;
}
}
})();
</script>
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="/manifest.json">
</head>
<body>
<div id="preloader">
<div id="load">
<div>G</div>
<div>N</div>
<div>I</div>
<div>D</div>
<div>A</div>
<div>O</div>
<div>L</div>
</div>
</div>
<canvas id="particle-canvas"></canvas>
<header>
<div style="display: flex; align-items: center; gap: 15px;">
<img src="https://cdn.jsdelivr.net/gh/gamebackup/gamebackup.github.io@main/images/Cat-looks-inside-meme.png">
<div style="display: flex; flex-direction: column;">
<div class="glitch-title" data-text="x3e unblocked games: 272">
x3e unblocked games: <span id="game-count-number">???</span>
</div>
</div>
</div>
<div style="display: flex; align-items: center; gap: 15px; margin-left: auto;">
<nav>
<a href="#" onclick="randomGame(); return false;">Random Game</a>
<a href="https://forms.gle/4qtsrTs18sW5equ9A" target="_blank">Game Request</a>
<a href="https://forms.gle/TPk7ZofJveGqhbXs6" target="_blank">Blocked/Bug Report</a>
<a href="https://docs.google.com/document/d/1l68KDopM0GgzX4Ikzb2U-mkUXK-mjEx2AZo_TGB8caQ/edit?usp=sharing" target="_blank">Q&A</a>
<a href="#" onclick="openSettings(); return false;">Settings</a>
</nav>
<div class="search-bar">
<div class="search-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</div>
<input type="text" id="gameSearch" onkeyup="searchGames()" placeholder="Search for a game..." class="search-input">
</div>
</div>
</header>
<div style="
text-align: center;
background: rgba(230,21,135,0.15);
color: #e61587;
padding: 6px;
font-size: 0.85rem;
border-bottom: 1px solid rgba(230,21,135,0.2);
backdrop-filter: blur(4px);
">
I’m retiring after senior year —
<a href="https://docs.google.com/forms/d/e/1FAIpQLSddqCBgK6L23oEymqx6AAq5huXTHYPcwzB2HXRRiFu4kTJ2Lg/viewform?usp=dialog"
style="color:#e61587;font-weight:bold;text-decoration:underline;"
target="_blank">
click here if you want to run x3e after me
</a>
</div>
<!-- Countdown Timer -->
<div class="countdown-section" style="
text-align: center;
background: rgba(0, 0, 0, 0.4);
color: #fff;
padding: 18px 10px;
border-bottom: 1px solid rgba(230,21,135,0.2);
backdrop-filter: blur(4px);
">
<h3 style="margin: 0 0 12px; font-size: 1.1rem; letter-spacing: 2px; color: #e61587;">COUNTDOWN TO END OF <a href="https://docs.google.com/document/d/1FhUuhkgaoNFxXK0gDycIbdx-2SxoSqjveZY_SfWrjDk/edit?tab=t.0"
style="color:#e61587;font-weight:bold;text-decoration:underline;"
target="_blank">
HIGH SCORE CONTEST
</a>
</h3>
<div class="countdown-timer" id="countdown-timer" style="
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
">
<div class="countdown-item">
<span id="countdown-days" style="font-size: 2rem; font-weight: bold; font-family: monospace; color: #fff; text-shadow: 0 0 10px #e61587;">00</span>
<span style="display: block; font-size: 0.75rem; letter-spacing: 1px;">DAYS</span>
</div>
<div class="countdown-item">
<span id="countdown-hours" style="font-size: 2rem; font-weight: bold; font-family: monospace; color: #fff; text-shadow: 0 0 10px #e61587;">00</span>
<span style="display: block; font-size: 0.75rem; letter-spacing: 1px;">HOURS</span>
</div>
<div class="countdown-item">
<span id="countdown-minutes" style="font-size: 2rem; font-weight: bold; font-family: monospace; color: #fff; text-shadow: 0 0 10px #e61587;">00</span>
<span style="display: block; font-size: 0.75rem; letter-spacing: 1px;">MINUTES</span>
</div>
<div class="countdown-item">
<span id="countdown-seconds" style="font-size: 2rem; font-weight: bold; font-family: monospace; color: #fff; text-shadow: 0 0 10px #e61587;">00</span>
<span style="display: block; font-size: 0.75rem; letter-spacing: 1px;">SECONDS</span>
</div>
</div>
</div>
<div id="update-notification" class="hidden">
<div class="update-icon">🔄</div>
<div class="update-content">
<div class="update-title">New Update Available!</div>
<div class="update-message">A new version of x3e is ready.</div>
</div>
<div class="update-actions">
<button class="update-btn" onclick="applyUpdate()">Update</button>
<button class="update-dismiss" onclick="dismissUpdate()">✕</button>
</div>
</div>
<div class="hero">
<div class="content-box">
<div class="herotext">
<h1>Welcome to x3e unblocked games! Share with your friends!</h1>
<p><strong>Double click whatever game's main menu when it loads, to make sure the controls are focused. If you don't you will end up reloading the page instead of playing it</strong></p>
<p><strong>Stars next to games mean the following: * = Little Laggy, ** = Probably Playable, *** = Won't run on chromebooks.</strong></p>
<p><strong>Use "ctrl" and "+" or "-" to zoom in or out of the games.</strong></p>
<p><strong>Just a warning, pressing CTRL and W at the same time will close your tab</strong></p>
</div>
</div>
</div>
<div class="section">
<h2>10 Most Recent Games:</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/dkc/')">Donkey Kong Country</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/pinepoint/')">Pine Point: Insomniac</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/hickory/')">Hickory</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/deltarune/')">DELTARUNE CH 5</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/maxpayne/')">Max Payne GBA</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/mpn/')">Madness: Project Nexus Classic</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/mosalina/')">Mosa Lina</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/kapi/')">Friday Night Funkin' - Kapi Mod</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/cobb/')">Cobb Can Move</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/100colors/')">100 Colors</button>
</div>
</div>
<div class="section">
<h2>Action & Adventure</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/burritobisonLL/')">Burrito Bison</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/bbrevenge/')">Burrito Bison: Revenge</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/superhotlinemiami/')">SUPERHOTLine Miami</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/cactusmccoy/')">Cactus Mccoy</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/cactusmccoy2/')">Cactus Mccoy 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/johnnyupgrade/')">Johnny Upgrade</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/diggy/')">Diggy</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/retro bowl/')">Retro Bowl</button>
<button onclick="playGame('https://gamebackup.github.io/pico8_games/justoneboss/web/')">Just One Boss</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/earntodie/')">Earn to Die</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/earntodie2/')">Earn to Die 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/superhot/')">SUPERHOT*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/supercold/')">SUPERCOLD</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/slimerancher/')">Slime Rancher - MOUSE REQUIRED!*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/halflife/')">Half Life* - Just press "Launch Xash!" ignore the options</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/hk/hollow knight.html')">Hollow Knight**</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/org-trail/')">Oregon Trail</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/fnafworld/')">FNaF World** - Dont select Crying Child</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/hickory/')">Hickory</button>
</div>
</div>
<div class="section">
<h2>Arcade & Retro</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/worldshardestgame/')">World's Hardest Game</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/pacman/')">Pacman</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/2048/')">2048</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/9007/')">90071992547409</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/tinyfishing/')">Tiny Fishing</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hauntthehouse/')">Haunt the House</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/wordleunlimited/')">Wordle</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/qwop/')">QWOP</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/doodlejump/')">Doodle Jump</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/bounce/')">Bounce</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/flappybird/')">Flappy Bird</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/googlesnake/')">Google Snake</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/soccerphysics/')">Soccer Physics</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/minesweeper/')">Minesweeper</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/pong/')">Pong</button>
<button onclick="playGame('https://gamebackup.github.io/pico8_games/celeste/')">Celeste - Pico-8</button>
<button onclick="playGame('https://gamebackup.github.io/pico8_games/celeste2/')">Celeste 2: Lani's Trek - Pico-8</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/flyinggorilla/')">Flying Gorilla</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/bouncemasters/')">Bouncemasters</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/bottleflip/')">Bottle Flip 3D</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/spacewaves/')">Space Waves</button>
</div>
</div>
<div class="section">
<h2>Experiments & Tools</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/antcolony/')">Ant Colony Simulator</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/ailearning/')">AI Evolution</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/adjfireworks/')">Adjustable Fireworks</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/fluidsim/')">Fluid Simulation</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/urres/')">Your Resolution</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/3ddiceroll/')">3D Dice Roller</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/asciicam/')">Ascii Camera*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/gameoflife/')">Conway's Game of Life</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/ripples/')">Ripples</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/fishies/')">FISHIES</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/bitsrain/')">Raining Bits</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/urip/')">Your IP</button>
<button onclick="playGame('https://docs.google.com/document/d/1jzSbG6A-Kh1sx0ze3pT1ijICN4DpRJps2ZfJXWb28-Q/edit?usp=sharing')">Chat Room</button>
<button onclick="playGame('https://www.gutenberg.org/')">Gutenberg.org - Free Digital Library</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/mathsolver/')">x3e Math Helper</button>
<button onclick="playGame('https://minhhua.com/space_marine_painter_3d/')">Space Marine Painter 3D</button>
<button onclick="playGame('https://gamebackup.github.io/chord/')">Chorde - Public Release</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/x3e-audio/')">x3e media player</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/logic-sandbox/')">Logic Sandbox</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/100colors/')">100 Colors</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/absolute_solver/')">x3e math solver</button>
</div>
</div>
<div class="section">
<h2>Fighting & Combat</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/ageofwar/')">Age of War</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/ageofwar2/')">Age of War 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/armyofages/')">Army of Ages</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/laststandunioncity/')">The Last Stand: Union City</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/nzp/')">NZ:P**</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/supersmashflash/')">Super Smash Flash</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/quake3/')">Quake III Arena</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/hotline-miami/')">Hotline Miami* - Arrow keys and enter to select menu items</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/cuphead/')">Cuphead***</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/crazycattle3d/')">Crazy Cattle 3D</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/yomihustle/')">Your Only Move is Hustle</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/brawlstars/')">Brawlstars</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/badtimesim/')">Bad Time Simlator</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/electoral_carnage/')">Electoral Carnage</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/maxpayne/')">Max Payne GBA</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/mpn/')">Madness: Project Nexus Classic</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/stickdragon/')">Stickman Dragon Fight</button>
</div>
</div>
<div class="section">
<h2>Gambling & Chance</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/3ddiceroll/')">3D Dice Roller</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/horseracer/')">Horse Racing</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/13bones/')">13 Bones</button>
</div>
</div>
<div class="section">
<h2>Horror & Survival</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/buckshotroulette/')">Buckshot Roulette*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/irnlng/')">Iron Lung</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/granny/')">Granny**</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/fnaf1/')">Five Nights at Freddy's 1*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/fnaf2/')">Five Nights at Freddy's 2*</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/cobb/')">Cobb Can Move</button>
</div>
</div>
<div class="section">
<h2>Idle & Incremental</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/idledice/')">Idle Dice</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/dogeminer1/')">Dogeminer 1</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/innoveryourhead/')">Inn Over Your Head*</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/machinegg/')">The MachinEGG</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/crank/')">Crank - Mouse Recommended</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/gambletable/')">Gamblers Table</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/uploadlabs/')">Upload Labs</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/cc/')">Cookie Clicker</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/scritchscratch/')">Scritchy Scratchy</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/clownhole/')">Clown Hole</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/trimps/')">Trimps</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/prestige-tree/')">Prestige Tree</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/swarm-simulator/')">Swarm Simulator</button>
</div>
</div>
<div class="section">
<h2>Platformers & Runners</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/subwaysurfersny/')">Subway Surfers</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/run2/')">Run 2</button>
<button onclick="playGame('https://gamebackup.github.io/balz/')">Run 3</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/jetpackjoyride/')">Jetpack Joyride</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/templerun2/')">Temple Run 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/crossyroad/')">Crossy Road</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/crossyspace/')">Crossy Road: Space</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/stumbleguys/')">Stumble Guys</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/happywheels/')">Happy Wheels</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/chromedino/')">Chrome Dino Game</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/totm/')">Tomb of the Mask</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/moneymovers1/')">Money Movers 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/moneymovers3/')">Money Movers 3</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/celeste/')">Celeste***</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/vaportrails/')">Vapor Trails*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/webdash/')">Geometry Dash*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/pizzatower/')">Pizza Tower</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/scoutdigo/')">Pizza Tower - Scoutdigo Mod</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sfk/')">StrikeForce Kitty</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sfk2/')">StrikeForce Kitty 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sfk_league/')">StrikeForce Kitty League</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sfk_last_stand/')">StrikeForce Kitty Last Stand</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/sheepy/')">Sheepy: A Short Adventure Sheepy: A Short Adventure - There is a chance it will freeze your device</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/firewater1/')">Fireboy & Watergirl 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/firewater2/')">Fireboy & Watergirl 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/firewater3/')">Fireboy & Watergirl 3</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/firewater4/')">Fireboy & Watergirl 4</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/firewater5/')">Fireboy & Watergirl 5</button>
</div>
</div>
<div class="section">
<h2>Puzzle & Skill</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/blockblast/')">Block Blast</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/badpiggies/')">Bad Piggies</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/impossiblequiz/')">The Impossible Quiz</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/impossiblequiz2/')">The Impossible Quiz 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/angrybirdsrio/')">Angry Birds: Rio</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/stacking/')">Stacking</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/tether/')">Tether</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snowline/')">Snowline</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snowline2/')">Snowline 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/portal2d/')">Portal 2D</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/cutrope/')">Cut the Rope</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/gameinagame/')">Game Inside a Game</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/bloxors/')">Bloxorz</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/cannonbasketball2/')">Cannon Basketball 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/passwordcracker/')">Password Cracker</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/thereisnogame/')">There is No Game</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/8ballpool/')">8 Ball Pool</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/bobtherobber/')">Bob the Robber</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/tetris/')">Tetris</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/sandtris/')">Sand Tetris</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/hextris/')">Hextris</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/stratagemhero/')">Stratagem Trainer</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/hangman/')">Hangman</button>
<button onclick="playGame('https://wikispeedruns.com/')">Wikipedia Speedruns</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/babaisyou/Baba is You.html')">Baba is You Demo</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/pb/')">Poly Bridge</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/untrusted/')">Untrusted</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/mosalina/')">Mosa Lina</button>
<button onclick="playGame('https://gamebackup.github.io/pico8_games/archeos/')">The Tower of Archeos</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/treehate/')">Trees Hate You</button>
</div>
</div>
<div class="section">
<h2>Racing & Driving</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/hexgl/')">HexGL</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/awesomecars/')">Awesome Cars</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/jellytruck/')">Jellytruck</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/slope/')">Slope</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/snowrider3d/')">Snowrider 3D</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/polytrack/')">Polytrack 0.3.1</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/0.5.2/')">Polytrack 0.5.2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/tanukisunset/')">Tanuki Sunset</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/highontrack/html/11779646/html5/')">High on Track</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/bergentruck201x/')">Bergentruck 201X</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/aztecride/')">Aztec Ride</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/forgetthebrakes/')">Forget the Brakes</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/rocketsoccer/')">Rocket Soccer</button>
</div>
</div>
<div class="section">
<h2>Rhythym & Music</h2>
<div class="button-grid">
<button onclick="playGame('https://webosumania.com/')">Osu!Mania</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/magic-tiles-3/')">Magic Tiles 3</button>
</div>
</div>
<div class="section">
<h2>Roguelike & RPGs</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/itchio_games/feedthevoid/')">Feed the Void</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/tboi/')">The Binding of Isaac</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/blacksmithlab/')">Blacksmith Lab</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/therightmix/')">Bartender - The Right Mix</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/webfishing/')">Webfishing*</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/gk/')">Gun Knight</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/10tilldawn/')">10 Minutes Till Dawn</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/wrangleranch/')">Wrangle Ranch</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/balatro/')">Balatro - Takes a while to load</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/pkrogue/')">PokéRogue*</button>
<button onclick="playGame('https://gamebackup.github.io/pico8_games/oblivion-eve/')">Oblivion Eve</button>
<button onclick="playGame('https://gamebackup.github.io/pico8_games/guncho/')">Guncho</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/world/')">Dynamons World</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/sk/')">Solomon's Keep</button>
</div>
</div>
<div class="section">
<h2>Shooting & Defense</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/spaceinvaders/')">Space Invaders</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/galaga/')">Galaga</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/raftwars/')">Raft Wars</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/raftwars2/')">Raft Wars 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/bullethell/')">Bullet Hell</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/stormthehouse2/')">Storm the House 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/awesometanks/')">Awesome Tanks</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/awesometanks2/')">Awesome Tanks 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/awesomeplanes/')">Awesome Planes</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/endoparasitic/')">Endoparasitic</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/pvz/pvz-portable.html')">Plants vs. Zombies</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/pvzfusion/')">Plants vs. Zombies: Fusion</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/angry-birds-showdown/')">Angry Birds Showdown</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/archery-world-tour/')">Archery World Tour</button>
</div>
</div>
<div class="section">
<h2>Stories & Visual Novels</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/pinepoint/')">Pine Point: Insomniac</button>
</div>
</div>
<div class="section">
<h2>Strategy & Simulation</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/adarkroom/')">A Dark Room</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/finalearth2/')">The Final Earth 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/jacksmith/')">Jacksmith</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/sandboxels/')">Sandboxels</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/openttd/')">OpenTTD</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/sortthecourt/')">Sort the Court</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/civclicker/')">Civ Clicker</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/waterworks/')">Waterworks</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/cellmachine/')">Cell Machine</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/basketballstars/')">Basketball Stars</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/freshwaterfishing/')">Freshwater Fishing Simulator</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/rccreator/')">Roller Coaster Creator</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/hardwaretycoon/')">Hardware Tycoon</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/captchaware/')">Captchaware</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/mondays/')">Mondays: A Sisyphean Typing Simulator</button>
<button onclick="playGame('https://gamebackup.github.io/itchio_games/mysterydigger/')">Mystery Digger</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_2/amongus/')">Among Us - Singleplayer</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/sfs/')">Spaceflight Simulator</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/bitlife/')">Bitlife</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/ages_conflict/')">Ages of Conflict</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/stardew/')">Stardew Valley</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/stick-war-legacy/')">Stick War - Legacy</button>
</div>
</div>
<div class="section">
<center><h2 style="color: #e61587;">⇓ Game Series are below ⇓</h2></center>
</div>
<div class="section">
<h2>Ace Attorney Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/aceattorney1/')">Pheonix Wright: Ace Attorney</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/aceattorney2/')">Pheonix Wright: Ace Attorney - Justice For All</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/aceattorney3/')">Pheonix Wright: Ace Attorney - Trials and Tribulations</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/aceattorney3/')">Apollo Justice: Ace Attorney</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/milesedgeworth/')">Ace Attorney Investigations: Miles Edgeworth</button>
</div>
</div>
<div class="section">
<h2>Bloons Tower Defense Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/btd1/')">Bloons Tower Defense 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/btd2/')">Bloons Tower Defense 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/btd3/')">Bloons Tower Defense 3</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/btd4/')">Bloons Tower Defense 4</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/btd5/')">Bloons Tower Defense 5</button>
</div>
</div>
<div class="section">
<h2>Donkey Kong Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/donkeykong/')">Donkey Kong</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/dkc/')">Donkey Kong Country</button>
</div>
</div>
<div class="section">
<h2>Duck Life Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/dl1/')">Duck Life 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/dl2/')">Duck Life 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/dl3/')">Duck Life 3</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/dl4/')">Duck Life 4</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/dl4rm/index.html')">Duck Life 4 - Remaster</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/dl5/')">Duck Life 5*</button>
</div>
</div>
<div class="section">
<h2>Fancy Pants Adventure Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/fancypants1/')">Fancy Pants Adventures 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/fancypants2/')">Fancy Pants Adventures 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/fancypants3/')">Fancy Pants Adventures 3</button>
</div>
</div>
<div class="section">
<h2>Friday Night Funkin'</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/fnf/')">Friday Night Funkin'</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/chev/')">Friday Night Funkin' - Chev Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/darkwing/')">Friday Night Funkin' - Darkwing Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/cityfunk/')">Friday Night Funkin' - Cityfunk Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/docad/')">Friday Night Funkin' - Docad Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/moscow/')">Friday Night Funkin' - Moscow Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/qt/')">Friday Night Funkin' - QT Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/sonicdashandspin/')">Friday Night Funkin' - Sonic Dash and Spin Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/updog/')">Friday Night Funkin' - Updog Mod</button>
<button onclick="playGame('https://gamebackup.github.io/fnf-mods/kapi/')">Friday Night Funkin' - Kapi Mod</button>
</div>
</div>
<div class="section">
<h2>Henry Stickmin Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/btb/')">Breaking the Bank</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/etp/')">Escaping the Prison</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sthed/')">Stealing the Diamond</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/ita/')">Infiltrating the Airship</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/ftc/')">Fleeing the Complex</button>
</div>
</div>
<div class="section">
<h2>Hobo Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo1/')">Hobo 1 - Brawl</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo2/')">Hobo 2 - Prison Brawl</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo3/')">Hobo 3 - Wanted</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo4/')">Hobo 4 - Total War</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo5/')">Hobo 5 - Space Brawls</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo6/')">Hobo 6 - Hell</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/hobo7/')">Hobo 7 - Heaven</button>
</div>
</div>
<div class="section">
<h2>IO Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/tall-io/')">Tall.io</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/slime-io/')">Slime.io</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/state%20io/')">State.io</button>
<button onclick="playGame('https://gamebackup.github.io/youtube-playables/aquapark-io/')">Aquapark.io</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/paperio2/')">Paper.io 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/paperio2/')">Paper.io 2</button>
</div>
</div>
<div class="section">
<h2>Learn to Fly Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/learntofly1/')">Learn to Fly 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/learntofly2/')">Learn to Fly 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/learntofly3/')">Learn to Fly 3</button>
</div>
</div>
<div class="section">
<h2>Mario Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/supermariokart/')">Super Mario Kart</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/sm64/')">Super Mario 64</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/superstarsaga/')">Mario & Luigi: Superstar Saga</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/drmario/')">Dr. Mario</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario3/')">Super Mario Bros. 3</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/supermarioworld/')">Super Mario World</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/supermario/')">Super Mario Bros.</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mariokart64/')">Mario Kart 64</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_golf/')">Mario Golf</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_party/')">Mario Party</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_tennis/')">Mario Tennis</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_party_2/')">Mario Party 2</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_picross/')">Mario's Picross</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_pinball_land/')">Mario Pinball Land</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_party_advance/')">Mario Party Advance</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_vs_donkey_kong/')">Mario vs. Donkey Kong</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_golf_advance_tour/')">Mario Golf: Advance Tour</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_tennis_power_tour/')">Mario Tennis: Power Tour</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/mario_kart_super_circuit/')">Mario Kart: Super Circuit</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/paper_mario/')">Paper Mario</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/super_mario_advance/')">Super Mario Advance</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/super_mario_land/')">Super Mario Land</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/super_mario_land_2/')">Super Mario Land 2</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/super_mario_advance_3/')">Super Mario Advance 3: Yoshi's Island</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/super_mario_bros_deluxe/')">Super Mario Bros. Deluxe</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/wario_land_3')">Wario Land 3</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/wario_twisted/')">WarioWare: Twisted!</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/wario_touched/')">WarioWare: Touched!</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/wario_inc/')">WarioWare, Inc.: Mega Microgames!</button>
<button onclick="playGame('https://gamebackup.github.io/mk8-demo/')">Mario Kart 8 - Driving Demo**</button>
</div>
</div>
<div class="section">
<h2>Minecraft</h2>
<div class="button-grid">
<button onclick="playGame('https://docs.google.com/document/d/1WkSeNfptCHMEBLGB50VyjYFk2zu7pMLrYSmBuK1B0w0/edit?usp=sharing')">Video Settings Instructions</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/eagle1.12/')">Minecraft 1.12 - Only Singleplayer</button>
</div>
</div>
<div class="section">
<h2>Moto X3M</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/motox3m/')">Moto X3M 1</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/motox3m2/')">Moto X3M 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/motox3mpool/')">Moto X3M: Pool Party</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/motox3mspooky/')">Moto X3M: Spooky Land</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/motox3mwinter/')">Moto X3M: Winter</button>
</div>
</div>
<div class="section">
<h2>Papa's Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wpa/')">Papa Louie 1: When Pizzas Attack!</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wba/')">Papa Louie 2: When Burgers Attack!</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wsa/')">Papa Louie 3: When Sundaes Attack!</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/scooperia/')">Papa's Scooperia</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/pasteria/')">Papa's Pastaria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/freezeria/')">Papa's Freezeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/burgeria/')">Papa's Burgeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/pancakeria/')">Papa's PanCakeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wingeria/')">Papa's Wingeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/donuteria/')">Papa's Donuteria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/bakeria/')">Papa's Bakeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/pizzeria/')">Papa's Pizzeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/tacomia/')">Papa's Taco Mia</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/cupcakeria/')">Papa's Cupcakeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/doggeria/')">Papa's Hotdoggeria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sushiria/')">Papa's Sushiria</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/cheeseria/')">Papa's Cheeseria</button>
</div>
</div>
<div class="section">
<h2>Pinball Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/hellspinball/')">Hell's Pinball</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/spacecadet/')">Space Cadet Pinball</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/pepsipinball/')">Pepsi Pinball</button>
</div>
</div>
<div class="section">
<h2>Pokémon Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/gba_games/games/pokemonruby/')">Pokémon: Ruby</button>
<button onclick="playGame('https://gamebackup.github.io/gba_games/games/pokemonsapphire/')">Pokémon: Sapphire</button>
<button onclick="playGame('https://gamebackup.github.io/gba_games/games/pokemonemerald/')">Pokémon: Emerald</button>
<button onclick="playGame('https://gamebackup.github.io/gba_games/games/pokemonfirered/')">Pokémon: Fire Red</button>
<button onclick="playGame('https://gamebackup.github.io/gba_games/games/pokemonleafgreen/')">Pokémon: Leaf Green</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/pokemon_red/')">Pokémon: Red</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/pokemon_blue/')">Pokémon: Blue</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/pokemon_yellow/')">Pokémon: Yellow</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/pokemon_gold/')">Pokémon: Gold</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/pokemon_silver/')">Pokémon: Silver</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/pokemon_crystal/')">Pokémon: Crystal</button>
</div>
</div>
<div class="section">
<h2>Red Ball Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/redball2/')">Red Ball 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/redball3/')">Red Ball 3</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/redball4/')">Red Ball 4</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/redball5/')">Red Ball 5</button>
</div>
</div>
<div class="section">
<h2>Snail Bob Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob1/')">Snail Bob 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob2/')">Snail Bob 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob3/')">Snail Bob 3</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob4/')">Snail Bob 4</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob5/')">Snail Bob 5</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob6/')">Snail Bob 6</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob7/')">Snail Bob 7</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/snailbob8/')">Snail Bob 8</button>
</div>
</div>
<div class="section">
<h2>Sonic Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/sonicultimate/')">Sonic: Ultimate</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/srb2/')">Sonic Robo Blast 2</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/sonic-mania/')">Sonic Mania</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_3/sonicCD/')">Sonic CD</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic1/')">Sonic the Hedgehog</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_2/')">Sonic the Hedgehog 2</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_3/')">Sonic the Hedgehog 3</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_3d_blast/')">Sonic 3D Blast</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_advance/')">Sonic Advance</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_advance_2/')">Sonic Advance 2</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_advance_3/')">Sonic Advance 3</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_battle/')">Sonic Battle</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_knuckles/')">Sonic & Knuckles</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_pinball_party/')">Sonic Pinball Party</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_spinball/')">Sonic Spinball</button>
<button onclick="playGame('https://gamebackup.github.io/emu_games/games/sonic_3_knuckles/')">Sonic 3 & Knuckles</button>
</div>
</div>
<div class="section">
<h2>Toby Fox Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/standalone_games/undertale/')">UNDERTALE</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games_4/deltarune/')">DELTARUNE</button>
</div>
</div>
<div class="section">
<h2>Vex Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/vex1/')">Vex 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/vex2/')">Vex 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/vex3/')">Vex 3</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/vex4/')">Vex 4</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/vex5/')">Vex 5</button>
<button onclick="playGame('https://gamebackup.github.io/standalone_games/vex6/')">Vex 6</button>
</div>
</div>
<div class="section">
<h2>Wheely Games</h2>
<div class="button-grid">
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely1/')">Wheely 1</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely2/')">Wheely 2</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely3/')">Wheely 3</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely4/')">Wheely 4</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely5/')">Wheely 5</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely6/')">Wheely 6</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely7/')">Wheely 7</button>
<button onclick="playGame('https://gamebackup.github.io/flash_games/games/wheely8/')">Wheely 8</button>
</div>
</div>
<div style="height: 10px;"></div>
<div style="text-align: center; padding: 5px; font-size: 14px; color: #888;">
© COMPOUND//CREATIONS 2025<br>
</div>
<div class="dmca-footer" style="text-align: center; font-size: 10px; color: #666">
All games featured on this site are the property of their respective copyright holders. This site is a fan-made, non-commercial site intended for educational and entertainment use. If you are a rights holder and wish to have your content removed, please contact us via our <a href="https://docs.google.com/forms/d/e/1FAIpQLSf2hOhnEVCMaJITOgmYvtjMql7U0AJSjFoSDfYErlvsZtSwDQ/viewform?usp=header" target="_blank" style="color: #d200ff;">DMCA</a> Form.
</div>
<script>
(function() {
const min = 3000, max = 7000;
const displayTime = Math.floor(Math.random() * (max - min + 1)) + min;
console.log("Loading for: " + displayTime + "ms");
setTimeout(function() {
const loader = document.getElementById('preloader');
if (loader) {
loader.style.opacity = '0';
setTimeout(function() { loader.style.display = 'none'; }, 1000);
}
}, displayTime);
})();
function debounce(fn, ms) { let t; return function(...a) { clearTimeout(t); t = setTimeout(() => fn.apply(this, a), ms); }; }
const canvas = document.getElementById('particle-canvas');
const ctx = canvas.getContext('2d');
let particles = [];
function resizeCanvas() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }
resizeCanvas();
window.addEventListener('resize', resizeCanvas);
class Particle {
constructor() { this.reset(); }
reset() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 1.5 + 0.3;
this.speedX = (Math.random() - 0.5) * 0.4;
this.speedY = -Math.random() * 0.6 - 0.1;
this.life = 1;
this.decay = Math.random() * 0.003 + 0.001;
this.hue = Math.random() < 0.7 ? 320 : 185;
}
update() {
this.x += this.speedX; this.y += this.speedY; this.life -= this.decay;
if (this.life <= 0) this.reset();
}
draw() {
ctx.save();
ctx.globalAlpha = this.life * 0.8;
ctx.fillStyle = `hsl(${this.hue}, 100%, 65%)`;
ctx.shadowColor = `hsl(${this.hue}, 100%, 65%)`;
ctx.shadowBlur = 6;
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
ctx.restore();
}
}
for (let i = 0; i < 200; i++) { const p = new Particle(); p.life = Math.random(); particles.push(p); }
let particlesRAF = null;
function animateParticles() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
particles.forEach(p => { p.update(); p.draw(); });
particlesRAF = requestAnimationFrame(animateParticles);
}
animateParticles();
document.addEventListener('visibilitychange', () => {
if (document.hidden && particlesRAF) { cancelAnimationFrame(particlesRAF); particlesRAF = null; }
else if (!document.hidden && !particlesRAF) animateParticles();
});
function pauseParticles() { if (particlesRAF) { cancelAnimationFrame(particlesRAF); particlesRAF = null; } }
function resumeParticles() { if (!particlesRAF) animateParticles(); }
function sanitizeQuery(s) {
return s.replace(/<[^>]*>/g, '').replace(/[^\w\s'-]/g, '').trim().toLowerCase();
}
function searchGames() {
let input = sanitizeQuery(document.getElementById('gameSearch').value);
let buttons = document.querySelectorAll('.button-grid button');
let sections = document.querySelectorAll('.section');
buttons.forEach(button => {
let gameName = button.innerText.toLowerCase();
button.style.display = gameName.includes(input) ? "" : "none";
});
sections.forEach(section => {
let visibleButtons = section.querySelectorAll('.button-grid button:not([style*="display: none"])');
section.style.display = (visibleButtons.length === 0 && input !== "") ? "none" : "block";
});
}
function randomGame() {
const buttons = document.querySelectorAll('.button-grid button');
const visible = Array.from(buttons).filter(b => b.style.display !== 'none');
const pool = visible.length ? visible : buttons;
if (!pool.length) return;
const pick = pool[Math.floor(Math.random() * pool.length)];
const m = (pick.getAttribute('onclick') || '').match(/playGame\('([^']+)'\)/);
if (m) playGame(m[1]);
}
(function(){
var title = document.querySelector('.glitch-title');
if (!title) return;
var original = 'x3e unblocked games';
var raf = null, frame = 0;
var alpha = 'abcdefghijklmnopqrstuvwxyz';
var charData = [];
for (var ci = original.length - 1, pos = 0; ci >= 0; ci--) {
var lc = original[ci].toLowerCase();
if (alpha.indexOf(lc) !== -1) {
charData[ci] = { idx: alpha.indexOf(lc), pow: pos };
pos++;
}
}
var countSpan = title.querySelector('#game-count-number');
function getTextNode() {
for (var i = 0; i < title.childNodes.length; i++) {
if (title.childNodes[i].nodeType === 3) return title.childNodes[i];
}
return null;
}
function setText(t) {
var node = getTextNode();
if (node) node.textContent = t + ': ';
title.setAttribute('data-text', t + ': ' + (countSpan ? countSpan.textContent : '272'));
}
function animate() {
frame++;
var chars = original.split('');
for (var i = 0; i < chars.length; i++) {
var d = charData[i];
if (!d) continue;
chars[i] = alpha[(d.idx + Math.floor(frame / Math.pow(26, d.pow))) % 26];
}
setText(chars.join(''));
raf = requestAnimationFrame(animate);
}
function stop() {
if (raf) { cancelAnimationFrame(raf); raf = null; }
frame = 0;
setText(original);
}
title.addEventListener('mouseenter', function(){ if (!raf) raf = requestAnimationFrame(animate); });
title.addEventListener('mouseleave', stop);
})();
function playGame(gameUrl) {
if (!gameUrl) { alert("Placeholder: Game coming soon!"); return; }
document.activeElement && document.activeElement.blur();
sessionStorage.setItem('x3e-scrollY', window.scrollY);
document.body.style.overflow = 'hidden';
document.getElementById('game-overlay').style.display = 'block';
document.getElementById('game-frame').src = gameUrl;
}
function closeGame() {
document.body.style.overflow = '';
document.getElementById('game-overlay').style.display = 'none';
document.getElementById('game-frame').src = '';
const saved = sessionStorage.getItem('x3e-scrollY');
if (saved !== null) { window.scrollTo(0, parseInt(saved, 10)); sessionStorage.removeItem('x3e-scrollY'); }
}
/* ── Volume Control ── */
let volumeLevel = parseInt(localStorage.getItem('x3e-volume'), 10);
if (isNaN(volumeLevel) || volumeLevel < 0 || volumeLevel > 100) volumeLevel = 100;
function setVolume(val) {
volumeLevel = Math.max(0, Math.min(100, parseInt(val, 10) || 0));
localStorage.setItem('x3e-volume', volumeLevel);
document.getElementById('volume-slider').value = volumeLevel;
document.getElementById('volume-label').textContent = volumeLevel + '%';
document.getElementById('volume-icon').textContent = volumeLevel === 0 ? '🔇' : volumeLevel < 50 ? '🔉' : '🔊';
const f = document.getElementById('game-frame');
if (f.src && f.contentDocument) {
try {
f.contentDocument.querySelectorAll('audio, video').forEach(el => el.volume = volumeLevel / 100);
} catch(e) {}
}
}
function toggleMute() {
setVolume(volumeLevel === 0 ? 100 : 0);
}
function applyVolumeToFrame(f) {
if (!f || !f.contentDocument || volumeLevel === 100) return;
try {
f.contentDocument.querySelectorAll('audio, video').forEach(el => el.volume = volumeLevel / 100);
} catch(e) {}
}
/* ── Ctrl+F → Search ── */
document.addEventListener('keydown', function(e) {
if ((e.ctrlKey || e.metaKey) && e.key === 'f') {
e.preventDefault();
const input = document.getElementById('gameSearch');
if (input) { input.focus(); input.select(); }
}
});
document.addEventListener('DOMContentLoaded', function() {
setVolume(volumeLevel);
});
function clearAllSaveData() {
if (!confirm('Are you sure you want to continue? This will delete all save progress for EVERY game on x3e.')) return;
if (!confirm('This cannot be undone. All localStorage and IndexedDB data will be wiped. Continue?')) return;
localStorage.clear();
indexedDB.databases().then(dbs => dbs.forEach(db => { if (db.name) indexedDB.deleteDatabase(db.name); }));
document.cookie.split(';').forEach(c => { document.cookie = c.replace(/^ +/, '').replace(/=.*/, '=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/'); });
alert('All save data cleared. Reloading page.');
location.reload();
}
const cloakPresets = {