-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDownload-DB.txt
More file actions
1236 lines (1084 loc) · 82.8 KB
/
Download-DB.txt
File metadata and controls
1236 lines (1084 loc) · 82.8 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
# ===========================================================
# DOWNLOAD DATABASE
# ===========================================================
# Maintained by: ZuhuInc, BramTurf & lceqx
#
# This file contains all required download links.
# Sections are grouped by source, application name & version.
# ===========================================================
GoFile (PEAK) [1.61.a]
ApproxSize: 5GB
Description: PEAK is a co-op climbing game where the slightest mistake can spell your doom. Either solo or as a group of lost nature scouts, your only hope of rescue from a mysterious island is to scale the mountain at its center. Do you have what it takes to reach the PEAK?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PEAK.png
Origin: https://online-fix.me/games/adventures/17801-peak-po-seti.html
MainGame: https://gofile.io/d/vPtzcf
Fix: https://gofile.io/d/6yPbUV
GoFile (RV There Yet) [1.2.17120]
ApproxSize: 1GB
Description: A co-op adventure about driving your Recreational Vehicle home.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/RvThereYet.jpg
Origin: https://online-fix.me/games/adventures/17913-rv-there-yet-po-seti.html
MainGame: https://gofile.io/d/Z7izMj
Fix: https://gofile.io/d/xHVjsW
GoFile (Schedule I) [0.4.5f1]
ApproxSize: 8GB
Description: From small-time dope pusher to kingpin - manufacture and distribute a range of drugs throughout the grungy city of Hyland Point. Expand your empire with properties, businesses, employees and more.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Schedule1.jpg
Origin: https://online-fix.me/games/adventures/17729-schedule-i-po-seti.html
MainGame: https://gofile.io/d/GrpKVf
Fix: https://gofile.io/d/Ta1lFW
GoFile (Crime Simulator) [1.35b]
ApproxSize: 18GB
Description: You’re out of jail, but the debt isn’t gone. Sneak, steal, and break into houses solo or in 4-player co-op. Use lockpicks, sleeping gas, and brute force to complete jobs, outsmart security, and make enough money before time runs out. Will you pay back what you owe, or lose everything?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CrimeSimulator.png
Origin: https://online-fix.me/games/simulator/17805-crime-simulator-po-seti.html
MainPart1: https://gofile.io/d/1OMecB
MainPart2: https://gofile.io/d/3usTjn
Fix: https://gofile.io/d/yOnTYN
GoFile (iRacing Arcade) [Patched]
ApproxSize: 4GB
Description: [!Iracing Patched multiplayer Buy The Game] Race across global licensed series and build your own racing team to secure your motorsport legacy in this third person arcade racer.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/iRacingArcade.jpg
Origin: https://online-fix.me/games/officialservers/18022-iracing-arcade-po-seti.html
MainGame: https://gofile.io/d/ZfeqQr
Fix: https://gofile.io/d/ZCcrlT
GoFile (Liar's Bar) [0.956]
ApproxSize: 10GB
Description: Dive into this multiplayer online experience set in a sketchy bar where the games are as dangerous as the patrons. Join a table of 4 and test your skills in Liar's Dice and Liar's Deck, where lying and bluffing are key to victory. Ready for a night at Liar's Bar?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/LiarsBar.jpeg
Origin: https://online-fix.me/games/simulator/17601-liars-bar-po-seti.html
MainGame: https://gofile.io/d/b8kAGD
Fix: https://gofile.io/d/WdQ2tI
GoFile (Buckshot Roulette) [2.1.0]
ApproxSize: 1.5GB
Description: Play Russian roulette with a 12-gauge shotgun. Four enter. One leaves. Roll the dice with your life. Good luck!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BuckshotRoulette.jpg
Origin: https://online-fix.me/games/puzzles/17621-buckshot-roulette-po-seti.html
MainGame: https://gofile.io/d/Ojkfar
Fix: https://gofile.io/d/vPbiw7
GoFile (Palworld) [0.7.3.90464]
ApproxSize: 25GB
Description: Fight, farm, build and work alongside mysterious creatures called "Pals" in this completely new multiplayer, open world survival and crafting game!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PalWorld.jpg
Origin: https://online-fix.me/games/officialservers/17429-palworld-po-seti.html
MainPart1: https://gofile.io/d/meiFst
MainPart2: https://gofile.io/d/GXjRsI
MainPart3: https://gofile.io/d/asmLJO
MainPart4: https://gofile.io/d/2PbSzX
MainPart5: https://gofile.io/d/Yvu32r
MainPart6: https://gofile.io/d/BCTk6z
Fix: https://gofile.io/d/ahXhVx
GoFile (Chaos Express Delivery) [22022025]
ApproxSize: 5GB
Description: Deliver goods with your friends in open-world city. Manage and upgrade your delivery point, acquire new ways of delivery and become the best.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ChoasExpress.jpg
Origin: https://online-fix.me/games/sandbox/17707-chaos-express-delivery-simulator-po-seti.html
MainPart1: https://gofile.io/d/5wATUX
Fix: https://gofile.io/d/XsXH04
GoFile (The Anomaly Project) [23012025]
ApproxSize: 2GB
Description: Your goal is simple, spot anomalies to escape. Play alone or together with up to 8 players in online co-op. Make the right decisions to advance to the next level, or risk being reset to the beginning!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheAnomalyProject.jpg
Origin: https://online-fix.me/games/puzzles/17676-the-anomaly-project-po-seti.html
MainGame: https://gofile.io/d/bXRlGF
Fix: https://gofile.io/d/fZkdTE
GoFile (Backrooms Extractions) [0.1.79]
ApproxSize: 6GB
Description: Cooperate with up to 6 players to explore, search, and extract lost agents within the Backrooms. Solve puzzles, unlock tools, survive against entities, and progress through increasingly dangerous levels.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BackroomsExtractions.jpg
Origin: https://online-fix.me/games/horror/17779-backrooms-extractions-po-seti.html
MainGame: https://gofile.io/d/EINMCG
Fix: https://gofile.io/d/GHBxxO
GoFile (Carry The Glass) [11112024]
ApproxSize: 1GB
Description: Team up as two quirky construction workers in this fun 2-player co-op platformer! Carry a fragile glass window through colorful levels filled with challenges. Communicate and coordinate to dodge obstacles and solve puzzles. Can you finish the job without breaking the glass?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CarryTheGlass.jpg
Origin: https://online-fix.me/games/arcade/17630-carry-the-glass-po-seti.html
MainGame: https://gofile.io/d/FxcZwe
Fix: https://gofile.io/d/QiSv5i
GoFile (House Flipper 2) [11092025]
ApproxSize: 15GB
Description: Clean your worries away with this relaxing renovation simulator! Buy, fix, sell, and become a local legend. Or grab your power tools and build anything from scratch! With the online 2-4 players co-op mode, you can play both in sandbox and story mode together.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/HouseFlipper2.jpg
Origin: https://online-fix.me/games/simulator/17616-house-flipper-2-po-seti.html
MainPart1: https://gofile.io/d/IDkFay
MainPart2: https://gofile.io/d/ZYvheT
MainPart3: https://gofile.io/d/KOjrGg
Fix: https://gofile.io/d/wpxVAI
GoFile (PowerWash Simulator) [04032025]
ApproxSize: 19GB
Description: Release the Pressure with PowerWash Simulator! Wash away your worries with the soothing sounds of high-pressure water. Fire up your power washer and blast away every speck of dirt and grime you can find, all with the simple satisfaction of power-washing to a sparkling finish.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PowerWashSimulator.jpg
Origin: https://online-fix.me/games/simulator/16857-powerwash-simulator-po-seti.html
MainPart1: https://gofile.io/d/BC4ZP4
MainPart2: https://gofile.io/d/iSJRTO
Fix: https://gofile.io/d/jqHN9i
GoFile (PowerWash Simulator 2) [1.1.059]
ApproxSize: 19GB
Description: PowerWash Simulator is back, bubbling with fresh locations, soap-erior equipment and splashy features. Effortlessly transform soiled surroundings into clean, serene scenes, solo or with pals. Satisfaction is a spray away!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PowerWashSimulator2.jpg
Origin: https://online-fix.me/games/simulator/17919-powerwash-simulator-2-po-seti.html
MainPart1: https://gofile.io/d/TaaF6U
MainPart2: https://gofile.io/d/DyyLLW
Fix: https://gofile.io/d/BFsoRi
GoFile (Another Try 2) [0.0.2.1]
ApproxSize: 6GB
Description: The virus has devastated cities and lands. Most of the population died, the rest turned into the walking dead. You're one of the last survivors. Do whatever it takes to last another day.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/AnotherTry2.jpg
Origin: https://online-fix.me/games/survival/17773-another-try-2-po-seti.html
MainGame: https://gofile.io/d/uIRnLq
Fix: https://gofile.io/d/fQN6R7
Both (Content Warning) [1.17.b]
ApproxSize: 1GB
Description: Film your friends doing scary things to become SpöökTube famous! (strongly advised to not go alone)
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ContentWarning.jpg
Origin: https://online-fix.me/games/sandbox/17484-content-warning-po-seti.html
MainGame: https://gofile.io/d/ndFwsS
Fix: https://www.dropbox.com/scl/fi/mbyynm4cbjjaijewl32uf/ContentWarning_Fix_Repair_Steam_V4_Generic.rar?rlkey=nhjxedfk9l5ixt2uz23h7o5uj&st=m1t9376j&dl=1
GoFile (Sons of The Forest) [03102025]
ApproxSize: 20GB
Description: Sent to find a missing billionaire on a remote island, you find yourself in a cannibal-infested hellscape. Craft, build, and struggle to survive, alone or with friends, in this terrifying new open-world survival horror simulator.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SonsOfTheForest.jpg
Origin: https://online-fix.me/games/survival/17220-sons-of-the-forest-po-seti.html
MainPart1: https://gofile.io/d/pGEOLS
MainPart2: https://gofile.io/d/6EBtUm
MainPart3: https://gofile.io/d/6byd4f
Fix: https://gofile.io/d/t7vCy3
GoFile (SCP: 5K) [0.17.1.64]
ApproxSize: 30GB
Description: SCP: 5K is a co-op or singleplayer tactical horror FPS project that puts players in the midst of a conspiracy where the SCP Foundation has turned on humanity. Enjoy Early Access as we continue to
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SCP5K.jpg
Origin: https://online-fix.me/games/horror/17222-scp-5k-po-seti.html
MainPart1: https://gofile.io/d/lH0tWv
MainPart2: https://gofile.io/d/HuEA67
MainPart3: https://gofile.io/d/WXoqtU
MainPart4: https://gofile.io/d/iJlUvF
MainPart5: https://gofile.io/d/kEQDVx
Fix: https://gofile.io/d/ohI52u
GoFile (The Blackout Club) [13082021]
ApproxSize: 15GB
Description: The Blackout Club is a first-person co-op horror game centered around a group of teenage friends investigating a monstrous secret beneath the skin of their small town. 1-4 players explore procedurally-generated missions against a fearsome enemy you can only see with your eyes closed.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheBlackoutClub.jpg
Origin: https://online-fix.me/games/shooter/16218-the-blackout-club-po-seti.html
MainGame: https://gofile.io/d/UBB63M
Fix: https://gofile.io/d/ctTt5q
GoFile (Granny Escape Together) [1.0.2]
ApproxSize: 5GB
Description: This is a creepy co-op horror game. In which you find yourself locked in a crazy Granny's house. But Granny is not the only danger that awaits you in the house, someone else creepy lives in the basement. You have five days to get out of the house!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/GrannyEscapeTogether.jpg
Origin: https://online-fix.me/games/horror/17653-granny-escape-together.html
MainGame: https://gofile.io/d/cHPQPj
Fix: https://gofile.io/d/pLM7JX
GoFile (Raft) [1.1.07]
ApproxSize: 10GB
Description: Raft™ throws you and your friends into an epic oceanic adventure! Alone or together, players battle to survive a perilous voyage across a vast sea! Gather debris, scavenge reefs and build your own floating home, but be wary of the man-eating sharks!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Raft.jpg
Origin: https://online-fix.me/games/survival/16179-raft-po-seti.html
MainGame: https://gofile.io/d/u7RdXG
Fix: https://gofile.io/d/IS9L0c
GoFile (The Long Drive) [26112024]
ApproxSize: 1GB
Description: Random generated open world semi-post apocalyptic survival car driving game.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheLongDrive.jpg
Origin: https://online-fix.me/games/racing/16474-the-long-drive-po-seti.html
MainGame: https://gofile.io/d/niHqrm
Fix: https://gofile.io/d/sdiXlk
GoFile (Grounded) [1.4.7.4815]
ApproxSize: 11GB
Description: The world is a vast, beautiful and dangerous place – especially when you have been shrunk to the size of an ant. Can you thrive alongside the hordes of giant insects, fighting to survive the perils of the backyard?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Grounded.jpg
Origin: https://online-fix.me/games/shooter/16437-grounded-po-seti.html
MainGame: https://gofile.io/d/lGMDpn
Fix: https://gofile.io/d/GcLFSe
GoFile (The Backrooms: Last Expedition) [1.2]
ApproxSize: 10GB
Description: "The Backrooms: Last Expedition" is a cooperative horror game designed for 1 to 4 players. Its main objective is to create an enjoyable gaming experience for friends. Players will navigate through terrifying levels, filled with various entities and dangers, as they strive to escape.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheBackroomsLastExpedition.jpg
Origin: https://online-fix.me/games/horror/17690-the-backrooms-last-expedition-po-seti.html
MainGame: https://gofile.io/d/MfG530
Fix: https://gofile.io/d/ojRMeL
GoFile (Mage Arena) [0.7.6]
ApproxSize: 1GB
Description: A co-op PvP experience about using your voice to cast spells in the Mage Arena to settle an ages-old feud between sorcerers and warlocks.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/MageArena.jpg
Origin: https://online-fix.me/games/fighting/17825-mage-arena-po-seti.html
MainGame: https://gofile.io/d/LBgx7P
Fix: https://gofile.io/d/ypsM5c
GoFile (Ready or Not) [20032026]
ApproxSize: 60GB
Description: Ready or Not is an intense, tactical, first-person shooter that depicts a modern-day world in which SWAT police units are called to defuse hostile and confronting situations.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ReadyOrNot.jpg
Origin: https://online-fix.me/games/officialservers/16889-ready-or-not-po-seti.html
MainPart1: https://gofile.io/d/ElHWwk
MainPart2: https://gofile.io/d/bqMXWn
MainPart3: https://gofile.io/d/ebSRvR
MainPart4: https://gofile.io/d/shhrmn
MainPart5: https://gofile.io/d/gobyWA
MainPart6: https://gofile.io/d/7YXbBT
MainPart7: https://gofile.io/d/u9IvbP
MainPart8: https://gofile.io/d/KgehHH
MainPart9: https://gofile.io/d/S8Xbdg
Fix: https://gofile.io/d/JBAT6f
GoFile (Grounded 2) [0.4.0.1.2646826]
ApproxSize: 40GB
Description: Shrunk again, but the world is much larger. In this open-world, single-player or co-op survival adventure, craft weapons and armor, build your base, and traverse the playground on your buggy. But something else is out there—and it hasn’t forgotten you.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Grounded2.jpg
Origin: https://online-fix.me/games/officialservers/17827-grounded-2-po-seti.html
MainPart1: https://gofile.io/d/I1nodq
MainPart2: https://gofile.io/d/byuTPF
MainPart3: https://gofile.io/d/mHmR85
MainPart4: https://gofile.io/d/pmReBo
Fix: https://gofile.io/d/Ou6xyo
GoFile (Abiotic Factor) [1.2.0.23023]
ApproxSize: 7GB
Description: Abiotic Factor is a survival crafting experience for 1-6 players set in the depths of an underground research facility. Caught between paranormal containment failure, a military crusade, and chaos from a dozen realms, the world’s greatest minds must survive against the universe’s biggest threats.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Abiotic Factor.jpg
Origin: https://online-fix.me/games/survival/17505-abiotic-factor-po-seti.html
MainGame: https://gofile.io/d/G19i9k
Fix: https://gofile.io/d/LZjgnE
GoFile (Backroom Company) [05082025]
ApproxSize: 4GB
Description: A cooperative horror game about working inside the corporation "The Backrooms". Fulfill contracts and also earn extra money by selling stuff.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BackroomCompany.jpg
Origin: https://online-fix.me/games/adventures/17836-backroom-company-po-seti.html
MainGame: https://gofile.io/d/nwTK3P
Fix: https://gofile.io/d/uR7fQG
GoFile (BMX Streets) [1.0.0.136.0]
ApproxSize: 30GB
Description: Ready to hit the streets? BMX Streets brings the essence of BMX riding to your fingertips. Experience the next generation of BMX gaming with realistic physics, massive amounts of customization and gorgeous maps. Practice, experiment and explore to find your own unique style and master the streets.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BMX-Streets.jpg
Origin: https://online-fix.me/games/officialservers/17732-bmx-streets-po-seti.html
MainGame: https://gofile.io/d/zmAcUd
Fix: https://gofile.io/d/ZZFEHK
GoFile (BeamNG Drive) [0.38.2.0]
ApproxSize: 55GB
Description: A dynamic soft-body physics vehicle simulator capable of doing just about anything.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BEAMNG.png
Origin: https://online-fix.me/games/racing/16506-beamng-drive-po-seti.html
MainPart1: https://gofile.io/d/zGxQLD
MainPart2: https://gofile.io/d/neaDvh
MainPart3: https://gofile.io/d/phMDUE
MainPart4: https://gofile.io/d/JRyPkZ
MainPart5: https://gofile.io/d/YA31Vk
Fix: https://gofile.io/d/1yedQv
GoFile (Mimesis) [0.2.8]
ApproxSize: 3GB
Description: 4 Player co-op survival horror game. When the cursed rain falls, 'Mimesis' appear, perfectly imitating your teammates, bringing a new level of tension you've never experienced before.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Mimesis.jpg
Origin: https://online-fix.me/games/adventures/17920-mimesis-po-seti.html
MainGame: https://gofile.io/d/U36lQK
Fix: https://gofile.io/d/Hk6VoQ
GoFile (Bodycam) [28112025]
ApproxSize: 50GB
Description: Bodycam is the first ultra-realistic multiplayer, first-person shooter game made using the latest technologies of the next-gen game engine Unreal Engine 5. Get ready to dive into fast-paced Bodycam actions, where every bullet counts and every choice can decide over the victory or loss of your team.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BodyCam.jpg
Origin: https://online-fix.me/games/shooter/17452-bodycam-po-seti.html
MainPart1: https://gofile.io/d/XG5Dz6
MainPart2: https://gofile.io/d/xWehDc
MainPart3: https://gofile.io/d/IC2EcM
MainPart4: https://gofile.io/d/KGjXe8
MainPart5: https://gofile.io/d/NrMt9h
MainPart6: https://gofile.io/d/C3mSMh
MainPart7: https://gofile.io/d/YLaAOb
MainPart8: https://gofile.io/d/LULKM4
Fix: https://gofile.io/d/Airs2R
GoFile (The Headliners) [1.2.1]
ApproxSize: 9GB
Description: Co-op horror game where you play in teams of 1 to 8 reckless journalists, ready to explore a city overrun by deadly creatures to snap spectacular footage. Your only goal: make the headlines without becoming one.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheHeadliners.jpg
Origin: https://online-fix.me/games/survival/17683-the-headliners-po-seti.html
MainGame: https://gofile.io/d/glT07S
Fix: https://gofile.io/d/0wG9ra
GoFile (Card Shop Simulator Multiplayer) [0.040]
ApproxSize: 5GB
Description: You and your friends are going to compete to see whose card shop can earn more money! Starting from a humble little shop, decorate your store, hire staff, formulate marketing strategies. Finally, use the coolest cards to engage in card battles, and win away your friends' precious cards!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CardshopSimulatorMP.jfif
Origin: https://online-fix.me/games/simulator/17808-card-shop-simulator-multiplayer-po-seti.html
MainGame: https://gofile.io/d/3GRmEb
Fix: https://gofile.io/d/rqDeTW
GoFile (Ghost of Tsushima DC) [27102025]
ApproxSize: 75GB
Description: A storm is coming. Venture into the complete Ghost of Tsushima DIRECTOR’S CUT on PC; forge your own path through this open-world action adventure and uncover its hidden wonders. Brought to you by Sucker Punch Productions, Nixxes Software and PlayStation Studios.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/GhostOfTsushimaDC.jpg
Origin: https://online-fix.me/games/officialservers/17514-ghost-of-tsushima-directors-cut-po-seti.html
MainPart1: https://gofile.io/d/YX6eIH
MainPart2: https://gofile.io/d/VmOR2g
MainPart3: https://gofile.io/d/OGWTO9
MainPart4: https://gofile.io/d/oiwLZm
MainPart5: https://gofile.io/d/xyYsz9
MainPart6: https://gofile.io/d/SS0tE8
MainPart7: https://gofile.io/d/hrFj2f
MainPart8: https://gofile.io/d/b5xHP8
MainPart9: https://gofile.io/d/3UL393
MainPart10: https://gofile.io/d/GffkXI
MainPart11: https://gofile.io/d/k2IeHA
MainPart12: https://gofile.io/d/YqaSS8
MainPart13: https://gofile.io/d/83LrXc
Fix: https://gofile.io/d/DOedqX
GoFile (INAZUMA ELEVEN Victory Road) [5.0.1]
ApproxSize: 75GB
Description: The latest entry in the character collection and football simulation RPG series, "Inazuma Eleven!" With an original story featuring new main characters, over 5,400 players from across the series' history to collect and train, as well as exciting online tournaments, you can play the game your way!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/INAZUMAELEVENVictoryRoad.jpg
Origin: https://online-fix.me/games/officialservers/17939-inazuma-eleven-victory-road-po-seti.html
MainPart1: https://gofile.io/d/843eXJ
MainPart2: https://gofile.io/d/IDbaPi
MainPart3: https://gofile.io/d/rp3WyC
MainPart4: https://gofile.io/d/nYArvZ
MainPart5: https://gofile.io/d/E0Q2PL
MainPart6: https://gofile.io/d/IMwgzg
MainPart7: hhttps://gofile.io/d/o6V7f7
MainPart8: https://gofile.io/d/S4i5b1
Fix: https://gofile.io/d/PeUy8Y
GoFile (SILENT BREATH) [0.99D]
ApproxSize: 8GB
Description: Unpredictable horrors lurk around every corner, forcing you to find the missing people while desperately clinging to survival. In this experience even your own mind can become your enemy. Stay vigilant and keep your voice hushed, or risk becoming another victim of the forest's darkness.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SILENTBREATH.jpg
Origin: https://online-fix.me/games/horror/17946-silent-breath-po-seti.html
MainPart1: https://gofile.io/d/kb4Gv4
MainPart2: https://gofile.io/d/UODUIC
Fix: https://gofile.io/d/10UVWS
GoFile (What the Fog) [23052024]
ApproxSize: 5GB
Description: What the Fog?! You’ve been sucked into a cursed boardgame! Now you and a friend will need to work together to survive. Run, jump, dash, and shoot to escape swarms of angry monsters in this chaotic co-op roguelite from the world of Dead by Daylight.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/WhattheFog.jpg
Origin: https://online-fix.me/games/shooter/17951-what-the-fog-po-seti.html
MainGame: https://gofile.io/d/daFLpC
Fix: https://gofile.io/d/USFWW2
GoFile (Storebound) [0.7.3]
ApproxSize: 8GB
Description: A 1-3 co-op horror game. Play as ordinary shoppers trapped in an accursed megastore. Find the exit together at all costs before the employees catch you.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Storebound.jpg
Origin: https://online-fix.me/games/horror/17950-storebound-po-seti.html
MainGame: https://gofile.io/d/5ZCmyB
Fix: https://gofile.io/d/ufDgIp
GoFile (Try To Drive) [1.1.0]
ApproxSize: 2GB
Description: Become a true team in this unique co-op game for two! Take control of a single bike and overcome the toughest challenges to reach the peak. Jump, maneuver - Are you ready to prove you can conquer any height?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TryToDrive.jpg
Origin: https://online-fix.me/games/adventures/17891-try-to-drive-po-seti.html
MainGame: https://gofile.io/d/S4oJh9
Fix: https://gofile.io/d/QPTJsS
GoFile (SIDE EFFECTS) [1.03]
ApproxSize: 1GB
Description: A twisted trial of pill roulette for up to 4 players (solo or online). Pick your poison. Use experimental items to shift the odds. And remember: only one of you can survive.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SideEffect.jpg
Origin: https://online-fix.me/games/horror/17956-side-effects-po-seti.html
MainPart1: https://gofile.io/d/O0cCcI
Fix: https://gofile.io/d/AmF1bL
GoFile (Explosive Odds) [1.2.1]
ApproxSize: 4GB
Description: Gamble with your life in this explosive PvP game for 2-4 players. Cut wires, earn cash, use abilities and avoid the detonators. Test your luck, skills and remember to always bet on the boom!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ExplosideODDS.jpg
Origin: https://online-fix.me/games/arcade/17963-explosive-odds-po-seti.html
MainPart1: https://gofile.io/d/4LKcje
Fix: https://gofile.io/d/zlJhUt
GoFile (Pizza Deathlivery) [1.0.6]
ApproxSize: 5GB
Description: Alone or up to 6 players, deliver pizzas to the survivors of a city where an oppressive mist has turned almost everyone into monstrous creatures.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PizzaDeathLivery.jpg
Origin: https://online-fix.me/games/horror/17964-pizza-deathlivery-po-seti.html
MainPart1: https://gofile.io/d/gpZzpw
Fix: https://gofile.io/d/6eBuBo
GoFile (Hytale) [26032026]
ApproxSize: 8GB
Description: The Minecraft KnockOff you should not pay for is set out on an adventure built for both creation and play. Hytale blends the freedom of a sandbox with the momentum of an RPG: explore a procedurally generated world full of dungeons, secrets, and a variety of creatures, then shape it block by block.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Hytale.png
Origin: https://online-fix.me/games/adventures/17984-hytale-po-seti.html
MainGame: https://gofile.io/d/11lsxz
Fix: https://gofile.io/d/yIEvpM
GoFile (KEEP GAMBLING) [19122025]
ApproxSize: 5GB
Description: KEEP GAMBLING is a hostile friendslop gamble-em-up featuring LOTTO TICKET, CASE OPENING, SLOTS, and SUBSTANCE ABUSE simulations. Work with or against your friends to repay your debt.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Keep$$$Gambling.jpg
Origin: https://online-fix.me/games/simulator/17986-keep-gambling-po-seti.html
MainGame: https://gofile.io/d/iMDYvw
Fix: https://gofile.io/d/cCBCeP
GoFile (Scam Line) [23042026]
ApproxSize: 1GB
Description: Scam Line is a 4–8 player social deception game where your party will face different challenges. Become a liar, a manipulator, a cheater, or find your own path to victory.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ScamLine.jpg
Origin: https://online-fix.me/games/simulator/17988-scam-line-po-seti.html
MainGame: https://gofile.io/d/uBiBDS
Fix: https://gofile.io/d/nOwPk5
GoFile (Boat Together) [1.2.3]
ApproxSize: 2GB
Description: Hop on kayaks and boats for a fun adventure with up to 8 friends! Work together to paddle through cool waters, overcome obstacles and bosses, and reach new islands. If the legend is true, a hidden treasure awaits on the final island. Can you make it without sinking?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/BoatTogether.jpg
Origin: https://online-fix.me/games/adventures/17987-boat-together-po-seti.html
MainGame: https://gofile.io/d/8HJKKf
Fix: https://gofile.io/d/7WVZNd
GoFile (Unknown Species) [0.18.3]
ApproxSize: 40GB
Description: Species: Unknown is a 1 to 4 players co-op survival horror. Complete high-risk missions aboard an abandoned ship while being hunted by an unknown creature.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/UnknownSpecies.jpg
Origin: https://online-fix.me/games/officialservers/17921-species-unknown-po-seti.html
MainGame: https://gofile.io/d/RwkkMD
Fix: https://gofile.io/d/L7Wcr8
GoFile (Drive Beyond Horizons) [24032026]
ApproxSize: 20GB
Description: Start your engine and head into the unknown with Drive Beyond Horizons!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/DriveBeyondHorizons.jpg
Origin: https://online-fix.me/games/adventures/17730-drive-beyond-horizons.html
MainPart1: https://gofile.io/d/KZRHYY
MainPart2: https://gofile.io/d/KK7P6o
MainPart3: https://gofile.io/d/3yO2uJ
MainPart4: https://gofile.io/d/C6Rqe1
Fix: https://gofile.io/d/tzv78K
GoFile (The Horde Wants You Dead) [1.0.4]
ApproxSize: 2GB
Description: The Horde Wants You Dead is a casual, top-down shooter with up to 4-player online co-op. Ambushed by an angry horde, you and your friends face a fight for survival against thousands of relentless enemies!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheHordeWantsYouDead.jpg
Origin: https://online-fix.me/games/shooter/17965-the-horde-wants-you-dead-po-seti.html
MainGame: https://gofile.io/d/SL79pw
Fix: https://gofile.io/d/5m3rTI
GoFile (Pummel Party) [1.14.0c]
ApproxSize: 1GB
Description: Pummel Party is a 4-8 player online and local-multiplayer party game. Pummel friends or AI using a wide array of absurd items in the board mode and compete to destroy friendships in the unique collection of minigames.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PummelParty.jpg
Origin: https://online-fix.me/games/arcade/16256-pummel-party-po-seti.html
MainGame: https://gofile.io/d/R5rMfN
GoFile (Nuclear Nightmare) [06082025]
ApproxSize: 15GB
Description: Join a specialized team of players in search of classified materials while escaping the Black Goo virus.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/NuclearNightmare.jpg
Origin: https://online-fix.me/games/sandbox/17619-nuclear-nightmare-po-seti.html
MainPart1: https://gofile.io/d/4ySvT4
MainPart2: https://gofile.io/d/VgOYwf
MainPart3: https://gofile.io/d/HeXQVQ
Fix: https://gofile.io/d/775pms
GoFile (The Texas Chain Saw Massacre) [1.0.47.0]
ApproxSize: 30GB
Description: Take on the role of one of the notorious Slaughter family, or their victims, in The Texas Chain Saw Massacre, a third-person asymmetrical horror experience based on the groundbreaking and iconic 1974 horror film. Experience the mad and macabre for yourself in The Texas Chain Saw Massacre.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TheTexasChainSawMassacre.jpg
Origin: https://online-fix.me/games/horror/17321-the-texas-chain-saw-massacre-po-seti.html
MainPart1: https://gofile.io/d/OLzSyk
MainPart2: https://gofile.io/d/B7PNdH
MainPart3: https://gofile.io/d/PzMxDd
MainPart4: https://gofile.io/d/EsUkSy
Fix: https://gofile.io/d/ue1DtN
GoFile (Escape Simulator 2) [17323r]
ApproxSize: 20 GB
Description: Sequel to the best-selling escape room game, brings a fresh take on first-person puzzles with a variety of new rooms to explore solo or with friends. Solve intricate puzzles, uncover hidden secrets, or craft your own escape rooms with Room Editor 2.0.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/EscapeSimulator2.jpg
Origin: https://online-fix.me/games/adventures/17923-escape-simulator-2-po-seti.html
MainPart1: https://gofile.io/d/kB6tsV
MainPart2: https://gofile.io/d/InW2LK
MainPart3: https://gofile.io/d/aGaKY7
Fix: https://gofile.io/d/erFxOK
GoFile (Arizona Sunshine® Remake) [11112024]
ApproxSize: 40 GB
Description: Arizona Sunshine® Remake elevates the original, award-winning game, completely rebuilt with GORE-geous VR graphics and next-gen VR combat and weapons. Face the undead alone or with up to three fellow survivors in a post-apocalyptic southwestern America overrun by zombies.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ArizonaSunshineRemake.jpg
Origin: https://online-fix.me/games/officialservers/17627-arizona-sunshine-remake-po-seti.html
MainPart1: https://gofile.io/d/IhcRaN
MainPart2: https://gofile.io/d/DSKaiM
MainPart3: https://gofile.io/d/S6hdNF
Fix: https://gofile.io/d/qU2loz
BuzzHeavier (Arizona Sunshine® 2) [26032024]
ApproxSize: 50GB
Description: It's time to say hello to your old pal, Fred. Arizona Sunshine® 2, the next-gen sequel to the fan-favorite VR apocalypse, packs even more gore-geous zombie action! And what's better than braving the end of the f*cking world alone? Surviving it with your new best friend--Buddy.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ArizonaSunshine2.jpg
Origin: https://online-fix.me/games/vr/17409-arizona-sunshine-2-po-seti.html
MainPart1: https://buzzheavier.com/ma8bk7h8rmhx
MainPart2: https://buzzheavier.com/uiwo4p7phsgf
MainPart3: https://buzzheavier.com/6euwlhs1yjrr
Fix: https://buzzheavier.com/zdqwcgxzqvcf
GoFile (Motor Town Behind The Wheel) [17052025]
ApproxSize: 5GB
Description: Enjoy realistic driving in the open world. Relaxing cargo deliveries or driving buses and taxis will give you enough money to buy new cars and parts. You can test your driving skills at the race track. It's all about pure driving pleasure!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/MotorTownBehindTheWheel.jpg
Origin: https://online-fix.me/games/simulator/16892-motor-town-behind-the-wheel-po-seti.html
MainGame: https://gofile.io/d/Oayy98
Fix: https://gofile.io/d/a2ntez
GoFile (Supermarket Simulator) [1.1.7.152]
ApproxSize: 5GB
Description: Run your own supermarket! Stock shelves, set your prices, take payments, hire staff, expand your store, handle shoplifters, and design your layout. Purchase goods from online or local markets around town, and personally deliver online orders to your customers.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SupermarketSimulator.jpg
Origin: https://online-fix.me/games/officialservers/17904-supermarket-simulator-po-seti.html
MainGame: https://gofile.io/d/VQBiwy
Fix: https://gofile.io/d/n5O4C9
GoFile (Abyssus) [1.2.56034]
ApproxSize: 10GB
Description: Choose your loadout, blast through the corrupted denizens of a sunken civilization, and wield godly powers in Abyssus – a fast-paced 1-to-4 players FPS and roguelite brinepunk adventure.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Abyssus.jpg
Origin: https://online-fix.me/games/adventures/17847-abyssus-po-seti.html
MainGame: https://gofile.io/d/7DHCYL
Fix: https://gofile.io/d/TUvU0P
GoFile (Slime Rancher 2) [1.0.2]
ApproxSize: 8GB
Description: Continue the adventures of Beatrix LeBeau as she journeys across the Slime Sea to Rainbow Island, a land brimming with ancient mysteries, and bursting with wiggly, new slimes to wrangle in this sequel to the smash-hit, Slime Rancher
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SlimeRancher2.jpg
Origin: https://online-fix.me/games/adventures/17909-slime-rancher-2-po-seti.html
MainGame: https://gofile.io/d/hzCV79
Fix: https://gofile.io/d/DMRsvq
GoFile (Car Service Together) [0.96F48]
ApproxSize: 6GB
Description: Car Service Together is a 1-4 co-op & single player simulation game where you and/or with your friends start from scratch and build your way up. Work together to successfully run your own service center. Team up, manage your business, and create the ultimate car service!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CarServiceTogether.jpg
Origin: https://online-fix.me/games/simulator/18004-car-service-together-po-seti.html
MainGame: https://gofile.io/d/hWRz4L
Fix: https://gofile.io/d/W2SgJs
GoFile (Alchemy Factory) [0.4.0.3692]
ApproxSize: 3GB
Description: Craft your workshop as an alchemist! Harness arcane devices to automate crafting. Sell alchemical goods, fulfill commissions, and rise to become a renowned alchemy magnate. Multiplayer Supported! Invite master designers to (ahem) contribute their expertise—let them optimize your production lines!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/AlchemyFactory.jpg
Origin: https://online-fix.me/games/simulator/17975-alchemy-factory-po-seti.html
MainGame: https://gofile.io/d/KAMm8R
Fix: https://gofile.io/d/IXBm6w
GoFile (Travellers Rest) [0.7.0.8]
ApproxSize: 2GB
Description: Craft, farm, build and cook! In Travellers Rest you will have to use all the available tools to become the best tavern keeper in the realm. Create unique dishes and drinks to please your customers as you discover the world and its colorful characters.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/TravellersRest.jpg
Origin: https://online-fix.me/games/adventures/17715-travellers-rest-po-seti.html
MainGame: https://gofile.io/d/OeUbyz
Fix: https://gofile.io/d/XP5qgc
GoFile (Valheim) [0.221.12]
ApproxSize: 1GB
Description: A brutal exploration and survival game for 1-10 players, set in a procedurally-generated purgatory inspired by viking culture. Battle, build, and conquer your way to a saga worthy of Odin’s patronage!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Valheim.jpg
Origin: https://online-fix.me/games/officialservers/16572-valheim-po-seti.html
MainGame: https://gofile.io/d/b7ljCA
Fix: https://gofile.io/d/JdxpCJ
GoFile (Voidtrain) [1.05]
ApproxSize: 35GB
Description: Become a crew member of an Interdimensional Express Train! Discover a new world full of mysterious creatures, enemies and places. Upgrade and customize your train, gather new materials and build better weapons. Play solo or online сo-op with up to 4 people
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Voidtrain.jpg
Origin: https://online-fix.me/games/officialservers/16681-voidtrain-po-seti.html
MainPart1: https://gofile.io/d/KVxDcx
MainPart2: https://gofile.io/d/J534GC
MainPart3: https://gofile.io/d/EltGh7
MainPart4: https://gofile.io/d/y2G6oS
MainPart5: https://gofile.io/d/54ilbQ
Fix: https://gofile.io/d/rcZWFF
GoFile (Prison Boss Prohibition) [1.1.3]
ApproxSize: 2GB
Description: Prison Boss Prohibition is a VR crafting game where you play as a shop owner smuggling prohibited stuff. Produce and sell beers, erotic magazines, cigarettes, and more! But watch out, the police are cracking down on contraband!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PrisonBossProhibition.jpg
Origin: https://online-fix.me/games/officialservers/17845-prison-boss-prohibition-po-seti.html
MainGame: https://gofile.io/d/QSDQNi
Fix: https://gofile.io/d/h1F4Sh
GoFile (Nioh 3) [1.03.04]
ApproxSize: 125GB
Description: In the third game in the dark samurai action RPG series Nioh, you will need to use both Samurai and Ninja combat styles in your battles against formidable yokai as you explore a thrilling open field.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Nioh3.jpg
Origin: https://online-fix.me/games/adventures/18005-nioh-3-po-seti.html
MainPart1: https://gofile.io/d/5KiUdI
MainPart2: https://gofile.io/d/O4hjkg
MainPart3: https://gofile.io/d/PXzM01
MainPart4: https://gofile.io/d/i8GXOA
MainPart5: https://gofile.io/d/T5YEuS
MainPart6: https://gofile.io/d/yMg1Sn
MainPart7: https://gofile.io/d/d4Ja8T
MainPart8: https://gofile.io/d/Dh3FMP
MainPart9: https://gofile.io/d/uMPcVD
MainPart10: https://gofile.io/d/3VJ2C8
MainPart11: https://gofile.io/d/nhBwgf
MainPart12: https://gofile.io/d/RPAvIf
MainPart13: https://gofile.io/d/gvhL3w
MainPart14: https://gofile.io/d/cBr3rt
MainPart15: https://gofile.io/d/cxmFWW
MainPart16: https://gofile.io/d/KckIx0
MainPart17: https://gofile.io/d/bI7zrY
MainPart18: https://gofile.io/d/OnlQOJ
Fix: https://gofile.io/d/wRCV6O
GoFile (Farming Simulator 22) [1.14.0.0]
ApproxSize: 35GB
Description: Create your farm and let the good times grow! Harvest crops, tend to animals, manage productions, and take on seasonal challenges.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/FarmingSimulator22.jpg
Origin: https://online-fix.me/games/simulator/16846-farming-simulator-22-po-seti.html
MainPart1: https://gofile.io/d/oh5SiX
MainPart2: https://gofile.io/d/65Hndg
MainPart3: https://gofile.io/d/nKnnev
Fix: https://gofile.io/d/AeDJzH
GoFile (YAPYAP) [1.0.3.606-deeb8]
ApproxSize: 2GB
Description: A magic-themed co-op horror game where you and up to 5 friends are minions summoned by a wizard to break into their rival's towers to cause mayhem. Try to fufill your vandalism target with an assortment of spells while avoiding magical beasts and monsters that protect the tower.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/yapyap.jpg
Origin: https://online-fix.me/games/horror/18002-yapyap-po-seti.html
MainGame: https://gofile.io/d/DrOcZM
Fix: https://gofile.io/d/OIn6VR
GoFile (Fish Hunters Most Lethal Fishing Simulator) [02022026]
ApproxSize: 10GB
Description: Hunt fish solo or in co-op. Haul them in and take them down with crazy guns. Try out different baits and rods, explore unique locations, and complete your fish collection in the atlas. Or just kick back by the campfire with friends in this wild webfishing adventure 🎣 🐟 💥
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/FishHuntersMostLethalFishingSimulator.jpg
Origin: https://online-fix.me/games/adventures/18001-fish-hunters-most-lethal-fishing-simulator-po-seti.html
MainGame: https://gofile.io/d/ixQPMN
Fix: https://gofile.io/d/wDUa5H
Both (Stardew Valley) [1.6.15]
ApproxSize: 500MB
Description: You've inherited your grandfather's old farm plot in Stardew Valley. Armed with hand-me-down tools and a few coins, you set out to begin your new life. Can you learn to live off the land and turn these overgrown fields into a thriving home?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/StardewValley.jpg
Origin: https://online-fix.me/games/sandbox/16274-stardew-valley-po-seti.html
MainGame: https://gofile.io/d/0TQvvH
Fix: https://www.dropbox.com/scl/fi/mfepr76e4km9yzeokmywp/SW_Fix_Repair_Steam_Generic.rar?rlkey=jl3ej144nh7gazespug569si7&st=i24y0ury&dl=1
GoFile (EARTH DEFENSE FORCE 6) [22012025]
ApproxSize: 35GB
Description: Live the future of despair.The year is 2024 AD. The survivors fought against the remaining threats while trying their best to continue their recovery.Three years passed in the year 2027. In a new world without hope, the time has come to once again resist the fate of the Earth.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/EDF6.jpg
Origin: https://online-fix.me/games/arcade/17560-earth-defense-force-6-po-seti.html
MainPart1: https://gofile.io/d/KRke7m
MainPart2: https://gofile.io/d/LEwvaG
MainPart3: https://gofile.io/d/rEQLxT
MainPart4: https://gofile.io/d/rLxo48
Fix: https://gofile.io/d/ABRNcc
GoFile (REANIMAL) [18032026]
ApproxSize: 18GB
Description: The creators of Little Nightmares™ I & II have returned to take you on a darker, more terrifying journey than ever before.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/REANIMAL.png
Origin: https://online-fix.me/games/officialservers/18006-reanimal-po-seti.html
MainPart1: https://gofile.io/d/EpLR9h
MainPart2: https://gofile.io/d/2X0AFO
MainPart3: https://gofile.io/d/BFfbgE
Fix: https://gofile.io/d/KYU9uM
GoFile (Smack Talk) [24022026]
ApproxSize: 800MB
Description: Say your moves out loud, trash-talk your friends, and fight to win. Smack Talk is a 1–4 player online PvP platform fighter where your voice controls your attacks. Call moves, land one-liners, and finish foes with wild ultimates.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SmackTalk.jpg
Origin: https://online-fix.me/games/fighting/18024-smack-talk-po-seti.html
MainGame: https://gofile.io/d/zIY5aF
Fix: https://gofile.io/d/uq7d6o
GoFile (Drug Dealer Simulator 2) [1.1]
ApproxSize: 32GB
Description: What turns a drug dealer into a drug lord? Find out in DDS2, a first-person co-op sim set in a dynamic open world. Make contacts, cook drugs, and manage your cartel on Isla Sombra, where power is the only law.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/DrugDealerSimulator2.jpg
Origin: https://online-fix.me/games/simulator/17538-drug-dealer-simulator-2-po-seti.html
MainPart1: https://gofile.io/d/7lkqi6
MainPart2: https://gofile.io/d/Z8Yuuq
MainPart3: https://gofile.io/d/eOZNLN
MainPart4: https://gofile.io/d/pkwqbK
MainPart5: https://gofile.io/d/SGKqZO
MainPart6: https://gofile.io/d/2iTuBB
Fix: https://gofile.io/d/4XlSnb
GoFile (Chained Wheels) [30032026]
ApproxSize: 5GB
Description: Embark on a chaotic co-op drive in Chained Wheels, where two vehicles are chained together and every move turns into a shared adventure or a DISASTER.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ChainedWheels.jpg
Origin: https://online-fix.me/games/adventures/18052-chained-wheels-po-seti.html
MainGame: https://gofile.io/d/pfNonX
Fix: https://gofile.io/d/8oI0TR
GoFile (Human: Fall Flat) [1089172]
ApproxSize: 500MB
Description: Human Fall Flat is a hilarious, light-hearted platformer set in floating dreamscapes that can be played solo or with up to 8 players online. Free new levels keep its vibrant community rewarded
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/HumanFallFlat.jpg
Origin: https://online-fix.me/games/arcade/16254-human-fall-flat-po-seti.html
MainGame: https://gofile.io/d/GXNnm1
GoFile (Cooking Simulator 2) [1.4.6717bcc]
ApproxSize: 20GB
Description: Cooking Simulator is back – bigger, better, and with multiplayer! Create your own recipes and take advantage of new and improved controls to become the best restaurant cook in the city! Or just have fun and enjoy cooking at your own pace. You’re the chef here!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CookingSimulator2.jpg
Origin: https://online-fix.me/games/simulator/18051-cooking-simulator-2-better-together-po-seti.html
MainPart1: https://gofile.io/d/iEw8w0
MainPart2: https://gofile.io/d/ZeIyj2
Fix: https://gofile.io/d/KBkWyk
GoFile (Overcooked! All You Can Eat) [1173]
ApproxSize: 10GB
Description: Experience all the Onion Kingdom has to offer, Overcooked! 1 & 2 infused with 4k goodness running at a smooth 60 FPS. Fully remastered and cooked up from scratch. Enjoy 200+ levels (22 new) and 80+ chefs (3 new), this is the ultimate Overcooked! experience.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Overcooked!AllYouCanEat.jpg
Origin: https://online-fix.me/games/adventures/16610-overcooked-all-you-can-eat-po-seti.html
MainGame: https://gofile.io/d/DeS5zZ
GoFile (ASTRONEER) [1.36.43.0]
ApproxSize: 4GB
Description: Interact with strange new worlds in a unique and tactile way, molding the environment itself as if it were clay in your hands. Build your base, master resource management, automate your production lines, and more as you unravel the mysteries of the universe, alone or with friends.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ASTRONEER.jpg
Origin: https://online-fix.me/games/sandbox/16169-astroneer-po-seti.html
MainGame: https://gofile.io/d/xZ22Kg
Fix: https://gofile.io/d/4DBmGO
GoFile (Teardown) [12032026]
ApproxSize: 12GB
Description: Prepare the perfect heist in a fully destructible, simulated voxel world. Tear down walls with vehicles or use explosives to create your own shortcuts. Shape the environment to your advantage in the most creative ways you can imagine. Play solo or with up to 12 players in multiplayer.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Teardown.jpg
Origin: https://online-fix.me/games/sandbox/17208-teardown-po-seti.html
MainGame: https://gofile.io/d/UYmpFX
Fix: https://gofile.io/d/2U5F1n
GoFile (S.T.A.L.K.E.R. 2: Heart of Chornobyl) [1.8.1]
ApproxSize: 155GB
Description: Discover the vast Chornobyl Exclusion Zone full of dangerous enemies, deadly anomalies and powerful artifacts. Unveil your own epic story as you make your way to the Heart of Chornobyl. Make your choices wisely, as they will determine your fate in the end.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Stalker2.jpg
Origin: https://steamrip.com/s-t-a-l-k-e-r-2-heart-of-chornobyl-free-download/
MainGame: https://gofile.io/d/n1rmgP
BuzzHeavier (Dispatch) [1.0.16898]
ApproxSize: 19GB
Description: Dispatch is a superhero workplace comedy where choices matter. Manage a dysfunctional team of misfit heroes and strategize who to send to emergencies around the city, all while balancing office politics, personal relationships, and your own quest to become a hero. All episodes out now!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Dispatch.jpg
Origin: https://steamrip.com/dispatch-free-download/
MainGame: https://buzzheavier.com/es7310rd8bpk
GoFile (Cyberpunk 2077) [2.31]
ApproxSize: 100GB
Description: Cyberpunk 2077 is an open-world, action-adventure RPG set in the dark future of Night City — a dangerous megalopolis obsessed with power, glamor, and ceaseless body modification.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CyberPunk2077.jpg
Origin: https://steamrip.com/cryberpunk-2k77-d7/
MainGame: https://gofile.io/d/5Pfu7Y
BuzzHeavier (Life is Strange: Before the Storm Remastered) [8195842]
ApproxSize: 25GB
Description: Life is Strange: Before the Storm is a new three part standalone story adventure set three years before the events of the first game. This time play as Chloe Price, a rebel who forms an unlikely friendship with Rachel Amber in a dramatic new story in the BAFTA award winning franchise.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/LifeisStrangeBeforetheStormRemastered.jpg
Origin: https://steamrip.com/life-is-strange-before-the-storm-remastered-free-download-3y
MainGame: https://buzzheavier.com/rmq25vz5pt96
BuzzHeavier (Life is Strange Remastered) [8127227]
ApproxSize: 45GB
Description: Experience the BAFTA award-winning story of Life is Strange now beautifully remastered with enhanced visuals and vastly improved animation using mocap technology.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/LifeisStrangeRemastered.jpg
Origin: https://steamrip.com/life-is-strange-remastered-free-download-4y
MainGame: https://buzzheavier.com/pyms2ed72vz1
GoFile (Life is Strange 2) [Complete Edition]
ApproxSize: 40GB
Description: After a tragic incident, brothers Sean and Daniel Diaz run away from home. Fearing the police, and dealing with Daniel's new telekinetic power, the boys head to Mexico. Each stop on their journey brings new friends and new challenges.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Lifeisstrange2.jpg
Origin: https://steamrip.com/life-is-strange-2-free-download-i6
MainGame: https://gofile.io/d/v6DqZB
BuzzHeavier (Life is Strange: True Colors) [1.2.124]
ApproxSize: 30GB
Description: [TESTING] Alex Chen hides her 'curse': the psychic power of Empathy, the ability to absorb the emotions of others. When her brother dies in a so-called accident, Alex must embrace her power to find the truth.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/LifeisstrangeTrueColors.jpg
Origin: https://steamrip.com/life-is-strange-true-colors-free-download-4n
MainGame: https://buzzheavier.com/uryzqce4x3ob
GoFile (Life is Strange: Double Exposure) [1.1.1027899]
ApproxSize: 30GB
Description: When Max Caulfield finds her friend Safi dead in the snow, she tears open the way to a parallel timeline. Here, Safi is still alive - and still in danger! With her new power to Shift between two timelines – can Max solve and prevent the same murder?
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/LifeisStrangeDoubleExposure.jpg
Origin: https://steamrip.com/life-is-strange-double-exposure
MainGame: https://gofile.io/d/vFgzmR
GoFile (Megabonk) [1.0.69]
ApproxSize: 1GB
Description: Smash your way through endless waves of enemies and grow absurdly powerful! Grab loot, level up, unlock characters and upgrade to create unique and crazy builds as you fend off hordes of creatures!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Megabonk.jpg
Origin: https://steamrip.com/megabonk-free-download
MainGame: https://gofile.io/d/XBFQbk
BuzzHeavier (Hades) [10929685]
ApproxSize: 15GB
Description: Defy the god of the dead as you hack and slash out of the Underworld in this rogue-like dungeon crawler from the creators of Bastion, Transistor, and Pyre.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Hades.jpg
Origin: https://steamrip.com/hades-free-download-a2/
MainGame: https://buzzheavier.com/3tanwgo44h51
GoFile (Hades II) [1.133066]
ApproxSize: 10GB
Description: Battle beyond the Underworld using dark sorcery to take on the Titan of Time in this bewitching sequel to the award-winning rogue-like dungeon crawler.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Hades2.jpg
Origin: https://steamrip.com/hades-2-free-download/
MainGame: https://gofile.io/d/y5FRGB
GoFile (Assetto Corsa EVO) [0.5]
ApproxSize: 100GB
Description: Assetto Corsa EVO redefines the realism and features of one of the most popular multiplatform driving simulations ever developed. Featuring cars and tracks from different classes spanning across years of motoring history.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/AC-EVO.jpg
Origin: https://steamrip.com/assetto-corsa-evo-free-download
MainGame: https://gofile.io/d/GlGJsO
BuzzHeavier (Assetto Corsa Rally) [0.3]
ApproxSize: 50GB
Description: Assetto Corsa Rally is a high-fidelity rally sim built for precision and challenge. With 3D laser-scanned stages and cars, professional co-driver support, and dynamic conditions, it delivers a demanding, immersive experience where every second behind the wheel counts.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/AC-Rally.jpg
Origin: https://steamrip.com/assetto-corsa-rally-free-download/
MainGame: https://buzzheavier.com/4vr83z5seqnz
BuzzHeavier (CloverPit) [20093847]
ApproxSize: 1GB
Description: A rogue-lite slot machine nightmare. Gamble for your life in a never-ending debt simulator!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CloverPit.jpg
Origin: https://steamrip.com/cloverpit-free-download
MainGame: https://buzzheavier.com/liksw0ew4pu8
GoFile (SILENT HILL 2) [Remake + v1.1.258 834]
ApproxSize: 50GB
Description: Investigating a letter from his late wife, James returns to where they made so many memories - Silent Hill. What he finds is a ghost town, prowled by disturbing monsters and cloaked in deep fog. Confront the monsters, solve puzzles, and search for traces of your wife in this remake of SILENT HILL 2.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SilentHill2.jpg
Origin: https://steamrip.com/silent-hill-2-free-download-remake/
MainGame: https://gofile.io/d/zgnYBJ
BuzzHeavier (Silent Hill 3) [1.0]
ApproxSize: 5GB
Description: Heather Mason lived a carefree existence until her world was suddenly turned upside down. A typical trip to the mall transforms into a descent into a blood-soaked, rusted nightmare realm filled with grotesque monsters. Plunged into a world where reality and nightmare blur, Heather must fight to survive, manage limited resources, and uncover a terrifying connection between her past and the mysterious, godforsaken town of Silent Hill.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SilentHill3.png
Origin: https://steamrip.com/silent-hill-3-free-download/
MainGame: https://buzzheavier.com/4jhm3jxjf3aj
GoFile (Silent Hill 4: The Room) [6 – 82931]
ApproxSize: 5GB
Description: Henry Townshend has been trapped in his apartment, Room 302 of South Ashfield Heights, for five days. The phone is dead, the TV is static, and his front door is sealed shut with heavy chains and padlocks. Recurring nightmares and a feeling of being watched push him to the brink of sanity until a mysterious hole suddenly appears in his bathroom wall, leading to a horrifying alternate reality.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SilentHill4TheRoom.png
Origin: https://steamrip.com/silent-hill-4-the-room-free-download/
MainGame: https://gofile.io/d/jiMnyR
GoFile (SILENT HILL f) [1.2.382755]
ApproxSize: 50GB
Description: Hinako's hometown is engulfed in fog, driving her to fight grotesque monsters and solve eerie puzzles. Uncover the disturbing beauty hidden in terror. **NOTICE: Launch with the “SILENT HILL f Launcher.bat” file. The EXE file will not work.**
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SilentHillF.jpg
Origin: https://steamrip.com/silent-hill-f-free-download
MainGame: https://gofile.io/d/jgYREi
BuzzHeavier (Cities: Skylines II) [1.5.5f1]
ApproxSize: 60GB
Description: Raise a city from the ground up and transform it into a thriving metropolis with the most realistic city builder ever. Push your creativity and problem-solving to build on a scale you've never experienced. With deep simulation and a living economy, this is world-building without limits.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CitiesSkylines2.jpg
Origin: https://steamrip.com/cities-skylines-two-free-download/
MainGame: https://buzzheavier.com/4nt9axgn2b7o
GoFile (Cities: Skylines) [1.21.1-f9]
ApproxSize: 5GB
Description: Cities: Skylines is a modern take on the classic city simulation. The game introduces new game play elements to realize the thrill and hardships of creating and maintaining a real city whilst expanding on some well-established tropes of the city building experience.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/CitiesSkylines.jpg
Origin: https://steamrip.com/cities-skylines-free-download-2j/
MainGame: https://gofile.io/d/coYrVY
GoFile (Game of Life 2) [0.5.0]
ApproxSize: 1GB
Description: The official sequel to the hit board game played by 50 million fans! The Game of Life 2 adds vibrant 3D animation and brand-new choices in every turn. Customise your peg, spin the spinner and build your best life!
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/GameofLife2.jpg
Origin: https://steamrip.com/the-game-of-life-2-free-download-n2/
MainGame: https://gofile.io/d/t2AbX5
BuzzHeavier (Yakuza 0 Director’s Cut) [21002649]
ApproxSize: 80GB
Description: Discover the decadence and danger of 1980's Japan as you fight like hell through its neon-lit entertainment districts in the definitive edition of the action-adventure crime drama that created yakuza legends.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Yakuza0CT.jpg
Origin: https://steamrip.com/yakuza-0-directors-cut-free-download/
MainGame: https://buzzheavier.com/10gmkd7igehb
BuzzHeavier (UNBEATABLE) [21115423]
ApproxSize: 11GB
Description: UNBEATABLE is a rhythm adventure where music is illegal and you do crimes. Follow the story of Beat and her band on the run, in a narrative experience full of big emotions powered by arcade-flawless rhythm gameplay. [Launch game via “steamclient_loader_x64.ex”]
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/UNBEATABLE.jpg
Origin: https://steamrip.com/unbeatable-free-download/
MainGame: https://buzzheavier.com/503k8kmtarsx
BuzzHeavier (Desktop Defender) [20850134]
ApproxSize: 200MB
Description: An idle auto-battler that sits in the corner of your screen while you do other things.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/DesktopDefender.jpg
Origin: https://steamrip.com/desktop-defender-free-download/
MainGame: https://buzzheavier.com/klichw8ekchw
BuzzHeavier (Pacific Drive) [1.15.0]
ApproxSize: 18GB
Description: Face the supernatural dangers of the Olympic Exclusion Zone with a car as your only lifeline in this driving survival adventure! Scavenge resources, load up your trusty station wagon, and drive like hell to make it through alive.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/PacificDrive.jpg
Origin: https://steamrip.com/pacific-dgdjo7-drive-free-download-p1/
MainGame: https://buzzheavier.com/x03t03ty040d
BuzzHeavier (Marvel’s Spider-Man Remastered) [2.1012.0.0]
ApproxSize: 75GB
Description: In Marvel’s Spider-Man Remastered, the worlds of Peter Parker and Spider-Man collide in an original action-packed story. Play as an experienced Peter Parker, fighting big crime and iconic villains in Marvel’s New York. Web-swing through vibrant neighborhoods and defeat villains with epic takedowns.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Spider-ManRemastered.jpg
Origin: https://steamrip.com/marvels-spider-man-remastered-1u/
MainGame: https://buzzheavier.com/716go6imtzta
BuzzHeavier (Marvel’s Spider-Man: Miles Morales) [3.617.1.0]
ApproxSize: 75GB
Description: After the events of Marvel’s Spider-Man Remastered, teenage Miles Morales is adjusting to his new home while following in the footsteps of his mentor, Peter Parker, as a new Spider-Man. When a fierce power struggle threatens to destroy his home, Miles must take up the mantle of Spider-Man and own it
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Spider-ManMilesMorales.jpg
Origin: https://steamrip.com/marvels-spider-man-miles-morales-free-download-o2/
MainGame: https://buzzheavier.com/67pt5szrjk0h
BuzzHeavier (Marvel’s Spider-Man 2) [1.526.0.0]
ApproxSize: 140GB
Description: Be Greater. Together. The incredible power of the symbiote forces Peter Parker and Miles Morales into a desperate fight as they balance their lives, friendships, and their duty to protect in an exciting chapter of the critically acclaimed Spider-Man franchise on PC.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/Spider-Man2.jpg
Origin: https://steamrip.com/marvels-spider-man-2-free-download-sp1/
MainGame: https://buzzheavier.com/f9wmyj6bwidy
BuzzHeavier (Indiana Jones and the Great Circle) [1.0.13.0]
ApproxSize: 120GB
Description: Uncover one of history’s greatest mysteries in a first-person, single-player adventure. The year is 1937, sinister forces are scouring the globe for the secret to an ancient power connected to the Great Circle, and only one person can stop them - Indiana Jones™.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/IndianaJonesAndTheGreatCircle.jpg
Origin: https://steamrip.com/indiana-jones-and-the-great-circle-free-download/
MainGame: https://buzzheavier.com/0wvm5bvj51hb
BuzzHeavier (UNCHARTED: Legacy of Thieves Collection) [1.3.20900]
ApproxSize: 126GB
Description: Play as Nathan Drake and Chloe Frazer in their own standalone adventures as they confront their pasts and forge their own legacies. This game includes the critically acclaimed single-player stories from both UNCHARTED 4: A Thief’s End and UNCHARTED: The Lost Legacy.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/UNCHARTEDLegacyOfThievesCollection.jpg
Origin: https://steamrip.com/uncharted-legacy-of-thieves-collection-free-download-h1/
MainGame: https://buzzheavier.com/lnbo0bforf7e
GoFile (Sifu) [1.28_6,720]
ApproxSize: 22GB
Description: Sifu is a realistic third-person brawler with tight Kung Fu combat mechanics and cinematic martial arts action embarking you on a path for revenge.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/SIFU.jpg
Origin: https://steamrip.com/sifu-free-download-2y/
MainGame: https://gofile.io/d/4ZInBP
GoFile (Arken Age) [16 Jan, 2025]
ApproxSize: 30GB
Description: Arken Age is a VR action-adventure game set in the Bio-Chasm—a terraformed fantasy world created by the Grand Arborist. Engage in full physics combat using Arkenite infused swords & guns—and freely explore the densely filled environments under siege by Hyperion's neural corruption.
Thumbnail: https://raw.githubusercontent.com/ZuhuInc/Simple-OFME-Downloader-LIB/main/Assets/ArkenAge.jpg