-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdata.json
More file actions
1926 lines (1926 loc) · 80.6 KB
/
Copy pathdata.json
File metadata and controls
1926 lines (1926 loc) · 80.6 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
{
"UBISOFT": {
"241560": {
"name": "The Crew",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play.",
"The game only works when launched through Steam."
],
"nombre_fix": "The Crew - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/d2500d51d3ed0791852f4ea4b4a2cf03.png",
"background": "https://i.imgur.com/e6oKqqV.jpeg"
}
},
"646910": {
"name": "The Crew 2",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play.",
"If you cant open the game with steam, try to open it with the exe in the folder called TheCrew2.exe"
],
"nombre_fix": "The Crew 2 - bypass",
"custom_images": {}
},
"242550": {
"name": "Rayman Legends",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play.",
"I recommend marking the game folder as an exception in your antivirus so that it does not delete your files."
],
"nombre_fix": "Rayman Legends - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/aa01df8e6c2526116e1a7eab3f634de8.png",
"background": "https://cdn2.steamgriddb.com/hero/f0ac7bfbd398770a71003c2aced6a951.jpg"
}
},
"33230": {
"name": "Assassin's Creed II",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play."
],
"nombre_fix": "Assassin's Creed II - bypass",
"custom_images": {}
},
"48190": {
"name": "Assassin's Creed Brotherhood",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play."
],
"nombre_fix": "Assassin's Creed Brotherhood - bypass",
"custom_images": {}
},
"201870": {
"name": "Assassin's Creed Revelations",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play."
],
"nombre_fix": "Assassins Creed Revelations - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/thumb/105fb0578a9e90c458f69bad63c38709.png",
"background": "https://cdn2.steamgriddb.com/grid/5b4db7da70c4c1f3005198b8379ec177.png"
}
},
"208480": {
"name": "Assassin's Creed III",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play."
],
"nombre_fix": "Assassin's Creed III - bypass",
"custom_images": {}
},
"911400": {
"name": "Assassin's Creed III Remastered",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play."
],
"nombre_fix": "Assassins Creed III Remastered - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/thumb/f0ce59b6bf8e03499c788c348919a196.jpg",
"background": "https://cdn2.steamgriddb.com/grid/9ca302e07507002d527cc02ac1372c09.png"
}
},
"242050": {
"name": "Assassin's Creed IV Black Flag",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", ".NET", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET, and Ubisoft Play."
],
"nombre_fix": "Assassin's Creed IV Black Flag - bypass",
"custom_images": {}
},
"289650": {
"name": "Assassin's Creed Unity",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Visual C++", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Visual C++, and Ubisoft Play.",
"It’s very likely that your antivirus will delete the uplay_r164.dll file, it is trustworthy and essential to play."
],
"nombre_fix": "Assassins Creed Unity - bypass",
"custom_images": {}
},
"311560": {
"name": "Assassin's Creed Rogue",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and Ubisoft Play."
],
"nombre_fix": "Assassin's Creed Rogue - bypass",
"custom_images": {}
},
"354380": {
"name": "Assassin’s Creed Chronicles: China",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist 2010", "DoNet"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, DoNet and VC Redist 2010."
],
"nombre_fix": "Assassins Creed Chronicles China - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/thumb/38a9dbfce0500ac32fa4092cf609e572.jpg",
"background": "https://cdn2.steamgriddb.com/grid/9e0b74a472b637a40fed9506a7539e5e.jpg"
}
},
"368500": {
"name": "Assassin's Creed Syndicate",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "Visual C++", "Visual C++ 2012"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and Visual C++."
],
"nombre_fix": "Assassin's Creed Syndicate - bypass",
"custom_images": {}
},
"359610": {
"name": "Assassin’s Creed Chronicles: India",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist 2010", "DoNet"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, DoNet and VC Redist 2010."
],
"nombre_fix": "Assassin's Creed Chronicles India - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/thumb/05761d7cd3d824ac6da56e12eb7c8c6f.jpg",
"background": "https://cdn2.steamgriddb.com/grid/efc7802abcfcabf60cf5abe86e9b0465.png"
}
},
"582160": {
"name": "Assassin's Creed Origins",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC Redist."
],
"nombre_fix": "Assassins Creed Origins - bypass",
"custom_images": {}
},
"812140": {
"name": "Assassin's Creed Odyssey",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC Redist."
],
"nombre_fix": "Assassins Creed Odyssey - bypass",
"custom_images": {}
},
"2208920": {
"name": "Assassin's Creed Valhalla",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC C++ 2019"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC C++ 2019.",
"The game takes a long time to load the first time, just be patient.",
"It’s very likely that your antivirus will delete some files. Mark the game’s folder as an exception and apply the fix again if you encounter any related errors."
],
"nombre_fix": "Assassin's Creed Valhalla - bypass",
"custom_images": {}
},
"3035570": {
"name": "Assassin's Creed Mirage",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX 12", "Ubisoft Play", "VC C++ 2019"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 12, Ubisoft Play and VC C++ 2019.",
"To remove fps monitoring you just have to press the letter 'P' several times"
],
"nombre_fix": "Assassin's Creed Mirage - bypass",
"custom_images": {}
},
"3159330": {
"name": "Assassin's Creed Shadows",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX 12", "Ubisoft Play", "VC C++ 2022"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC C++ 2022"
],
"nombre_fix": "Assassin's Creed Shadows - bypass",
"custom_images": {}
},
"220240": {
"name": "Far Cry 3",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "Visual C++ 2008", "Visual C++ 2010", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, Visual C++ 2008, Visual C++ 2010 and .NET 4.0."
],
"nombre_fix": "Far Cry 3 - bypass",
"custom_images": {}
},
"233270": {
"name": "Far Cry® 3 Blood Dragon",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "Visual C++ 2008", "Visual C++ 2010", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, Visual C++ 2008, Visual C++ 2010 and .NET 4.0."
],
"nombre_fix": "Far Cry® 3 Blood Dragon - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/84aaa84129e365590aeb86b57697edb9.png",
"background": "https://cdn2.steamgriddb.com/hero/18b16aa4f6882ecd819ad38f21394925.jpg"
}
},
"298110": {
"name": "Far Cry 4",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, VC Redist and .NET 4.0."
],
"nombre_fix": "Far Cry 4 - bypass",
"custom_images": {}
},
"371660": {
"name": "Far Cry Primal",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist 2012", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, VC Redist 2012 and .NET 4.0."
],
"nombre_fix": "Far Cry Primal - bypass",
"custom_images": {}
},
"552520": {
"name": "Far Cry 5",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist 2012", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play, VC Redist 2012 and .NET 4.0.",
"It’s very likely that your antivirus will delete some files. Mark the game’s folder as an exception and apply the fix again if you encounter any related errors.",
"The game only works with my version of manifest, download it from my bot or from the library here in the app"
],
"nombre_fix": "Far Cry 5 - bypass",
"custom_images": {}
},
"939960": {
"name": "Far Cry New Dawn",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC Redist."
],
"nombre_fix": "Far Cry New Dawn - bypass",
"custom_images": {}
},
"916440": {
"name": "Anno 1800",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC Redist.",
"The game only works with my version of manifest, download it from my bot or from the library here in the app",
"Possibly the antivirus deletes files, if that happens, mark the game folder as an exception and apply the fix again"
],
"nombre_fix": "Anno 1800 - bypass",
"custom_images": {}
},
"488790": {
"name": "South Park The Fractured But Whole",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, Ubisoft Play and VC Redist"
],
"nombre_fix": "South Park The Fractured But Whole - bypass",
"custom_images": {}
},
"446560": {
"name": "Just Dance 2017",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and Ubisoft Play."
],
"nombre_fix": "Just Dance 2017 - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/thumb/4dad75d2365dedf73aa94b7606de7426.jpg",
"background": "https://cdn2.steamgriddb.com/grid/1bd0726541b5b65167034a4449ebf1f5.png"
}
},
"33440": {
"name": "Driver San Francisco",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and Ubisoft Play."
],
"nombre_fix": "Driver San Francisco - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/1cfef7cfd8d26b1ecb8b0eccca6366ca.jpg",
"background": "https://cdn2.steamgriddb.com/hero/792c7b5aae4a79e78aaeda80516ae2ac.png"
}
},
"243470": {
"name": "Watch_Dogs",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET 4.0 and Ubisoft Play.",
"Remember to launch the game with exe watch_dogs.exe inside the bin folder",
"Remember to mark the game folder as an exception before applying the fix"
],
"nombre_fix": "Watch_Dogs - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/4f89626165ff9607bfc8c6cff2fed560.png",
"background": "https://cdn2.steamgriddb.com/hero/601b5cbe8c87380898b5911c1e904d31.jpg"
}
},
"447040": {
"name": "Watch_Dogs 2",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET 4.0 and Ubisoft Play.",
"Remember to launch the game with exe WatchDogs2.exe inside the bin folder"
],
"nombre_fix": "Watch_Dogs 2 - bypass",
"custom_images": {}
},
"2239550": {
"name": "Watch Dogs: Legion",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET 4.0 and Ubisoft Play."
],
"nombre_fix": "Watch Dogs: Legion - bypass",
"custom_images": {}
},
"235600": {
"name": "Tom Clancy's Splinter Cell Blacklist",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", ".NET"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET and Ubisoft Play."
],
"nombre_fix": "Tom Clancy's Splinter Cell Blacklist - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/dc10fce584f2cdf09d6690e0f2883227.png",
"background": "https://cdn2.steamgriddb.com/hero/31d39ab9c2bc8d5028fcc4ed34acc28c.jpg"
}
},
"460930": {
"name": "Tom Clancy's Ghost Recon Wildlands",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "Ubisoft Play", ".NET 4.0"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, .NET 4.0 and Ubisoft Play.",
"The game takes a long time to load (10-15 min), just be patient.",
"It’s very likely that your antivirus will delete some files. Mark the game’s folder as an exception and apply the fix again if you encounter any related errors."
],
"nombre_fix": "Tom Clancy's Ghost Recon Wildlands - bypass",
"custom_images": {}
}
},
"EA": {
"4032350": {
"name": "EA SPORTS™ College Football 27",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist",
"You need to launch the game with the exe called CollegeFB27.exe"
],
"nombre_fix": "EA SPORTS™ College Football 27 - bypass",
"custom_images": {
"hero_image": "https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/4032350/0d18c22e927cc6fe246d6a0412c87096ff33c00a/library_capsule.jpg",
"background": "https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/4032350/d7f665add8823c65c31620619fa50b91dbc07e28/library_hero_2x.jpg",
"cover_image": "https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/4032350/0d18c22e927cc6fe246d6a0412c87096ff33c00a/library_capsule.jpg",
"hero_image_x2": "https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/4032350/d7f665add8823c65c31620619fa50b91dbc07e28/library_hero_2x.jpg?t=1784128711",
"logo_img": "https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/4032350/58f40804b0aa54fbd62312128ba21a92a8c905ad/logo_2x.png"
}
},
"3405690": {
"name": "EA SPORTS FC 26",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist",
"1. Install the game using files from 'FC 26 - GET HERE'. If already installed, update via SteamTools.",
"2. Open Project Lightning, select FC 26, and apply the fix to the game folder.",
"3. Run FC26.exe to generate the Denuvo ticket.",
"4. Send 'DenuvoTicket' file via request zone in my server (short message first).",
"5. Replace 'DenuvoToken' in anadius.cfg with the token I send you. Keep the quotes.",
"6. Save the config and launch FC26.exe.",
"Game requires my manifest version to work.",
"Support only via AnyDesk.",
"Disable Windows/driver updates to avoid issues.",
"If updated, send a new DenuvoTicket and repeat steps."
],
"nombre_fix": "EA SPORTS FC 26 - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/b447514189ba0925aa3969913019fefe.png",
"background": "https://i.imgur.com/nz7fmoI.png"
}
},
"2669320": {
"name": "EA SPORTS FC 25",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist",
"1. Install the game using files from 'FC 25 - GET HERE'. If already installed, update via SteamTools.",
"2. Open Project Lightning, select FC 25, and apply the fix to the game folder.",
"3. Run FC25.exe to generate the Denuvo ticket.",
"4. Send 'DenuvoTicket' file via request zone in my server (short message first).",
"5. Replace 'DenuvoToken' in anadius.cfg with the token I send you. Keep the quotes.",
"6. Save the config and launch FC25.exe.",
"Game requires my manifest version to work.",
"Support only via AnyDesk.",
"Disable Windows/driver updates to avoid issues.",
"If updated, send a new DenuvoTicket and repeat steps."
],
"nombre_fix": "EA SPORTS FC 25 - bypass",
"custom_images": {}
},
"1811260": {
"name": "EA SPORTS FIFA 23",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist"
],
"nombre_fix": "FIFA 23 - bypass",
"custom_images": {}
},
"1506830": {
"name": "EA SPORTS FIFA 22",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist"
],
"nombre_fix": "FIFA 22 - bypass",
"custom_images": {}
},
"1313860": {
"name": "EA SPORTS FIFA 21",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist"
],
"nombre_fix": "EA SPORTS FIFA 21 - bypass",
"custom_images": {}
},
"1938010": {
"name": "WILD HEARTS",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist",
"To open the game, you need to open the WILD HEARTS.exe file located inside the WILD HEARTS/00_game/target_origin/ex folder."
],
"nombre_fix": "WILD HEARTS - bypass",
"custom_images": {}
},
"1693980": {
"name": "Dead Space",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist"
],
"nombre_fix": "Dead Space - bypass",
"custom_images": {}
},
"1237950": {
"name": "STAR WARS™ Battlefront™ II",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist 2013", "VC Redist 2015"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App, VC Redist 2013 and VC Redist 2015"
],
"nombre_fix": "STAR WARS Battlefront II - bypass",
"custom_images": {}
},
"1172380": {
"name": "STAR WARS Jedi: Fallen Order™",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist 2015"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist 2015"
],
"nombre_fix": "STAR WARS Jedi La Orden caída - bypass",
"custom_images": {}
},
"1774580": {
"name": "STAR WARS Jedi: Survivor™",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist 2015"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist 2015"
],
"nombre_fix": "STAR WARS Jedi La Orden caída - bypass",
"custom_images": {}
},
"1134570": {
"name": "F1 2021",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist 2020"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist 2020",
"The game only works with my version of manifest, download it from my bot or from the library here in the app"
],
"nombre_fix": "F1 2021 - bypass",
"custom_images": {}
},
"1692250": {
"name": "F1® 22",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist 2021"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist 2021",
"The game only works with my version of manifest, download it from my bot or from the library here in the app"
],
"nombre_fix": "F1 2022 - bypass",
"custom_images": {}
},
"3059520": {
"name": "F1® 25",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "EA App", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist",
"1. Install the game using files from 'F1 25 - GET HERE'. If already installed, update via SteamTools.",
"2. Open Project Lightning, select F1 25, and apply the fix to the game folder.",
"3. Run _F1 25_Lightning Launcher_.exe to generate the Denuvo ticket.",
"4. Send 'DenuvoTicket' file via request zone in my server (short message first).",
"5. Replace 'DenuvoToken' in anadius.cfg with the token I send you. Keep the quotes.",
"6. Save the config and launch _F1 25_Lightning Launcher_.exe.",
"Game requires my manifest version to work.",
"Support only via AnyDesk.",
"Disable Windows/driver updates to avoid issues.",
"If updated, send a new DenuvoTicket and repeat steps."
],
"nombre_fix": "F1 25 - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/0cee0119ca5c721f1d76d6a425516299.png"
}
},
"47870": {
"name": "Need for Speed: Hot Pursuit",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["C++ 2008", "DirectX"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, C++2008 and EA Play."
],
"nombre_fix": "Need for Speed Hot Pursuit - bypass",
"custom_images": {
"background": "https://cdn2.steamgriddb.com/hero/8bed24e4704ee937ecd84b814bc58b6a.png"
}
},
"1262560": {
"name": "Need for Speed™ Most Wanted",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and EA Play.",
"The game is not compatible with Steam, it needs to be launched using the executable inside the game folder."
],
"nombre_fix": "Need for Speed Most Wanted - bypass",
"custom_images": {}
},
"1262600": {
"name": "Need for Speed™ Rivals",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and EA Play.",
"The game is not compatible with Steam, it needs to be launched using the executable inside the game folder.",
"You need to have the EA app installed, or the game won't launch.",
"Your antivirus may block the RldOrigin.dll file, it is completely safe and necessary to play."
],
"nombre_fix": "Need For Speed Rivals - bypass",
"custom_images": {
"background": "https://cdn2.steamgriddb.com/hero/7f3721efabdb38d926d9688f7e1ed28e.jpg"
}
},
"1262580": {
"name": "Need for Speed™ Payback",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2013", "VC Redist 2015"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and EA Play.",
"The game is not compatible with Steam, it needs to be launched using the executable inside the game folder.",
"You need to have the EA app installed, or the game won't launch.",
"I know, I know the fix is too large, but it’s the best I could come up with to make everything work properly :("
],
"nombre_fix": "Need for Speed Payback - bypass",
"custom_images": {}
},
"1222680": {
"name": "Need for Speed™ Heat",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2017", "VC Redist 2019"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and EA Play.",
"The game is not compatible with Steam, it needs to be launched using the executable inside the game folder.",
"You need to have the EA app installed, or the game won't launch.",
"Make sure you have the last CPU drivers"
],
"nombre_fix": "Need for Speed Heat - bypass",
"custom_images": {}
},
"1328660": {
"name": "Need for Speed™ Hot Pursuit Remastered",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2017", "VC Redist 2019"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and EA Play.",
"The game is not compatible with Steam, it needs to be launched using the executable inside the game folder.",
"You need to have the EA app installed, or the game won't launch.",
"Make sure you have the last CPU drivers"
],
"nombre_fix": "Need for Speed Hot Pursuit Remastered - bypass",
"custom_images": {}
},
"1846380": {
"name": "Need for Speed™ Unbound",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2017", "VC Redist 2019"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA App and VC Redist",
"1. Install the game using files from 'Need for Speed Unbound - GET HERE'. If already installed, update via SteamTools.",
"2. Open Project Lightning, select Need for Speed Unbound, and apply the fix to the game folder.",
"3. Run NeedForSpeedUnbound.exe to generate the Denuvo ticket.",
"4. Send 'DenuvoTicket' file via request zone in my server (short message first).",
"5. Replace 'DenuvoToken' in anadius.cfg with the token I send you. Keep the quotes.",
"6. Save the config and launch NeedForSpeedUnbound.exe.",
"Game requires my manifest version to work.",
"Support only via AnyDesk.",
"Disable Windows/driver updates to avoid issues.",
"If updated, send a new DenuvoTicket and repeat steps."
],
"nombre_fix": "Need for Speed Unbound - bypass",
"custom_images": {}
},
"1222670": {
"name": "The Sims 4",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2012"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA Play and VC Redist 2014.",
"The game must be launched from the executable in the game folder named 'TS4_x64.exe'. If you launch it from Steam, it won’t work.",
"You need to have the EA app installed, or the game won't launch."
],
"nombre_fix": "The Sims 4 - bypass",
"custom_images": {}
},
"3654560": {
"name": "Plants vs. Zombies™: Replanted",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["DirectX", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX and VC Redist",
"If the game doesn't launch with steam, go to the main game path and open the exe Replanted.exe."
],
"nombre_fix": "Plants vs Zombies Replanted - bypass",
"custom_images": {
"hero_image": "https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/3654560/4239904dc76eae613171cd3dec950b9e0abfbd5f/library_600x900.jpg"
}
},
"1225560": {
"name": "Unravel",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2012"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA Play and VC Redist 2012.",
"The game must be launched from the executable in the folder named 'Unravel.exe'. If you launch it from Steam, it won’t work.",
"You need to have the EA app installed, or the game won't launch."
],
"nombre_fix": "Unravel - bypass",
"custom_images": {}
},
"1225570": {
"name": "Unravel Two",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2013", "VC Redist 2013"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA Play, VC Redist 2013 and VC Redist 2015.",
"It's important to launch the game using the executable named 'UnravelTwo.exe'.",
"If you want to play with a friend, you can. You just need the Parsec application; with it, your friend can play from their PC as if they were connecting a controller to your home computer.",
"You need to have the EA app installed, or the game won't launch."
],
"nombre_fix": "Unravel 2 - bypass",
"custom_images": {}
},
"1222700": {
"name": "A Way Out",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX", "VC Redist 2013", "VC Redist 2013"],
"errores": [
"If the game shows errors when opening, you need to install DirectX, EA Play, VC Redist 2013 and VC Redist 2015.",
"It's important to launch the game using the executable named 'A Way Out.exe'.",
"There is no longer an online solution for this game, but if you want to play with a friend, you can. You just need the Parsec application; with it, your friend can play from their PC as if they were connecting a controller to your home computer.",
"You need to have the EA app installed, or the game won't launch."
],
"nombre_fix": "A Way Out - bypass",
"custom_images": {}
},
"2001120": {
"name": "Split Fiction",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 12", "VC Redist 2022"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 12, EA Play and VC Redist 2022.",
"The game already includes the online fix, but to play with your friends, you all must have the latest version of the game."
],
"nombre_fix": "Unravel 2 - bypass",
"custom_images": {}
},
"1238820": {
"name": "Battlefield 3",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 11", "VC Redist 2013"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 11, EA Play and VC Redist 2013.",
"The game opens with the exe *bf3.exe*"
],
"nombre_fix": "Battlefield 3 - bypass",
"custom_images": {}
},
"1238860": {
"name": "Battlefield 4",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 11", "VC Redist 2013"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 11, EA Play and VC Redist 2013.",
"The game opens with the exe *bf4.exe*"
],
"nombre_fix": "Battlefield 4 - bypass",
"custom_images": {}
},
"1238880": {
"name": "Battlefield™ Hardline",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 12", "VC Redist 2015"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 12, EA Play and VC Redist 2015.",
"The game does not work if you open it with Steam, you must open it with the exe called bfH.exe that is inside the main folder of the game"
],
"nombre_fix": "Battlefield™ Hardline - bypass",
"custom_images": {}
},
"1238840": {
"name": "Battlefield™ 1",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 12", "VC Redist 2022"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 12, EA Play and VC Redist 2022.",
"The game does not work if you open it with Steam, you must open it with the exe called bf1.exe that is inside the main folder of the game"
],
"nombre_fix": "Battlefield 1 - bypass",
"custom_images": {}
},
"2807960": {
"name": "Battlefield™ 6",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 12", "VC Redist 2022"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 12, EA Play and VC Redist 2022.",
"The game does not work if you open it with Steam, you must open it with the exe called bf6.exe that is inside the main folder of the game",
"It will only work if you use my game manifests"
],
"nombre_fix": "Battlefield 6 - bypass",
"custom_images": {
"hero_image": "https://cdn2.steamgriddb.com/grid/82e43901d337d05ef3ae610442c8606b.png",
"background": "https://cdn2.steamgriddb.com/hero/004f80e7f7de9dfcf83c20e0174e41cd.png"
}
},
"17410": {
"name": "Mirror's Edge",
"launch_steam": true,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 10", "VC Redist"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 10, EA Play and VC Redist.",
"If the game doesn’t start or crashes on launch, right-click on MirrorsEdge.exe, go to Properties → Compatibility, and enable Run this program in compatibility mode for: Windows XP (Service Pack 3)."
],
"nombre_fix": "Mirror's Edge - bypass",
"custom_images": {}
},
"1233570": {
"name": "Mirror's Edge™ Catalyst",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["EA App", "DirectX 11", "VC Redist 2022"],
"errores": [
"If the game shows errors when opening, you need to install DirectX 11, EA Play and VC Redist.",
"If the game dont launch, open the game with the exe in the folder called MirrorsEdgeCatalyst.exe"
],
"nombre_fix": "Mirror's Edge Catalyst - bypass",
"custom_images": {}
}
},
"ROCKSTAR": {
"2668510": {
"name": "Red Dead Redemption",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["Rockstar Games Launcher", "Microsoft Visual C++ Redistributable", "DirectX"],
"errores": [
"If the game shows errors when opening, you need to install Rockstar Games Launcher, Microsoft Visual C++ Redistributable and DirectX.",
"The game is not compatible with Steam, it needs to be launched using the executable inside the game folder.",
"It is very important to launch the game using the RDR.exe executable.",
"It's very important that your graphics card is compatible with DirectX 12, otherwise the game won't start."
],
"nombre_fix": "Red Dead Redemption - bypass",
"custom_images": {}
},
"1174180": {
"name": "Red Dead Redemption 2",
"launch_steam": false,
"launch_exe": true,
"comentarios": "Enjoy the game ♥",
"programas_necesarios": ["Rockstar Games Launcher", "Microsoft Visual C++ Redistributable", "DirectX"],
"errores": [
"If the game shows errors when opening, you need to install Rockstar Games Launcher, Microsoft Visual C++ Redistributable and DirectX.",
"The game is not compatible with Steam, it needs to be launched using the executable called Launcher.exe inside the game folder.",
"It is very important to launch the game using the Launcher.exe executable.",
"It's very important that your graphics card is compatible with DirectX 12, otherwise the game won't start."
],
"nombre_fix": "Red Dead Redemption 2 - bypass",
"custom_images": {}
},
"1547000": {
"name": "Grand Theft Auto: San Andreas - The Definitive Edition",