-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathformGuide.cs
More file actions
2600 lines (2432 loc) · 159 KB
/
formGuide.cs
File metadata and controls
2600 lines (2432 loc) · 159 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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.DirectoryServices.ActiveDirectory;
using System.Drawing;
using System.Drawing.Design;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
using static System.Windows.Forms.LinkLabel;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace FSR3ModSetupUtilityEnhanced
{
public partial class formGuide : Form
{
private Image panelBG;
private bool isPlayerInitialized = false;
private string lastVideoId = null;
private double lastVideoTime = 0;
public formGuide(mainForm main)
{
InitializeComponent();
listBox1.Visible = false;
panelImage.Paint += new PaintEventHandler(panelImage_Paint);
this.DoubleBuffered = true;
typeof(Panel).InvokeMember("DoubleBuffered",
BindingFlags.SetProperty | BindingFlags.Instance | BindingFlags.NonPublic,
null, panel3, new object[] { true });
}
#region Guides
private Dictionary<string, string> guideTexts = new Dictionary<string, string>
{
{
"Initial Information",
"1 - When selecting the game folder, look for the game's .exe file. Some games have the full name .exe or abbreviated, while others have the .exe file in the game folder but within subfolders with the ending Binaries\\Win64, and the .exe usually ends with Win64-Shipping, for example: TheCallistoProtocol-Win64-Shipping.\r\n" +
"2 - It is recommended to read the guide before installing the mod. Some games do not have a guide because you only need to install the mod, while others, like Fallout 4 for example, have extra steps for installation.\r\n" +
"If something is done incorrectly, the mod will not work.\r\n" +
"3 - Some games may not work for certain users after installing the mod. It is recommended to check the Enable Signature Override if the mod does not work with the default files.\r\n"
},
{
"Add-on Mods",
"OptiScaler\r\nIs drop-in DLSS2 to XeSS/FSR2 replacement for games. OptiScaler implements all necessary API methods of DLSS2 & NVAPI to act as a man in the middle. So from games perspective it’s using DLSS2 but actually using OptiScaler and calls are interpreted/redirected to XeSS & FSR2.\r\n\r\n"+
"Tweak\r\nHelps 'improve' aliasing caused by FSR 3 mod, may also slightly reduce ghosting, doesn't work in all games.\r\n"
},
{
"Optiscaler FSR 3.1.4/DLSS (Only Optiscaler)",
"Look for the .exe file ending in \"Win64-Shipping.exe\", for example: Hellblade2-Win64-Shipping.exe. It is usually located in the path \"Game Name\\Binaries\\Win64\". Some games, such as PlayStation games, do not have this .exe, so install it in the folder of the standard .exe instead.\n\n" +
"Enable Hardware Accelerated GPU Scheduling (HAGS) — it is required for the mods to work.\n\n" +
"Optiscaler FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"This mod works for most games that have DLSS; just follow the guide for the chosen game in the Guide section. (It is necessary to run the game in DX12 for Frame Gen to work.)\n\n" +
"Optiscaler FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"This version disables the mod's FG and uses the game's DLSS Frame Gen. It works only for games with this feature and is compatible with all GPUs. You can use the mod's upscalers (e.g., FSR 3.1.4) together with the game's DLSS FG.\n\n" +
"DLSS4 (Only Nvidia)\n" +
"Open the Nvidia APP, go to Graphics, select the game, scroll down until you find Driver Settings. In DLSS Override, select \"Latest\" for all available options. Some games, like Alone In The Dark 2023, are not included in the APP. Follow the steps below to enable DLSS 4.\n\n" +
"In the game, in the mod menu, check 'Render Presets Override' and select 'Preset K'.\n" +
"To update the game's DLSS to DLSS4, select \"Others Mods\" (only some games have this option).\n" +
"To check if Preset K is selected, check \"Yes\" in the \"DLSS Overlay\" box that will appear during installation. When selecting the preset in the mod menu, Preset K may not appear right away in the DLSS Overlay. Restart the game and select Preset K again in the mod menu.\n" +
"Update DLSS before installing the mod.\n" +
"If the game does not have this option, go to the game's folder and check if the file nvngx_dlss.dll is present.\n" +
"Click on Nvngx.dll in the Utility, select DLSS 4 and install it along with the mod.\n" +
"If the file is not present, follow the same procedure and copy the new nvngx_dlss.dll file to the DLSS folder.\n" +
"The DLSS folder is usually something like: Engine\\Plugins\\Runtime\\Nvidia\\DLSS\\Binaries\\ThirdParty\\Win64 (Some games have different paths; look for the file nvngx_dlss.dll.)\n" +
"(Perform these steps only if DLSS 4 (310.2.1 version that should appear in the mod.) is not available in the mod, only Nvidia)."
},
{
"Optiscaler Method","Installation Method for Optiscaler\r\n" +
"Method Default: Default installation method.\r\n"+
"Method 1 (RTX/RX 6000-7000): Installation method for RTX and RX 6xxx/7xxx series GPUs.\r\n"+
"Method 2 (GTX/Old AMD): Installation method for older GPUs such as GTX and RX 5000 and below.\r\n"+
"Method 3 (If none of the others work): Modified installation method if none of the other options work.\r\n" +
"Follow the guide only if you are installing the standard Optiscaler; mods that already include Optiscaler (such as FSR 3.1.2/DLSS) do not require it."
},
{
"Optiscaler FSR 3.1.1/DLSS",
"This mod may not work with all games, so it is recommended to perform tests.\r\n" +
"Select Optiscaler FSR 3.1.1/DLSS and install it.\r\n" +
"In the game, press the Insert key to open the menu. In the menu, select your preferred upscaler. You can also increase image sharpness by enabling the Sharpness option in the menu.\r\n" +
"If the menu does not appear, during the mod installation, check the Optiscaler box and select the desired upscaler under Add-on Upscaler, then install."
},
{
"Achilles Legends Untold",
"1 - Select a mod of your preference (0.10.3 is recommended).\r\n"+
"2 - Check the box for Fake Nvidia GPU (AMD/GTX only).\r\n"+
"3 - If the mod doesn't work, check the Nvapi Results box and select Default in NVNGX.dll.\r\n"+
"4 - In-game, select DLSS."
},
{
"Alan Wake Remastered",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\r\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\r\n" +
"2. Check the Enable Signature Over box.\r\n" +
"3. In the game, select DLSS and press the 'Insert' key to open the menu.\r\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n"
},
{
"Alan Wake 2",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the 'Insert' key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check 'yes' in the 'DLSS/FSR' window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the 'Insert' key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia).\n\n" +
"Alan Wake 2 FG RTX\n" +
"1. Select Alan Wake 2 FG RTX and install it.\n" +
"2. In the game, select DLSS and enable Frame Generation.\n" +
"3. It is also possible to use other versions of the mod.\n\n" +
"Alan Wake 2 Uniscaler Custom (AMD\\GTX)\n" +
"1. Select Alan Wake 2 Uniscaler Custom and install it.\n" +
"2. In the game, select DLSS and enable Frame Generation if it is not enabled by default.\n" +
"3. Do not switch to FSR as the game will crash.\n" +
"4. It is also possible to use other versions of the mod, except Alan Wake 2 FG RTX.\n\n" +
"Preset\n" +
"1. Install ReShade.\n" +
"2. Inside ReShade, select the game’s .exe and click next.\n" +
"3. Select DX 10/11/12 and click next.\n" +
"4. Click 'Browse' and locate the file Realistic Reshade.ini that was installed in the folder selected in the Utility and click Next.\n" +
"5. In the game, press the Home key to open the menu and select the options you prefer.\n" +
"6. Install the Preset first and then the FSR3 mod if you plan to use it."
},
{
"Alone in the Dark",
"1. To make the mod work, run it in DX12. To run it in DX12, right-click the game's exe and create a shortcut, then right-click the shortcut again, go to \"Properties,\" and at the end of \"Target\" (outside the quotes), add -dx12. Alternatively, go to your Steam library, select the game, go to Settings > Properties > Startup options, and enter -dx12.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over box.\n" +
"4. In the game, select DLSS and press \"Insert\" to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"6. Select FSR 3.x to use FSR 3.1.4.\n" +
"7. If you want to update DLSS, do it before installing the mod; just select \"Others Mods AITD.\"\n\n" +
"Uniscaler/0.x\n" +
"1 - Select a version of the mod of your choice (version 0.10.3 is recommended).\r\n"+
"2 - Enable the 'Enable Signature Override' checkbox.\r\n"+
"3 - Enable Fake Nvidia GPU, if you want to use DLSS (Only for AMD GPUs).\r\n"+
"4 - Set FSR in the game settings.\r\n"+
"5 - If the mod doesn't work, select 'Default' in Nvngx.dll."
},
{
"A Plague Tale Requiem",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. To update the DLSS, select \"Others Mods Requiem\"; do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. In the game, press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only RTX).\n\n" +
"Uniscaler/0.x\n" +
"1. Select a mod of your choice (0.10.3 is recommended).\n" +
"2. Check the box for Fake Nvidia GPU (AMD/GTX) and Nvapi Results (GTX). (If the mod doesn't work for AMD, also check Nvapi Results).\n" +
"3. To fix hub flickering, enable DLSS and Frame Generation and play for a few seconds, then disable DLSS and leave only Frame Generation enabled."
},
{
"A Quiet Place: The Road Ahead",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended."
},
{
"Assassin\'s Creed Mirage",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\r\n"+
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\r\n"+
"2. Check the Enable Signature Over box.\r\n" +
"3. In the game, select DLSS and press the 'Insert' key to open the menu.\r\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n\n" +
"Preset\r\n" +
"1. Install ReShade.\r\n" +
"2. In ReShade, select the game’s .exe and click next.\r\n" +
"3. Select DX 10/11/12 and click next.\r\n" +
"4. Click \"Browse\" and locate the file ACMirage lighting and package.ini that was installed in the folder selected in the Utility and click Next.\r\n" +
"5. In the game, press the Home key to open the menu and select the options you prefer.\r\n" +
"6. Install the Preset first and then the FSR3 mod if you plan to use it."
},
{
"Assetto Corsa Evo",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. To update the DLSS, select \"Others Mods ACE\"; do this before installing the mod."
},
{
"Assassin's Creed Valhalla",
"1 - Press the \"End\" key to open the Frame Gen menu or the\r\n" +
"\"Home\" key to open the main menu.\r\n" +
"2 - Select AC Valhalla DLSS3\r\n" +
"3 - In the game, enable Motion Blur and disable FSR"
},
{
"Assassin's Creed Shadows",
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation. (RTX users, only check \"yes\" if it's not possible to activate the game's FG).\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. To update the DLSS, select \"Others Mods Ac Shadows\"; do this before installing the mod.\n" +
"5. If you are playing through Ubisoft Connect, disable the Ubisoft overlay in the menu.\n" +
"6. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only RTX)."
},
{
"Atomic Heart",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation. (RTX users, only check \"yes\" if it's not possible to activate the game's FG).\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia).\n\n" +
"Uniscaler/0.x\n" +
"1. Select a mod of your choice (0.10.3 is recommended).\n" +
"2. In the game, select FSR."
},
{
"AVOWED",
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. Check the \"Show Advanced Settings\" box, in the \"Resource Barriers\" section set it to \"Common\" in the \"Color\" tab.\n" +
"5. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia).\n\n" +
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. Check the \"Show Advanced Settings\" box, in the \"Resource Barriers\" section set it to \"Common\" in the \"Color\" tab.\n" +
"This mod may not work on some GPUs."
},
{
"Back 4 Blood",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. To update the DLSS, select \"Others Mods B4B\"; do this before installing the mod.\n" +
"6. Do not use the mod in Online mode, or you may be banned."
},
{
"Baldur's Gate 3",
"1 - Start the game in DX11 and select Borderless.\r\n" +
"2 - Choose DLSS or DLAA.\r\n" +
"3 - Press the END key to enter the mod menu, check the Frame Generation box to activate the mod; you can also adjust the Upscaler. (To activate Frame Generation, simply press the * key; you can also change the key in the mod menu.)"
},
{
"Banishers Ghost of New Eden",
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the insert key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended"
},
{
"Black Myth: Wukong",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. To update the upscalers, select \"Others Mods Wukong\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS or FSR (when using DLSS, small blue blocks may appear in the game. During mod installation, an option to delete the shader cache will appear; this may fix the bug. If it doesn’t, use FSR in the game, the blue blocks may also appear in the two mods below).\n" +
"5. Press the \"Insert\" key to open the menu. In the menu, select FG Enabled, Active, Hud Fix, and Extended.\n" +
"6. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia).\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n\n" +
"DLSS FG (ALL GPUs) Wukong\n" +
"1. Select \"DLSS FG (ALL GPUs) Wukong\" and install.\n" +
"2. In the game, select DLSS and Frame Generation.\n" +
"3. This mod fixes issues related to using the Somersault Cloud.\n\n" +
"Graphic Preset:\n" +
"1. Install the mod and the ReShade application.\n" +
"2. In ReShade, select b1.exe, DirectX 10/11/12, click on \"Browser\", and find the file Black Myth Wukong.ini (the path should look something like BlackMythWukong\\Black Myth Wukong.ini) and select it, then click on \"Uncheck All\" and \"Next\".\n" +
"3. In the game, press the \"Insert\" key to open the menu and check the options you want.\n\n" +
"Optimized Wukong:\n" +
"Faster Loading Times - By tweaking async-related settings: the mod allows assets to load in the background, reducing loading times and potentially eliminating loading pauses during gameplay.\n\n" +
"Optimized CPU and GPU Utilization - By tweaking multi-core rendering: allows the game to utilize the full potential of modern CPUs and GPUs. This can result in improved performance, higher frame rates, and more stable gameplay.\n\n" +
"Enhanced Streaming and Level Loading - By tweaking various streaming variables: the mod improves the efficiency of streaming assets and level loading. This can lead to faster streaming and reduced stuttering when moving through different areas of the game world.\n\n" +
"Optimized Memory Management - By adjusting memory-related settings: the mod optimizes memory allocation and garbage collection. This can lead to more efficient memory usage, reduced memory-related stutters, and improved overall performance."
},
{
"Blacktail",
"1 - Select a mod of your choice (0.10.3 is recommended).\r\n" +
"2 - Check the Fake Nvidia GPU box."
},
{
"Bright Memory",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n\n" +
"Steam: When launching the game via Steam, select DX12 if the window does not appear. Go to Library > Game > Gear icon to the right of Achievements > Properties > Launch Options, and add -dx12.\n" +
"Others: Go to the game's .exe > Properties and add -dx12 after the .exe."
},
{
"Bright Memory Infinite",
"1 - Select a version of the mod of your choice (version 0.10.4 is recommended).\r\n" +
"2 - To make the mod work, run it in DX12. To run it in DX12, right-click the game's exe and create a shortcut, then right-click the shortcut again, go to \"Properties,\" and at the end of \"Target\" (outside the quotes), add -dx12 or go to your Steam library, select the game, go to Settings > Properties > Startup options, and enter -dx12."
},
{
"Brothers: A Tale of Two Sons Remake",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods Brothers\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Chernobylite",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Start the game in DX12.\n" +
"2. If you want to update the DLSS, select \"Others Mods CBL\", do this before installing the mod.\n" +
"3. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"4. Check Enable Signature Over box.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Chernobylite 2: Exclusion Zone",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods CBL2\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check Enable Signature Over box.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only RTX)."
},
{
"Choo-Choo Charles",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. Select DLSS and press the Insert key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Cities: Skylines 2",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods CTS2\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Chorus",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods Chorus\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check Enable Signature Over box.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Clair Obscur: Expedition 33",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Start the game in DX12.\n" +
"2. To update the DLSS, select \"Others Mods Coe33\"; do this before installing the mod.\n" +
"3. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"4. Check the Enable Signature Over box.\n" +
"5. In the menu, select FG Active and Hud Fix.\n" +
"6. For DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to learn how to use it."
},
{
"Call Of Duty Black Ops Cold War",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. To update the DLSS, select \"Others Mods B4B\"; do this before installing the mod.\n" +
"6. Do not use the mod in Online mode, or you may be banned."
},
{
"Cod MW3",
"1 - Select the game path: CallofDuty\\Content\\sp23\r\n" +
"2 - Select the COD MW3 FSR3 mod and install it\r\n" +
"3 - In the game, select DLSS Frame Generation"
},
{
"Control",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select the .exe path.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"6. Select FSR 3.x to use FSR 3.1.4.\n" +
"7. If you want to update FSR/DLSS, do this before installing the mod, select \"Others Mods Control\" to update."
},
{
"Crime Boss Rockay City",
"1 - Select a mod of your choice (0.10.4 is recommended).\r\n" +
"2 - Check the Fake Nvidia GPU box for AMD/GTX users.\r\n" +
"If you can't see DLSS in the game, check the Nvapi Results and UE Compatibility Mode boxes.\r\n" +
"3 - In the game, turn off Anti-Aliasing and select DLSS as the upscaler."
},
{
"Crysis Remastered",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods Crysis\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n" +
"7. The installation for the 3 remastered versions is the same."
},
{
"Cyberpunk 2077",
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check 'yes' in the 'DLSS/FSR' window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the 'Insert' key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only RTX).\n\n" +
"RTX DLSS FG\n" +
"1. Select RTX DLSS FG and install.\n" +
"2. It is recommended to install the \"FG Ghost Fix\" along with the mod, select \"Others Mods 2077\" to install.\n" +
"3. In the game, select DLSS and DLSS Frame Gen.\n\n" +
"FSR 3.1.2/XESS FG\n" +
"1. Select FSR 3.1.2/XESS FG and install.\n" +
"2. In the game, select DLSS and DLSS Frame Gen.\n" +
"3. It is recommended to install the \"FG Ghost Fix\" along with the mod. Select \"Others Mods 2077\" to install.\n\n" +
"Uniscaler FSR 3.1\n" +
"1. Select Uniscaler FSR 3.1.\n" +
"2. If you have an RTX GPU and want to use the real DLSS, select DLSS under \"Mod Operates\". If you don't have an RTX GPU and can't see DLSS in the game, Click on Nvngx.dll and select \"Default\". You can also use XESS instead of FSR 3.1 by selecting XESS under \"Mod Operates\".\n" +
"3. Check the box \"Enable Signature Over\".\n" +
"4. In the game, choose an upscaler and frame generation option.\n\n" +
"All Uniscalers:\n"+
"1. Select a mod of your choice (Uniscaler is recommended).\n" +
"2. Select Default in Nvngx.dll.\n" +
"3. Check the box Enable Signature Override.\n" +
"4. In-game, turn off Vsync, select DLSS (do not select auto as the game will crash), and turn on Frame Generation.\n\n" +
"ReShade:\n" +
"1. Download and install ReShade.\n" +
"2. Select Cyberpunk2077.exe, DirectX 10/11/12, Update ReShade and Effects, and choose the V2.0 Real Life Reshade.ini.\n" +
"3. Select check all effects (you can also use \"Uncheck all\" and \"Check all\" to select everything at once).\n" +
"4. Install the mod using the Utility.\n\n" +
"1. After completing the steps above, open the game for the first time. If a \"Menu\" (Ultra+) appears, select a key to open this \"Menu.\"\n" +
"2. Select DLSS, Frame Gen, and restart the game.\n" +
"3. After reopening the game, press the \"Insert\" key to open the FSR 3.1 mod menu, \"Home\" to open the ReShade menu (select the options you prefer), and the key you selected to open the \"Menu\" (Ultra+)."
},
{
"Dakar Desert Rally",
"1 - Select a mod of your preference (0.10.3 is recommended).\r\n" +
"2 - Check the box Fake Nvidia GPU and Nvapi Results (AMD/GTX).\r\n" +
"In-game, select DLSS and Frame Generation."
},
{
"Dead Island 2",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. In the game, select FSR 2 and press the \"Insert\" key to open the menu.\n" +
"3. In the menu, select FG Enabled, Active, Hud Fix and Extended\n\n" +
"Uniscaler/0.x\n"+
"1. Select a mod of your preference (0.10.3 is recommended).\r\n" +
"2. If it doesn't work with the default files, enable Enable Signature Override. If it still doesn't work, check the box lfz.sl.dlss.\r\n" +
"3. It's not necessary to activate an upscaler for this game for the mod to work, so enable it if you want."
},
{
"Dead Rising Remaster",
"1 - Select Dinput8 DRR and install.\r\n" +
"2 - Open the game until the 'Re Framework' menu appears, once it appears, close the game and return to the Utility.\r\n" +
"3 - Select FSR 3.1 FG DRR and install.\r\n" +
"4 - In the game, select DLSS and Frame Gen.\r\n" +
"5 - The mod already includes DLSS 3.7.20.\r\n\r\n"
},
{
"Death Stranding",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n"+
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, disable Depth of Field, Motion Blur, and TAA.\n" +
"4. Select DLSS and press the Insert key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n\n"+
"Uniscaler V4\n" +
"Before installing the mod, open the game and disable FidelityFx Cas.\n" +
"1. Select Unicaler V4.\n" +
"2. Check the box for \"Enable Signature Over\", check the \"Nvngx.dll\" box, and select \"Default\".\n" +
"3. In the game, enable FidelityFx Cas if you want more FPS (the mod is activated automatically when installed, but FidelityFx Cas provides a slight FPS boost).\n" +
"4. If you want even more FPS, check the \"Fake Nvidia GPU\" box and reinstall the mod (this option may not work for some GPUs, so test it).\n" +
"This game does not support ReShade and the mod together, so you will need to uninstall ReShade if you use it for the mod to work."
},
{
"Dead Space (2023)",
"1 - Select a version of the mod of your choice (versions from 0.9.0 onwards are recommended to fix UI flickering).\r\n" +
"2 - Enable the 'Enable Signature Override' checkbox if the mod doesn't work.\r\n" +
"3 - Enable Fake Nvidia GPU (Only for AMD GPUs).\r\n" +
"4 - If the mod doesn't work, select 'Default' in Nvngx.dll."
},
{
"Deathloop",
"1 - Select a version of the mod of your choice (version 0.10.3 is recommended).\r\n" +
"2 - Activate Fake Nvidia GPU and Nvapi Results (Only for AMD and GTX)."
},
{
"Deliver Us Mars",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods DUM\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check Enable Signature Over box.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check 'yes' in the 'DLSS/FSR' window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the 'Insert' key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia)."
},
{
"Deliver Us The Moon",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods DUTM\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check Enable Signature Over box.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Dragon Age: Veilguard",
"1. Select FSR 3.1.1/DLSS FG DG Veil and install it.\r\n" +
"2. In the game, press the 'Insert' key to open the menu.\r\n" +
"3. In the menu, select 'FSR 3x' under 'Upscalers,' then select 'FSR 3.1.2' right below."
},
{
"Dragons Dogma 2",
"Dinput8 DD2 and FSR 3.1.2/DLSS FG Custom\r\n" +
"1 - Select Dinput8 DD2 in Mod Select and install.\r\n" +
"2 - Open the game after Dinput8 is installed. A 'REFramework' menu will appear. Click on it, go to Settings and Menu Key, click on Menu Key, and select the preferred key (the key is used to open and close the menu).\r\n" +
"3 - Close the game, in Utility select FSR 3.1.2/DLSS FG Custom and install (it is recommended to select 'Yes' when the message to delete the shader file appears).\r\n" +
"4 - In the game, select DLSS and Frame Gen.\r\n" +
"5 - It is possible that the game will crash the first 2 or 3 times after the mod is installed, so just close the game and open it again."
},
{
"Dying Light 2",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Open the game and select DX12.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over box.\n" +
"4. In the game, select DLSS or Xess and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n\n" +
"Uniscaler/0.x\n"+
"1. Select a mod of your preference (0.10.3 is recommended).\r\n" +
"2. Enable Fake Nvidia GPU (only for AMD and GTX).\r\n" +
"3. In the game, select any upscaler and activate Frame Generation.\r\n" +
"4. If you experience any flickering or ghosting, go to Video > Advanced Settings and decrease the Lod Range Multiplier."
},
{
"Dynasty Warriors: Origins",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select XESS or DLSS if available and press \"Insert\" to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. Select FSR 3.x to use FSR 3.1.4."
},
{
"Elden Ring",
"FSR 3.1.4/DLSS FG Custom Elden\n" +
"1. Select FSR 3.1.4/DLSS FG Custom Elden and install.\n" +
"2. For Steam users, select Disable Anti-Cheat and install. Go to the installation folder and run \"start_protected_game.exe\". Open the game through eldenring.exe, not through Steam.\n" +
"3. In the game, press the \"Home\" key to open the menu.\n" +
"4. In the menu, select Frame Gen and an Upscaler.\n" +
"5. DLSS 4: Select DLSS in the menu and Default in the Render Preset. If you selected \"Yes\" in the \"DLSS Overlay\" window during installation, you will be able to see if Preset K is active. The overlay appears in the bottom-left corner of the screen. (Only Nvidia)\n\n" +
"Others Mods\n" +
"1. Select \"Disable Anti-Cheat\" in the Select Mod and choose \"Yes\" in the anticheat deactivation confirmation window. Select the folder where the game exe is located; otherwise, it will not be possible to deactivate the anticheat. (Steam Only)\n" +
"2. Select \"Elden Ring FSR3\" in Select Mod and install it.\n" +
"3. In the game, press the \"Home\" key to open the mod menu. In \"Upscale Type,\" select the Upscaler according to your GPU (DLSS for RTX or FSR3 for non-RTX), then check the box \"Enable Frame Generation\" below.\n" +
"• To remove Full Screen borders, select \"Full Screen\" in the game before installing the mod. If there is screen overflow after mod installation, select Full Screen -> Window -> Full Screen.\n" +
"• Enable Anti-Aliasing and Motion Blur; this mod will skip the actual rendering of motion blur, so don’t worry if you don’t like motion blur. The game only needs it to render motion vectors.\n"
},
{
"Elden Ring Nightreign",
"FSR 3.1.4/DLSS Nightreign RTX\n" +
"1. Select FSR 3.1.4/DLSS Nightreign RTX and install\n" +
"2. Go to \"Launch Options\" in the game properties on Steam and add cmd /c start nightreign.exe & rem %command%\n" +
"3. In the game, press the END key to open the menu, select DLSS, preset K, check \"Offset screen edges\" and close the menu\n" +
"4. In the game settings, select Borderless Windowed, disable Depth of Field and Motion Blur.\n" +
"5. In-game, press Insert to open the menu and select FG Active and FG Allow Sync"
},
{
"The Elder Scrolls IV: Oblivion Remastered",
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, set DLSS Sharpness to 0, select Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. To update the DLSS, select \"Others Mods IV Oblivion\"; do this before installing the mod.\n" +
"5. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only RTX)."
},
{
"Empire of the Ants",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Everspace 2",
"1 - Select a mod of your preference (0.10.3 is recommended)\r\n" +
"2 - Check Fake Nvidia Gpu and Nvapi Results.\r\n" +
"3 - Inside the game, select FSR or DLSS"
},
{
"Evil West",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. If you want to update DLSS, do it before installing the mod; just select \"Others Mods EW\"."
},
{
"Eternal Strands",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the 'Insert' key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check 'yes' in the 'DLSS/FSR' window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the 'Insert' key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia)."
},
{
"Fallout 4",
"Usage of the Sym Link:\r\n" +
"1 - In SymLink, click on add file and navigate to the root folder of the game. In the root folder, look\r\n" +
"for Data\\F4SE\\Plugins, within this folder select Fallout4Upscaler.dll.\r\n" +
"2 - In 'Destination Path' in the SymLink, paste the path of the 'mods' folder. Simply navigate to\r\n" +
"the mods folder and copy the path from the address bar of the file explorer, or you can navigate to\r\n" +
"the folder through the SymLink itself.\r\n" +
"3 - Click on Create symlinks.\r\n" +
"4 - Go back to the mods folder, go to View (w10) or Options (w11), and uncheck the box 'File\r\n" +
"name extensions.\r\n" +
"5 - Rename the file Fallout4Upscaler.dll in the mods folder to RDR2Upscaler.org.\r\n" +
"6 - Run the game launcher located in the root folder of the game, in the launcher set 'depth of\r\n" +
"field' to Low.\r\n" +
"7 - Run the game using the file f4se_loader.exe, also located in the root folder of the game.\r\n" +
"8 - In the game, press the 'END' key to open the mod menu, select DLSS for RTX and FSR3 for\r\n" +
"non-RTX."
},
{
"Fist Forged in Shadow Torch",
"FSR 3.1.4/DLSS (Only Optiscaler)\n" +
"1. Open the game and select DX12.\n" +
"2. Select FSR 3.1.4/DLSS (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over box.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"6. If you want to update DLSS, do it before installing the mod; just select \"Others Mods First.\""
},
{
"Flintlock: The Siege of Dawn",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"5. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Fobia – St. Dinfna Hotel",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n\n" +
"Steam: When launching the game via Steam, select DX12 (Ray Tracing). If the window does not appear, go to Library > Game > Gear icon to the right of Achievements > Properties > Launch Options, and add -dx12.\n" +
"Others: Go to the game's .exe > Properties and add -dx12 after the .exe."
},
{
"Fort Solis",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the 'Insert' key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check 'yes' in the 'DLSS/FSR' window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the 'Insert' key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia)."
},
{
"Forza Horizon 5",
"1 - Choose Horizon Forza 5 FSR3 and install it. In the\r\n" +
"confirmation window, select 'Yes' for RTX or 'No' for non-RTX.\r\n" +
"2 - For RTX, in-game, select DLSS and enable Frame\r\n" +
"Generation.\r\n" +
"3 - For other GPUs, select FSR and activate Frame\r\n" +
"Generation. You can use DLSS, but you will experience\r\n" +
"ghosting."
},
{
"Final Fantasy VII Rebirth",
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. If you want to update the DLSS, select \"Others Mods FFVIIRBT\", do this before installing the mod.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Final Fantasy XVI",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods FFVXI\", do\nthis before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over box.\n" +
"4. In the game, select HDR in the menu (it is required for the mod to\nwork) and select DLSS. Then press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n\n" +
"Anti Stutter:\n" +
"Prevents possible crashes during the game and optimizes CPU/GPU usage.\n\n" +
"FFXVI FIX:\n" +
"General:\n" +
"Adjust gameplay FOV, camera distance, and camera horizontal position.\n" +
"JXL screenshot quality option and fixes hitching while taking screenshots.\n" +
"Allow the use of motion blur + frame generation.\n" +
"Disable depth of field.\n" +
"Enable background audio.\n" +
"Lock cursor to game window.\n\n" +
"Performance:\n" +
"Disable 30FPS cap in cutscenes/photo mode or set your own framerate limit.\n" +
"Allow frame generation in cutscenes.\n" +
"Disable graphics debugger checks.\n\n" +
"Ultrawide/narrower:\n" +
"Remove pillarboxing/letterboxing.\n" +
"Fixed HUD scaling with configurable HUD size.\n" +
"Fixed FOV scaling at <16:9.\n\n" +
"ReShade:\n" +
"1. Download and install ReShade.\n" +
"2. Select ffxvi.exe, DirectX 10/11/12, Update ReShade and Effects, and choose the FINAL FANTASY XVI.ini. (The .ini is in the selected folder in the Utility).\n" +
"3. Select check all effects (you can also use \"Uncheck all\" and \"Check"
},
{
"Five Nights at Freddy’s: Security Breach",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods FNAF\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Frostpunk 2",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only RTX)."
},
{
"F1 22",
"1 - Choose a version of the mod you prefer (version 0.10.3 is\r\n" +
"recommended).\r\n" +
"2 - Select 'Default' in Nvngx and check the box 'Enable\r\n" +
"Signature Override.\r\n" +
"3 - Check the box 'Fake Nvidia GPU' (AMD Only).\r\n" +
"4 - Within the game, under AntiAliasing, select DLSS or FSR.\r\n" +
"• To fix the HUD flickering, select DLSS in AntiAliasing before\r\n" +
"starting the game. While playing, switch to TAA+FSR or TAA\r\n" +
"only."
},
{
"F1 23",
"1 - Choose a version of the mod you prefer (version 0.10.3 is\r\n" +
"recommended).\r\n" +
"2 - Select 'Default' in Nvngx and check the box 'Enable\r\n" +
"Signature Override.\r\n" +
"3 - Check the box 'Fake Nvidia GPU' (AMD Only).\r\n" +
"4 - Inside the game, under AntiAliasing, select DLSS or FSR."
},
{
"GTA Trilogy",
"FSR 3.1.4/DLSS (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS (Only Optiscaler) and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the Insert key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. The installation method is the same for the three GTA versions."
},
{
"Grand Theft Auto V",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods GTA V\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check Enable Signature Over box.\n" +
"4. Rockstar Launcher, go to settings and uncheck the \"Battleye\" box.\n" +
"5. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"6. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"7. It is not recommended to use mods in Online mode, or you may get banned. Use at your own risk."
},
{
"Ghost of Tsushima",
"1 - Select Ghost of Tsushima FG DLSS and install\r\n" +
"2 - In the game, select DLSS Frame Generation\r\n" +
"3 - If you encounter any issues related to DX12, select 'YES'\r\n" +
"in the 'DX12' window that will appear during the installation.\r\n" +
"First, test the mod without confirming this window.\r\n" +
"FSR 3.1\r\n" +
"1 - Select Uniscaler FSR 3.1\r\n" +
"2 - For AMD/GTX users: Check the boxes: Fake Nvidia GPU, Nvapi\r\n" +
"Results, and Disable Signature Over.\r\n" +
"3 - Check the Nvngx box and select Default.\r\n" +
"4 - In the game, select DLSS; do not change to FSR as the\r\n" +
"game will crash."
},
{
"Ghostrunner 2",
"1 - Select a version of the mod of your choice (version 0.10.3\r\n" +
"is recommended)\r\n" +
"2 - To make the mod work, run it in DX12. To run it in DX12, right-click\r\n" +
"the game exe and create a shortcut, then right-click the shortcut\r\n" +
"again, go to 'Properties,' and at the end of 'Target' (outside the\r\n" +
"quotes), add -dx12 or go to your Steam library, select the game, go to\r\n" +
"Settings > Properties > Startup options, and enter -dx12.\r\n" +
"3 - Activate Fake Nvidia Gpu (AMD only)\r\n" +
"4 - Inside the game, set the frame limit to unlimited, activate DLSS first\r\n" +
"(disable other upscalers before) and then activate frame generation\r\n" +
"• To fix the flickering of the HUD, activate and deactivate frame\r\n" +
"generation again (no need to apply settings)."
},
{
"Ghostwire: Tokyo",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\r\n"+
"1. Select FSR 3.1.2/DLSS FG Custom and install.\r\n" +
"2. Check the 'Enable Signature' box.\r\n" +
"3. In the game, select DLSS and press the 'Insert' key to open the menu.\r\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n\n" +
"Default Mod\r\n"+
"1. Select Uniscaler V3\r\n" +
"2. Check the Fake Nvidia GPU box (AMD/GTX). If you can't see DLSS in the game, also check the Nvapi Results box.\r\n" +
"3. Check the Nvngx.dll box and select Default, then check the Enable Signature Override box.\r\n" +
"4. In the game, select DLSS to enable Frame Generation.\r\n" +
"5. To fix the HUD glitch, switch between the upscalers (FSR, DLSS, etc.) until the HUD stops flickering."
},
{
"God Of War",
"FSR 3.1.4/DLSS (Only Optiscaler) + AMD Anti Lag 2\n"+
"1. Select FSR 3.1.4/DLSS Gow4 and install.\n" +
"2. Check the Enable Signature Over box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, Select FSR 3.x to use FSR 3.1.4 or select DLSS to use DLSS 4 (Only Nvidia). See the FSR 3.1.4/DLSS FG guide (Only Optiscaler) to learn how to use DLSS.\n" +
"5. Select Nvidia Reflex in the game to use AMD Anti Lag 2."
},
{
"God Of War Ragnarök",
"FSR 3.1.4/DLSS FG (Only Optiscaler) + AMD Anti Lag 2\n" +
"1. If you want to update all upscalers, select \"Others Mods Gow Rag\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check Enable Signature Over box.\n" +
"4. Check the \"AMD Anti Lag 2\" option that appears during installation.\n" +
"5. In the game, select \"Reflex\" under \"Latency Reduction\".\n" +
"6. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"7. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n\n" +
"FSR 3.1.4/DLSSG FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSSG FG (Only Optiscaler) and install.\n" +
"2. Check \"yes\" in the \"DLSS/FSR\" window that will appear during installation.\n" +
"3. In the game, select DLSS, Frame Gen and press the \"Insert\" key to open the menu.\n" +
"4. Check the FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use DLSS 4. (Only Nvidia).\n\n" +
"DLSS FG ALL GPU:\n" +
"1. Select Uniscaler FSR 3.1.\n" +
"2. Select FSR3 in \"Mod Operates\" (if you can\'t see DLSS in the game, select FSR3 in \"Frame Gen Method\" as well).\n" +
"3. Check the \"Enable Signature Over\" box.\n" +
"4. If you still can\'t see DLSS in the game, check the Nvngx.dll box, select \"Default,\" and reinstall the mod.\n" +
"5. The game may freeze for a few seconds when selecting DLSS FG.\n\n" +
"Unlock VRAM:\n" +
"Removes the error for GPUs with less than 6GB of VRAM.\n\n" +
"Anti Stutter:\n" +
"Prevents possible game stuttering and optimizes CPU/GPU usage.\n\n" +
"ReShade:\n" +
"1. Download and install ReShade.\n" +
"2. Select GoWR.exe, DirectX 10/11/12, Update ReShade and Effects and choose the God Of War Ragnarök.ini. (The .ini is in the selected folder in the Utility).\n" +
"3. Select check all effects (you can also use \"Uncheck all\" and \"Check all\" to select everything at once)."
},
{
"Gotham Knights",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"2. Check the \"Enable Signature Over\" box.\n" +
"3. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"4. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"5. If you want to update DLSS, select \"Others Mods GK\" and install it. Select the .exe folder (Mercury\\Binaries\\Win64); otherwise, it will not be possible to update DLSS."
},
{
"GreedFall II: The Dying World",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +
"1. If you want to update the DLSS, select \"Others Mods Greed 2\", do this before installing the mod.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended.\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it."
},
{
"Hellblade: Senua's Sacrifice",
"1. Open the game and select DX12 in the menu.\n" +
"2. Select FSR 3.1.4/DLSS FG (Only Optiscaler) and install.\n" +
"3. Check the Enable Signature Over.\n" +
"4. In the game, select DLSS and press the \"Insert\" key to open the menu.\n" +
"5. In the menu, select FG Enabled, Active, Hud Fix and Extended\n" +
"6. DLSS4, see the Optiscaler FSR 3.1.4/DLSS (Only Optiscaler) guide to see how to use it.\n\n" +
"Uniscaler/0.x\n" +
"1. Select a version of the mod of your choice (version 0.10.3 is recommended).\n" +
"2. Select Fake Nvidia Gpu and UE Compatibility,select Fake Nvidia Gpu and Nvapi Results (AMD/GTX only)."
},
{
"Senua's Saga Hellblade II",
"FSR 3.1.4/DLSS FG (Only Optiscaler)\n" +