log_file - Log File
Filename: log_file
Size: 367 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
Log file open, 11/16/25 16:02:07 LogWindows: Enabling Tpause support LogWindows: Custom abort handler registered for crash reporting. LogPakFile: Initializing PakPlatformFile LogPakFile: Display: Found Pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak attempting to mount. LogPakFile: Display: Mounting pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak. LogPakFile: Display: Mounted Pak file '../../../RogueCore/Content/Paks/RogueCore-Windows.pak', mount point: '../../../' LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +9:30, Platform Override: '' LogInit: Session CrashGUID >==================================================== Session CrashGUID > UECC-Windows-CAFDD18D46D2590562AD88A55BFEA399 Session CrashGUID >==================================================== LogConfig: No local boot hotfix file found at: [C:/Users/alexp/AppData/Local/RogueCore/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] LogAudio: Display: Pre-Initializing Audio Device Manager... LogAudio: Display: AudioInfo: 'OPUS' Registered LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. LogAudio: Display: AudioInfo: 'OGG' Registered LogAudio: Display: AudioInfo: 'ADPCM' Registered LogAudio: Display: AudioInfo: 'PCM' Registered LogAudio: Display: AudioInfo: 'BINKA' Registered LogAudio: Display: AudioInfo: 'RADA' Registered LogAudio: Display: Audio Device Manager Pre-Initialized LogPluginManager: Mounting Project plugin DiscordSDK_Win64 LogPluginManager: Mounting Project plugin FSR3 LogPluginManager: Mounting Project plugin BasicUI LogAssetRegistry: Premade AssetRegistry loaded from '../../../RogueCore/AssetRegistry.bin' LogPluginManager: Mounting Project plugin BugReporter LogPluginManager: Mounting Project plugin DiscordSDK LogPluginManager: Mounting Project plugin AnimationPreviewTool LogPluginManager: Mounting Project plugin EditorBase LogPluginManager: Mounting Project plugin UpgradeEditor LogPluginManager: Mounting Project plugin VertexColorBaker LogPluginManager: Mounting Project plugin FSDRawInput LogPluginManager: Mounting Project plugin FSDTests LogPluginManager: Mounting Project plugin GameLauncher LogPluginManager: Mounting Project plugin DLSSMoviePipelineSupport LogPluginManager: Mounting Project plugin DLSS LogPluginManager: Mounting Project plugin NIS LogPluginManager: Mounting Project plugin StreamlineCore LogPluginManager: Mounting Project plugin StreamlineDLSSG LogPluginManager: Mounting Project plugin StreamlineDeepDVC LogPluginManager: Mounting Project plugin StreamlineReflex LogPluginManager: Mounting Project plugin Streamline LogPluginManager: Mounting Project plugin PS5_Mock LogPluginManager: Mounting Engine plugin AISupport LogPluginManager: Mounting Engine plugin ACLPlugin LogPluginManager: Mounting Engine plugin AnimationData LogPluginManager: Mounting Engine plugin ControlRigModules LogPluginManager: Mounting Engine plugin ControlRigSpline LogPluginManager: Mounting Engine plugin ControlRig LogPluginManager: Mounting Engine plugin DeformerGraph LogPluginManager: Mounting Engine plugin GameplayInsights LogPluginManager: Mounting Engine plugin IKRig LogPluginManager: Mounting Engine plugin RigLogic LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools LogPluginManager: Mounting Engine plugin TweeningUtils LogPluginManager: Mounting Engine plugin AudioInsights LogPluginManager: Mounting Engine plugin Bridge LogPluginManager: Mounting Engine plugin CameraShakePreviewer LogPluginManager: Mounting Engine plugin EngineCameras LogPluginManager: Mounting Engine plugin GameplayCameras LogPluginManager: Mounting Engine plugin ChaosClothAsset LogPluginManager: Mounting Engine plugin ChaosCloth LogPluginManager: Mounting Engine plugin ChaosVD LogPluginManager: Mounting Engine plugin OpenColorIO LogPluginManager: Mounting Engine plugin OodleNetwork LogPluginManager: Mounting Engine plugin AnimationSharing LogPluginManager: Mounting Engine plugin ConcertMain LogPluginManager: Mounting Engine plugin ConcertSyncClient LogPluginManager: Mounting Engine plugin ConcertSyncCore LogPluginManager: Mounting Engine plugin ConcertSharedSlate LogPluginManager: Mounting Engine plugin NamingTokens LogPluginManager: Mounting Engine plugin PluginUtils LogPluginManager: Mounting Engine plugin TraceSourceFilters LogPluginManager: Mounting Engine plugin UObjectPlugin LogPluginManager: Mounting Engine plugin AssetManagerEditor LogPluginManager: Mounting Engine plugin BlueprintHeaderView LogPluginManager: Mounting Engine plugin ColorGrading LogPluginManager: Mounting Engine plugin ConsoleVariables LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource LogPluginManager: Mounting Engine plugin CurveEditorTools LogPluginManager: Mounting Engine plugin DataValidation LogPluginManager: Mounting Engine plugin EditorScriptingUtilities LogPluginManager: Mounting Engine plugin EngineAssetDefinitions LogPluginManager: Mounting Engine plugin FacialAnimation LogPluginManager: Mounting Engine plugin GameplayTagsEditor LogPluginManager: Mounting Engine plugin GeometryMode LogPluginManager: Mounting Engine plugin LightMixer LogPluginManager: Mounting Engine plugin ObjectMixer LogPluginManager: Mounting Engine plugin SequencerAnimTools LogPluginManager: Mounting Engine plugin UMGWidgetPreview LogPluginManager: Mounting Engine plugin UVEditor LogPluginManager: Mounting Engine plugin EnhancedInput LogPluginManager: Mounting Engine plugin DatasmithContent LogPluginManager: Mounting Engine plugin GLTFExporter LogPluginManager: Mounting Engine plugin VariantManagerContent LogPluginManager: Mounting Engine plugin VariantManager LogPluginManager: Mounting Engine plugin AutomationUtils LogPluginManager: Mounting Engine plugin BackChannel LogPluginManager: Mounting Engine plugin ChaosCaching LogPluginManager: Mounting Engine plugin ChaosNiagara LogPluginManager: Mounting Engine plugin ChaosSolverPlugin LogPluginManager: Mounting Engine plugin ChaosUserDataPT LogPluginManager: Mounting Engine plugin CharacterAI LogPluginManager: Mounting Engine plugin CompositeCore LogPluginManager: Mounting Engine plugin Dataflow LogPluginManager: Mounting Engine plugin EditorDataStorageFeatures LogPluginManager: Mounting Engine plugin EditorDataStorage LogPluginManager: Mounting Engine plugin FullBodyIK LogPluginManager: Mounting Engine plugin LevelSequenceNavigatorBridge LogPluginManager: Mounting Engine plugin LocalizableMessage LogPluginManager: Mounting Engine plugin NFORDenoise LogPluginManager: Mounting Engine plugin PlatformCrypto LogPluginManager: Mounting Engine plugin PythonScriptPlugin LogPluginManager: Mounting Engine plugin RuntimeTelemetry LogPluginManager: Mounting Engine plugin ToolPresets LogPluginManager: Mounting Engine plugin Cascade LogPluginManager: Mounting Engine plugin NiagaraSimCaching LogPluginManager: Mounting Engine plugin Niagara LogPluginManager: Mounting Engine plugin Fab LogPluginManager: Mounting Engine plugin AlembicImporter LogPluginManager: Mounting Engine plugin InterchangeAssets LogPluginManager: Mounting Engine plugin InterchangeEditor LogPluginManager: Mounting Engine plugin Interchange LogPluginManager: Mounting Engine plugin AvfMedia LogPluginManager: Mounting Engine plugin ImgMedia LogPluginManager: Mounting Engine plugin MediaCompositing LogPluginManager: Mounting Engine plugin MediaPlate LogPluginManager: Mounting Engine plugin MfMedia LogPluginManager: Mounting Engine plugin WebMMedia LogPluginManager: Mounting Engine plugin WmfMedia LogPluginManager: Mounting Engine plugin MeshPainting LogPluginManager: Mounting Engine plugin TcpMessaging LogPluginManager: Mounting Engine plugin UdpMessaging LogPluginManager: Mounting Engine plugin MetaHumanSDK LogPluginManager: Mounting Engine plugin ActorSequence LogPluginManager: Mounting Engine plugin LevelSequenceEditor LogPluginManager: Mounting Engine plugin MovieRenderPipeline LogPluginManager: Mounting Engine plugin SequencerScripting LogPluginManager: Mounting Engine plugin TemplateSequence LogPluginManager: Mounting Engine plugin NNEDenoiser LogPluginManager: Mounting Engine plugin NNERuntimeORT LogPluginManager: Mounting Engine plugin OnlineBase LogPluginManager: Mounting Engine plugin OnlineServices LogPluginManager: Mounting Engine plugin OnlineSubsystemNull LogPluginManager: Mounting Engine plugin OnlineSubsystemSteam LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils LogPluginManager: Mounting Engine plugin OnlineSubsystem LogPluginManager: Mounting Engine plugin LauncherChunkInstaller LogPluginManager: Mounting Engine plugin ActorLayerUtilities LogPluginManager: Mounting Engine plugin AnalyticsBlueprintLibrary LogPluginManager: Mounting Engine plugin AndroidFileServer LogPluginManager: Mounting Engine plugin AssetTags LogPluginManager: Mounting Engine plugin AudioCapture LogPluginManager: Mounting Engine plugin AudioModulation LogPluginManager: Mounting Engine plugin AudioSynesthesia LogPluginManager: Mounting Engine plugin AudioWidgets LogPluginManager: Mounting Engine plugin CableComponent LogPluginManager: Mounting Engine plugin ChunkDownloader LogPluginManager: Mounting Engine plugin ComputeFramework LogPluginManager: Mounting Engine plugin SQLiteCore LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector LogPluginManager: Mounting Engine plugin GeometryCache LogPluginManager: Mounting Engine plugin GeometryProcessing LogPluginManager: Mounting Engine plugin HairStrands LogPluginManager: Mounting Engine plugin Metasound LogPluginManager: Mounting Engine plugin MsQuic LogPluginManager: Mounting Engine plugin ProceduralMeshComponent LogPluginManager: Mounting Engine plugin PropertyAccessEditor LogPluginManager: Mounting Engine plugin PropertyBindingUtils LogPluginManager: Mounting Engine plugin ResonanceAudio LogPluginManager: Mounting Engine plugin RigVM LogPluginManager: Mounting Engine plugin SignificanceManager LogPluginManager: Mounting Engine plugin SoundFields LogPluginManager: Mounting Engine plugin Spatialization LogPluginManager: Mounting Engine plugin StateTree LogPluginManager: Mounting Engine plugin SteamShared LogPluginManager: Mounting Engine plugin SteamSockets LogPluginManager: Mounting Engine plugin Synthesis LogPluginManager: Mounting Engine plugin WaveTable LogPluginManager: Mounting Engine plugin WebMMoviePlayer LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector LogPluginManager: Mounting Engine plugin WindowsMoviePlayer LogPluginManager: Mounting Engine plugin XInputDevice LogPluginManager: Mounting Engine plugin SlateInsights LogPluginManager: Mounting Engine plugin FunctionalTestingEditor LogPluginManager: Mounting Engine plugin InterchangeTests LogPluginManager: Mounting Engine plugin TraceUtilities LogPluginManager: Mounting Engine plugin CameraCalibrationCore LogPluginManager: Mounting Engine plugin Takes LogPluginManager: Mounting Engine plugin WorldMetrics LogHAL: Log category FSDLog_ShippingDebugging verbosity has been raised to VeryVerbose. LogHAL: Log category FSDLog_EngineShippingDebugging verbosity has been raised to VeryVerbose. LogConfig: Applying CVar settings from Section [/Script/FFXFSR3Settings.FFXFSR3Settings] File [Engine] LogFSR3: FSR3 Temporal Upscaling Module Started LogFFXFI: FFX Frame Interpolation Module Started LogDLSSBlueprint: Loaded DLSS-SR plugin version 8.2.0-NGX310.3.0 LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Enter LogRHI: Using Default RHI: D3D12 LogRHI: Using Highest Feature Level of D3D12: SM6 LogRHI: Loading RHI module D3D12RHI LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 4060 (VendorId: 10de, DeviceId: 2882, SubSysId: 51611462, Revision: 00a1 LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported LogD3D12RHI: Adapter has 7957MB of dedicated video memory, 0MB of dedicated system memory, and 8113MB of shared system memory, 2 output[s], UMA:false LogD3D12RHI: Driver Version: 581.57 (internal:32.0.15.8157, unified:581.57) LogD3D12RHI: Driver Date: 10-9-2025 LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 8113MB of shared system memory, 0 output[s], UMA:true LogD3D12RHI: DirectX Agility SDK runtime found. LogD3D12RHI: Chosen D3D12 Adapter Id = 0 LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. LogDLSSNGXVulkanRHIPreInit: GetSelectedDynamicRHIModuleName = D3D12RHI LogDLSSNGXVulkanRHIPreInit: VulkanRHI is not the active DynamicRHI; skipping of pregistering the required NGX DLSS Vulkan device and instance extensions via the VulkanRHIBridge LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Leave LogStreamlineShaders: Loaded Streamline plugin version 8.2.0-SL2.8.0 LogConfig: Applying CVar settings from Section [/Script/CompositeCore.CompositeCorePluginSettings] File [Engine] LogNFORDenoise: NFORDenoise function starting up LogInit: Using libcurl 8.12.1 LogInit: - built for Windows LogInit: - supports SSL with OpenSSL/1.1.1t LogInit: - supports HTTP deflate (compression) using libz 1.3 LogInit: - other features: LogInit: CURL_VERSION_SSL LogInit: CURL_VERSION_LIBZ LogInit: CURL_VERSION_IPV6 LogInit: CURL_VERSION_ASYNCHDNS LogInit: CURL_VERSION_LARGEFILE LogInit: CURL_VERSION_TLSAUTH_SRP LogInit: CURL_VERSION_HTTP2 LogInit: CurlRequestOptions (configurable via config and command line): LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy LogInit: - bDontReuseConnections = false - Libcurl will reuse connections LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host LogInit: - LocalHostAddr = Default LogInit: - BufferSize = 65536 LogInit: CreateHttpThread using FCurlMultiPollEventLoopHttpThread LogInit: Creating http thread with maximum 256 concurrent requests LogSteamShared: Display: Loading Steam SDK 1.57 LogSteamShared: Steam SDK Loaded! LogOnline: STEAM: Steam User is subscribed 1 LogOnline: STEAM: [AppId: 2860770] Client API initialized 1 LogOnline: OSS: Created online subsystem instance for: STEAM LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [STEAM] LogInit: ExecutableName: RogueCore-Win64-Shipping.exe LogInit: Build: UE5-CL-0 LogInit: Platform=Windows LogInit: MachineId=6db05fd3450f7852b7290ea81e68a029 LogInit: DeviceId= LogInit: Engine Version: 5.6.1-0+UE5 LogInit: Compatible Engine Version: 5.6.0-0+UE5 LogInit: Net CL: 0 LogInit: OS: Windows 11 (25H2) [10.0.26200.7171] (), CPU: Intel(R) Core(TM) i7-14700F, GPU: NVIDIA GeForce RTX 4060 LogInit: Compiled (64-bit): Oct 31 2025 11:09:35 LogInit: Architecture: x64 LogInit: Compiled with Visual C++: 19.38.33145.00 LogInit: Build Configuration: Shipping LogInit: Branch Name: UE5 LogInit: Command Line: -disablemodding LogInit: Base Directory: D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/Win64/ LogInit: Allocator: Binned2 LogInit: Installed Engine Build: 1 LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC. LogInit: Object subsystem initialized [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.setres:1280x720]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[net.ResetAckStatePostSeamlessTravel:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[net.AllowPIESeamlessTravel:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.Enabled:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.PrintNewPSODescriptors:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.MobileHDR:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.TextureStreaming:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.SeparateTranslucency:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.CustomDepth:3]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.EarlyZPass:2]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DBuffer:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.ClearSceneMethod:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.HZBOcclusion:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.HDR.UI.Level:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.AllowHDR:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.HDR.UI.CompositeMode:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.NGX.DLSS.Enable:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.FidelityFX.FSR3.Enabled:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.FidelityFX.FSR3.CreateReactiveMask:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.FidelityFX.FI.Enabled:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.ReflectionMethod:2]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.LightFunctionAtlas.Size:8]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Streamline.ForceTagging:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Nanite.ProjectEnabled:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Nanite:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.RayTracing:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.Lumen.HardwareRayTracing:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.RayTracing.Shadows:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[r.RayTracing.Skylight:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] [2025.11.16-05.32.07:711][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] [2025.11.16-05.32.07:711][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] [2025.11.16-05.32.07:712][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] [2025.11.16-05.32.07:712][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] [2025.11.16-05.32.07:712][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] [2025.11.16-05.32.07:712][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] [2025.11.16-05.32.07:712][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] [2025.11.16-05.32.07:715][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.3]] [2025.11.16-05.32.07:715][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.SkylightIntensityMultiplier:1.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.AOQuality:2]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LumenScene.DirectLighting.MaxLightsPerTile:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LumenScene.DirectLighting.UpdateFactor:32]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.UpdateFactor:64]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:100]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.NumAdaptiveProbes:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.BentNormal:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:70]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.NumSamples:5]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] [2025.11.16-05.32.07:715][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DetailMode:3]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:256]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:256]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.MaxSampleCount:8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.UseExistenceMask:0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogRHI: Using Default RHI: D3D12 [2025.11.16-05.32.07:716][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 [2025.11.16-05.32.07:716][ 0]LogRHI: Loading RHI module D3D12RHI [2025.11.16-05.32.07:716][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. [2025.11.16-05.32.07:716][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. [2025.11.16-05.32.07:716][ 0]LogInit: Selected Device Profile: [Windows] [2025.11.16-05.32.07:716][ 0]LogHAL: Display: Platform has ~ 16 GB [17015435264 / 17179869184 / 16], which maps to Larger [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) [2025.11.16-05.32.07:716][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] [2025.11.16-05.32.07:716][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] [2025.11.16-05.32.07:716][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@2] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@2] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:4]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:1024]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.04]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:0.85]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:0.8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.5]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:16]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:64]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:2048]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:0.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:0.0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:4]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@2] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:3]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.6]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.5]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:3]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Upscale.Quality:2]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:0.8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:0 ; lower gathering accumulator quality]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:2 ; Max3x3 postfilering method]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:1 ; no background occlusion]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:0 ; no bokeh simulation when scattering]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.04 ; only a maximum of 4% of scattered bokeh]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:0 ; no slight out of focus]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:0 ; faster temporal accumulation]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.012 ; required because of AccumulatorQuality=0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.012 ; required because of AccumulatorQuality=0]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@2] File [Scalability] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[foliage.DensityScale:0.8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Set CVar [[grass.DensityScale:0.8]] [2025.11.16-05.32.07:716][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] [2025.11.16-05.32.07:716][ 0]LogInit: Computer: MSI-PC [2025.11.16-05.32.07:716][ 0]LogInit: User: alexp [2025.11.16-05.32.07:716][ 0]LogInit: CPU Page size=4096, Cores=20 [2025.11.16-05.32.07:716][ 0]LogInit: High frequency timer resolution =10.000000 MHz [2025.11.16-05.32.07:716][ 0]LogMemory: Memory total: Physical=15.8GB (16GB approx) Virtual=25.8GB [2025.11.16-05.32.07:716][ 0]LogMemory: Platform Memory Stats for Windows [2025.11.16-05.32.07:716][ 0]LogMemory: Process Physical Memory: 207.57 MB used, 307.80 MB peak [2025.11.16-05.32.07:716][ 0]LogMemory: Process Virtual Memory: 211.15 MB used, 211.15 MB peak [2025.11.16-05.32.07:716][ 0]LogMemory: Physical Memory: 7254.73 MB used, 8972.45 MB free, 16227.18 MB total [2025.11.16-05.32.07:716][ 0]LogMemory: Virtual Memory: 10597.75 MB used, 15869.44 MB free, 26467.18 MB total [2025.11.16-05.32.07:737][ 0]LogWindows: WindowsPlatformFeatures enabled [2025.11.16-05.32.07:738][ 0]LogInit: Physics initialised using underlying interface: Chaos [2025.11.16-05.32.07:738][ 0]LogInit: Overriding language with engine language configuration option (en). [2025.11.16-05.32.07:738][ 0]LogInit: Overriding language with engine locale configuration option (en). [2025.11.16-05.32.07:739][ 0]LogInit: Setting process to per monitor DPI aware [2025.11.16-05.32.07:749][ 0]LogWindowsTextInputMethodSystem: Available input methods: [2025.11.16-05.32.07:749][ 0]LogWindowsTextInputMethodSystem: - English (Australia) - (Keyboard). [2025.11.16-05.32.07:749][ 0]LogWindowsTextInputMethodSystem: - English (United States) - (Keyboard). [2025.11.16-05.32.07:749][ 0]LogWindowsTextInputMethodSystem: Activated input method: English (Australia) - (Keyboard). [2025.11.16-05.32.07:760][ 0]LogWindowsTouchpad: Display: CacheForceMaxTouchpadSensitivityMode SetMaxTouchpadSensitivity [2025.11.16-05.32.07:763][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 [2025.11.16-05.32.07:763][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 [2025.11.16-05.32.07:779][ 0]LogRHI: Using Default RHI: D3D12 [2025.11.16-05.32.07:779][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 [2025.11.16-05.32.07:779][ 0]LogRHI: Loading RHI module D3D12RHI [2025.11.16-05.32.07:779][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. [2025.11.16-05.32.07:779][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. [2025.11.16-05.32.07:779][ 0]LogD3D12RHI: Integrated GPU (iGPU): false [2025.11.16-05.32.07:779][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 [2025.11.16-05.32.07:780][ 0]LogWindows: Attached monitors: [2025.11.16-05.32.07:780][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1032), device: '\\.\DISPLAY1' [PRIMARY] [2025.11.16-05.32.07:780][ 0]LogWindows: resolution: 1920x1080, work area: (-1920, 0) -> (0, 1032), device: '\\.\DISPLAY2' [2025.11.16-05.32.07:780][ 0]LogWindows: Found 2 attached monitors. [2025.11.16-05.32.07:780][ 0]LogWindows: Gathering driver information using Windows Setup API [2025.11.16-05.32.07:780][ 0]LogRHI: RHI Adapter Info: [2025.11.16-05.32.07:780][ 0]LogRHI: Name: NVIDIA GeForce RTX 4060 [2025.11.16-05.32.07:780][ 0]LogRHI: Driver Version: 581.57 (internal:32.0.15.8157, unified:581.57) [2025.11.16-05.32.07:780][ 0]LogRHI: Driver Date: 10-9-2025 [2025.11.16-05.32.07:780][ 0]LogD3D12RHI: GPU DeviceId: 0x2882 (for the marketing name, search the web for "GPU Device Id") [2025.11.16-05.32.07:780][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off [2025.11.16-05.32.07:873][ 0]LogNvidiaAftermath: Aftermath initialized [2025.11.16-05.32.07:941][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: [2025.11.16-05.32.07:941][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device1 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device2 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device3 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device4 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device5 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device6 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device7 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device8 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device9 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device10 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device11 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: ID3D12Device12 is supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Bindless resources are supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Raster order views are supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported [2025.11.16-05.32.07:941][ 0]LogD3D12RHI: Work Graphs are supported [2025.11.16-05.32.07:967][ 0]LogOnline: Warning: STEAM: Failed to obtain steam user stats, user: Tubbins [0x110000102A91348] has no stats entries [2025.11.16-05.32.07:986][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000285AA146800) [2025.11.16-05.32.07:986][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000285AA146AC0) [2025.11.16-05.32.07:986][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000285AA146D80) [2025.11.16-05.32.07:986][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 [2025.11.16-05.32.07:986][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 [2025.11.16-05.32.08:120][ 0]LogD3D12RHI: NVIDIA Shader Execution Reordering interface supported! [2025.11.16-05.32.08:120][ 0]LogD3D12RHI: Display: Batched command list execution is disabled for async queues due to known bugs in the current driver. [2025.11.16-05.32.08:120][ 0]LogRHI: Texture pool is 4529 MB (70% of 6470 MB) [2025.11.16-05.32.08:120][ 0]LogD3D12RHI: Async texture creation enabled [2025.11.16-05.32.08:120][ 0]LogD3D12RHI: RHI has support for 64 bit atomics [2025.11.16-05.32.08:124][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading [2025.11.16-05.32.08:125][ 0]LogInit: Initializing FReadOnlyCVARCache [2025.11.16-05.32.08:130][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0). [2025.11.16-05.32.08:132][ 0]LogShaderLibrary: Display: Using ../../../RogueCore/Content/ShaderArchive-Global-PCD3D_SM6-PCD3D_SM6.ushaderbytecode for material shader code. Total 6882 unique shaders. [2025.11.16-05.32.08:132][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global [2025.11.16-05.32.08:132][ 0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library [2025.11.16-05.32.08:133][ 0]LogTemp: Display: Clearing the OS Cache [2025.11.16-05.32.08:135][ 0]LogPakFile: New pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak added to pak precacher. [2025.11.16-05.32.08:181][ 0]LogPakFile: Precache HighWater 16MB [2025.11.16-05.32.08:201][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled [2025.11.16-05.32.08:201][ 0]LogInit: XR: MultiViewport is Disabled [2025.11.16-05.32.08:201][ 0]LogInit: XR: Mobile Multiview is Disabled [2025.11.16-05.32.08:210][ 0]LogSlate: Using FreeType 2.10.0 [2025.11.16-05.32.08:211][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 [2025.11.16-05.32.08:220][ 0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Enter [2025.11.16-05.32.08:220][ 0]LogStreamlineRHI: Using Streamline production binaries from ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/. Can be overridden via -slbinaries={production,development,debug} command line switches for non-shipping builds [2025.11.16-05.32.08:220][ 0]LogStreamlineRHI: loading core Streamline functions from Streamline interposer at ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/sl.interposer.dll [2025.11.16-05.32.08:237][ 0]LogStreamlineRHI: File '..\..\..\RogueCore\Plugins\Nvidia\StreamlineCore\Binaries\ThirdParty\Win64\sl.interposer.dll' is signed by NVIDIA and the signature was verified. [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: SLInterPoserLibrary = 00007FFB8DB10000 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slInit = 00007FFB8DB16700 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slShutdown = 00007FFB8DB16AC0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slIsFeatureSupported = 00007FFB8DB18430 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slIsFeatureLoaded = 00007FFB8DB16D70 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slSetFeatureLoaded = 00007FFB8DB16DC0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slEvaluateFeature = 00007FFB8DB17590 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slAllocateResources = 00007FFB8DB17310 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slFreeResources = 00007FFB8DB17460 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slSetTag = 00007FFB8DB16EC0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slSetTagForFrame = 00007FFB8DB17170 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slGetFeatureRequirements = 00007FFB8DB194D0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slGetFeatureVersion = 00007FFB8DB18F50 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slUpgradeInterface = 00007FFB8DB17AE0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slSetConstants = 00007FFB8DB172B0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slGetNativeInterface = 00007FFB8DB17860 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slGetFeatureFunction = 00007FFB8DB1ABB0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slGetNewFrameToken = 00007FFB8DB1AD50 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: slSetD3DDevice = 00007FFB8DB176A0 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: PlatformCreateStreamlineRHI Enter [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: GDynamicRHIName NVIDIA D3D12 [2025.11.16-05.32.08:238][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Enter [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: DLSS plugin enabled, adding DLSS plugin binary search paths to Streamline init paths [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll found in search path D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64 [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Loading Streamline Reflex since the corresponding cvar r.Streamline.Load.Reflex is set to true [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Skipping loading Streamline Latewarp since the corresponding UE StreamlineLatewarp plugin is not enabled [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Loading Streamline DLSS-FG since the corresponding cvar r.Streamline.Load.DLSSG is set to true [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Loading Streamline DeepDVC since the corresponding cvar r.Streamline.Load.DeepDVC is set to true [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Setting bAllowOTAUpdate to 1 default. See -sl{no}ota command line or project and project user settings [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Setting bUseSlSetTag to 0 default. See -sl{no}settag command line or project and project user settings [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: Initializing Streamline [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: sl::Preferences::logLevel = 1. Can be overridden via -slloglevel={0,1,2} command line switches [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: sl::Preferences::showConsole = 0. Can be overridden via -sllogconsole={0,1} command line switches [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: sl::Preferences::flags = 0xcd PreferenceFlags::eUseFrameBasedResourceTagging|PreferenceFlags::eLoadDownloadedPlugins|PreferenceFlags::eAllowOTA|PreferenceFlags::eUseManualHooking|PreferenceFlags::eDisableCLStateTracking [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: sl::Preferences::featuresToLoad = {kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)}. Feature loading can be overridden on the command line and console variables: [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: command line -sl{no}reflex, -sl{no}dlssg, -sl{no}deepdvc -sl{no}debugoverlay (non-shipping) [2025.11.16-05.32.08:238][ 0]LogStreamlineRHI: console/config r.Streamline.Load.Reflex, r.Streamline.Load.DLSSG, r.Streamline.Load.DeepDVC [2025.11.16-05.32.08:238][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:000ms:656us]pluginManager.cpp:406[setHostSDKVersion] Streamline v2.8.0.b735fd37 - built on Wed Jun 18 09:59:34 2025 - host SDK v2.8.0 [2025.11.16-05.32.08:240][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:003ms:635us]ota.cpp:382[checkForOTA] Requesting optional updates! [2025.11.16-05.32.08:242][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:160us]pluginManager.cpp:525[findPlugins] Looking for plugins in D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 ... [2025.11.16-05.32.08:242][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:226us]pluginManager.cpp:916[loadPlugins] Searching for OTA'd plugins... [2025.11.16-05.32.08:242][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:382us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_reflex_0/versions/133132/files/190_E658703.dll [2025.11.16-05.32.08:242][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:502us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_dlss_g_0/versions/133132/files/190_E658703.dll [2025.11.16-05.32.08:242][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:604us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_deepdvc_0/versions/133132/files/190_E658703.dll [2025.11.16-05.32.08:242][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:712us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_common_0/versions/133132/files/190_E658703.dll [2025.11.16-05.32.08:243][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:004ms:814us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_pcl_0/versions/133132/files/190_E658703.dll [2025.11.16-05.32.08:249][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:011ms:118us]commonInterface.cpp:150[getSystemCaps] Enumerating up to 8 adapters but only one of them can be used to create a device - no mGPU support in this SDK [2025.11.16-05.32.08:253][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:014ms:798us]commonInterface.cpp:272[getSystemCaps] >----------------------------------------- [2025.11.16-05.32.08:253][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:014ms:826us]commonInterface.cpp:275[getSystemCaps] NVIDIA driver 581.57 [2025.11.16-05.32.08:254][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:016ms:341us]commonInterface.cpp:300[getSystemCaps] Adapter 0 architecture 0x190 implementation 0x7 revision 0xa1 - bit 0x1 - LUID 0.59623 [2025.11.16-05.32.08:254][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:016ms:361us]commonInterface.cpp:306[getSystemCaps] -----------------------------------------< [2025.11.16-05.32.08:255][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:016ms:989us]commonEntry.cpp:1734[getOSVersionAndUpdateTimerResolution] Changed high resolution timer resolution to 5000 [100 ns units]. [2025.11.16-05.32.08:255][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:017ms:008us]commonEntry.cpp:1809[updateEmbeddedJSON] Detected Windows OS version 10.0.26200 [2025.11.16-05.32.08:255][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:017ms:075us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.common' - version 2.8.12.ea8968a8 - id 4294967295 - priority 0 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:267][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:028ms:885us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id 190_E658703 - sl.common [2025.11.16-05.32.08:267][ 0]LogStreamlineAPI: Warning: [Warn]: [16-02-08][streamline][warn][tid:14108][0s:028ms:909us]pluginManager.cpp:730[mapPlugins] Ignoring plugin 'sl.common' since it has duplicated unique id [2025.11.16-05.32.08:282][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:043ms:414us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.deepdvc' - version 2.8.0.b735fd37 - id 5 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:749][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:510ms:765us]commonEntry.cpp:821[getNGXFeatureRequirements] NGX feature 11 requirements - minOS 10.0.19041 minHW 0x190 [2025.11.16-05.32.08:750][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:511ms:903us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.8.0.b735fd37 - id 1000 - priority 1000 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:755][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:516ms:777us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.pcl' - version 2.8.0.b735fd37 - id 4 - priority 2 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:760][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:521ms:875us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.reflex' - version 2.8.0.b735fd37 - id 3 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:765][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:526ms:364us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.reflex - 190_E658703 [2025.11.16-05.32.08:765][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:526ms:409us]pluginManager.cpp:712[mapPlugins] Plugin sl.reflex is newer (2.8.12) will choose that [2025.11.16-05.32.08:765][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:526ms:427us]pluginManager.cpp:811[mapPlugins] A duplicate was found, but a newer plugin version was available [2025.11.16-05.32.08:765][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:526ms:438us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.reflex superseded by plugin sl.reflex [2025.11.16-05.32.08:765][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:526ms:448us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.reflex' - version 2.8.12.ea8968a8 - id 3 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:777][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:539ms:165us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.dlss_g - 190_E658703 [2025.11.16-05.32.08:777][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:539ms:186us]pluginManager.cpp:712[mapPlugins] Plugin sl.dlss_g is newer (2.8.12) will choose that [2025.11.16-05.32.08:777][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:539ms:197us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.dlss_g superseded by plugin sl.dlss_g [2025.11.16-05.32.08:778][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:539ms:315us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.8.12.ea8968a8 - id 1000 - priority 1000 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:782][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:544ms:350us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.deepdvc - 190_E658703 [2025.11.16-05.32.08:782][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:544ms:379us]pluginManager.cpp:712[mapPlugins] Plugin sl.deepdvc is newer (2.8.12) will choose that [2025.11.16-05.32.08:782][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:544ms:398us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.deepdvc superseded by plugin sl.deepdvc [2025.11.16-05.32.08:782][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:544ms:425us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.deepdvc' - version 2.8.12.ea8968a8 - id 5 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:124us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.pcl - 190_E658703 [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:163us]pluginManager.cpp:712[mapPlugins] Plugin sl.pcl is newer (2.8.12) will choose that [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:185us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.pcl superseded by plugin sl.pcl [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:196us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.pcl' - version 2.8.12.ea8968a8 - id 4 - priority 2 - adapter mask 0x1 - interposer 'no' [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:240us]pluginManager.cpp:1073[loadPlugins] Plugin execution order based on priority: [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:252us]pluginManager.cpp:1076[loadPlugins] P0 - sl.common [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:262us]pluginManager.cpp:1076[loadPlugins] P2 - sl.pcl [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:275us]pluginManager.cpp:1076[loadPlugins] P100 - sl.reflex [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:284us]pluginManager.cpp:1076[loadPlugins] P100 - sl.deepdvc [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:293us]pluginManager.cpp:1076[loadPlugins] P1000 - sl.dlss_g [2025.11.16-05.32.08:787][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:303us]pluginManager.cpp:1261[initializePlugins] Initializing plugins - api 0.0.1 - application ID 100721531 [2025.11.16-05.32.08:788][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:549ms:914us]commonEntry.cpp:1280[slOnPluginStartup] At least one plugin requires NGX, trying to initialize ... [2025.11.16-05.32.08:788][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:550ms:031us]commonEntry.cpp:1036[ngxLog] App logging hooks successfully initialized [2025.11.16-05.32.08:795][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:556ms:388us]commonEntry.cpp:1036[ngxLog] Path to driverStore found using QAI: C:\WINDOWS\System32\DriverStore\FileRepository\nvmdi.inf_amd64_f088ae99b5a2f5fd [2025.11.16-05.32.08:795][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:556ms:429us]commonEntry.cpp:1036[ngxLog] using path for models: C:\ProgramData/NVIDIA/NGX/models/ [2025.11.16-05.32.08:804][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:255us]commonEntry.cpp:1036[ngxLog] updated access control list for NGX cache (NGX cache should now be usable by all authenticated users) [2025.11.16-05.32.08:804][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:294us]commonEntry.cpp:1036[ngxLog] model folder created: C:\ProgramData/NVIDIA/NGX/models/ [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:375us]commonEntry.cpp:1036[ngxLog] [dlss] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:398us]commonEntry.cpp:1036[ngxLog] app_E658702=0.0.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:410us]commonEntry.cpp:1036[ngxLog] app_E658701=0.0.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:419us]commonEntry.cpp:1036[ngxLog] app_B9FEB50=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:430us]commonEntry.cpp:1036[ngxLog] app_B9FF4BC=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:446us]commonEntry.cpp:1036[ngxLog] app_B9FD524=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:456us]commonEntry.cpp:1036[ngxLog] app_B9DF510=1.3.106 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:471us]commonEntry.cpp:1036[ngxLog] app_B9CB0B8=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:480us]commonEntry.cpp:1036[ngxLog] app_B9E26B0=2.1.28 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:489us]commonEntry.cpp:1036[ngxLog] app_B9D48D0=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:498us]commonEntry.cpp:1036[ngxLog] app_E99B5EC=1.2.109 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:515us]commonEntry.cpp:1036[ngxLog] app_B9DFA64=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:524us]commonEntry.cpp:1036[ngxLog] app_B9FD6C0=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:532us]commonEntry.cpp:1036[ngxLog] app_B9CF688=2.2.15 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:540us]commonEntry.cpp:1036[ngxLog] app_B9D6F08=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:554us]commonEntry.cpp:1036[ngxLog] app_B9BF564=2.1.201 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:563us]commonEntry.cpp:1036[ngxLog] app_B9DB4F4=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:572us]commonEntry.cpp:1036[ngxLog] app_B9D2F5C=1.2.110 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:580us]commonEntry.cpp:1036[ngxLog] app_B9D7388=1.0.108 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:588us]commonEntry.cpp:1036[ngxLog] app_B9F5618=2.1.29 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:596us]commonEntry.cpp:1036[ngxLog] app_B9DAE68=1.2.109 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:608us]commonEntry.cpp:1036[ngxLog] app_B9D8C54=1.2.109 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:617us]commonEntry.cpp:1036[ngxLog] app_B9D3EF0=2.1.28 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:628us]commonEntry.cpp:1036[ngxLog] app_B9FACDC=2.1.201 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:636us]commonEntry.cpp:1036[ngxLog] app_F7361DC=2.1.28 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:644us]commonEntry.cpp:1036[ngxLog] app_B9C3560=2.1.201 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:658us]commonEntry.cpp:1036[ngxLog] app_B9B0430=2.1.28 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:668us]commonEntry.cpp:1036[ngxLog] app_E658703=0.0.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:676us]commonEntry.cpp:1036[ngxLog] app_86E18D4=3.7.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:684us]commonEntry.cpp:1036[ngxLog] app_876232C=3.5.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:692us]commonEntry.cpp:1036[ngxLog] app_86AA7B4=3.7.10 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:701us]commonEntry.cpp:1036[ngxLog] app_8618954=3.1.11 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:709us]commonEntry.cpp:1036[ngxLog] app_844E6FC=3.7.10 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:717us]commonEntry.cpp:1036[ngxLog] app_86C2DA8=310.1.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:725us]commonEntry.cpp:1036[ngxLog] app_E658700=310.3.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:735us]commonEntry.cpp:1036[ngxLog] [nvbcast_afx_rec_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:744us]commonEntry.cpp:1036[ngxLog] [nvbcast_ar_fd_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:752us]commonEntry.cpp:1036[ngxLog] [nvbcast_vfx_gs_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:761us]commonEntry.cpp:1036[ngxLog] [sl_pcl_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:769us]commonEntry.cpp:1036[ngxLog] app_E658703=2.8.12 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:777us]commonEntry.cpp:1036[ngxLog] [nvbcast_afx_bnr_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:786us]commonEntry.cpp:1036[ngxLog] [dlssg] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:840us]commonEntry.cpp:1036[ngxLog] app_86E18D4=3.7.10 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:857us]commonEntry.cpp:1036[ngxLog] [nvbcast] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:865us]commonEntry.cpp:1036[ngxLog] [dlss_override] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:880us]commonEntry.cpp:1036[ngxLog] [nvbcast_vfx_lld_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:890us]commonEntry.cpp:1036[ngxLog] [nvbcast_afx_bnrrec_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:902us]commonEntry.cpp:1036[ngxLog] [dlssd] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:916us]commonEntry.cpp:1036[ngxLog] app_86AA7B4=3.7.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:942us]commonEntry.cpp:1036[ngxLog] [nvbcast_ar_gw_v0_7] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:953us]commonEntry.cpp:1036[ngxLog] [dlisp] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:961us]commonEntry.cpp:1036[ngxLog] app_B9CF688=2.1.15 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:970us]commonEntry.cpp:1036[ngxLog] app_E99B5EC=1.2.102 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:978us]commonEntry.cpp:1036[ngxLog] app_E658703=310.0.0 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:985us]commonEntry.cpp:1036[ngxLog] app_B9D8C54=1.2.106 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:566ms:993us]commonEntry.cpp:1036[ngxLog] app_B9D2F5C=1.2.106 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:001us]commonEntry.cpp:1036[ngxLog] app_B9DF510=1.3.101 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:009us]commonEntry.cpp:1036[ngxLog] app_B9DAE68=1.2.106 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:017us]commonEntry.cpp:1036[ngxLog] [sl_reflex_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:036us]commonEntry.cpp:1036[ngxLog] [sl_common_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:053us]commonEntry.cpp:1036[ngxLog] [sl_dlss_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:071us]commonEntry.cpp:1036[ngxLog] [sl_dlss_g_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:085us]commonEntry.cpp:1036[ngxLog] [sl_dlss_d_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:102us]commonEntry.cpp:1036[ngxLog] [deepdvc] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:117us]commonEntry.cpp:1036[ngxLog] app_86E18D4=1.0.1 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:151us]commonEntry.cpp:1036[ngxLog] app_86AA7B4=1.0.1 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:163us]commonEntry.cpp:1036[ngxLog] [sl_sdk_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:177us]commonEntry.cpp:1036[ngxLog] [sl_deepdvc_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:192us]commonEntry.cpp:1036[ngxLog] [sl_nis_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:211us]commonEntry.cpp:1036[ngxLog] [sl_nvperf_0] [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:226us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 86aa7b4 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:239us]commonEntry.cpp:1036[ngxLog] project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:249us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 8618954 [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:260us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId b9b05cc [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:269us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 876232c [2025.11.16-05.32.08:805][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:567ms:278us]commonEntry.cpp:1036[ngxLog] Found cms id 86aa7b4 for engine: ue4 engineVersion 5.6 projectID 2B64C07B4617E56557FF8A9473CBB832 [2025.11.16-05.32.08:869][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:630ms:491us]commonEntry.cpp:1036[ngxLog] NvAPI_DRS_FindApplicationByName -166 [2025.11.16-05.32.08:875][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:637ms:181us]commonEntry.cpp:1036[ngxLog] called from module 190_E658703.dll at C:\ProgramData\NVIDIA\NGX\models\sl_common_0\versions\133132\files [2025.11.16-05.32.08:875][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:637ms:307us]commonEntry.cpp:1036[ngxLog] NGXLoadFromPath failed: -1160773628 [2025.11.16-05.32.08:875][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:637ms:386us]commonEntry.cpp:1036[ngxLog] Override shared memory was opened successfully [2025.11.16-05.32.08:875][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:637ms:402us]commonEntry.cpp:1036[ngxLog] Override shared memory was mapped successfully [2025.11.16-05.32.08:939][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:700ms:993us]commonEntry.cpp:1036[ngxLog] Feature dlss failed to load (cmsid 141207476) from cache [2025.11.16-05.32.08:941][ 0]LogStreamlineAPI: [Info]: [16-02-08][streamline][info][tid:14108][0s:702ms:912us]commonEntry.cpp:1036[ngxLog] Feature dlss failed to load (cmsid 241534723) from cache [2025.11.16-05.32.09:089][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][0s:851ms:275us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature dlss snippet: D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/nvngx_dlss.dll version: 310.3.0 [2025.11.16-05.32.09:101][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][0s:862ms:927us]commonEntry.cpp:1036[ngxLog] Feature dlssg failed to load (cmsid 141207476) from cache [2025.11.16-05.32.09:101][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][0s:862ms:956us]commonEntry.cpp:1036[ngxLog] Feature dlssg failed to load (cmsid 241534723) from cache [2025.11.16-05.32.09:252][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:013ms:862us]commonEntry.cpp:1036[ngxLog] Found dlssg driver fallback snippet at C:\WINDOWS\System32\DriverStore\FileRepository\nvmdi.inf_amd64_f088ae99b5a2f5fd [2025.11.16-05.32.09:252][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:013ms:890us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature dlssg snippet: D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/nvngx_dlssg.dll version: 310.3.0 [2025.11.16-05.32.09:259][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:020ms:838us]commonEntry.cpp:1036[ngxLog] Feature deepdvc failed to load (cmsid 141207476) from cache [2025.11.16-05.32.09:259][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:020ms:855us]commonEntry.cpp:1036[ngxLog] Feature deepdvc failed to load (cmsid 241534723) from cache [2025.11.16-05.32.09:259][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:020ms:884us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature deepdvc snippet: D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/nvngx_deepdvc.dll version: 310.3.0 [2025.11.16-05.32.09:345][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:107ms:230us]commonEntry.cpp:1036[ngxLog] Feature dlssd failed to load (cmsid 141207476) from cache [2025.11.16-05.32.09:347][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:109ms:349us]commonEntry.cpp:1036[ngxLog] Feature dlssd failed to load (cmsid 241534723) from cache [2025.11.16-05.32.09:491][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:253ms:247us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature dlssd snippet: D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/nvngx_dlssd.dll version: 310.3.0 [2025.11.16-05.32.09:631][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:392ms:718us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:223] App logging hooks successfully initialized [2025.11.16-05.32.09:631][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:392ms:746us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:230] Built with APP_NAME = default_nda [2025.11.16-05.32.09:631][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:393ms:235us]commonEntry.cpp:1036[ngxLog] [NGXCubinD3D12::Init:116] Enabling texmode_raw [2025.11.16-05.32.09:631][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:393ms:287us]commonEntry.cpp:1036[ngxLog] [NGXCubinD3D12::Init:212] Driver supports Fatbins + PTX [2025.11.16-05.32.09:631][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:393ms:305us]commonEntry.cpp:1036[ngxLog] [NGXCubinKernelMap::InitCubins:45] Loading NGXCubin kernels [2025.11.16-05.32.09:631][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:393ms:469us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:396] SetGPUArch:: Gpu count = 1, luid: 0xe8e7 [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:545us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:456] m_gpuArch = 0x190 [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:558us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:467] m_smArch = 0x4 [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:853us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::genericPostInit:147] Fast UAV clear: supported [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:862us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLAA Cubins [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:868us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLSS Debug Cubins [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:872us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS Engine Cubins [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:936us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS NW Cubins [2025.11.16-05.32.09:632][ 0]LogStreamlineAPI: [Info]: [16-02-09][streamline][info][tid:14108][1s:394ms:951us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS NW E5M3_SKIP Cubins [2025.11.16-05.32.10:104][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][1s:865ms:586us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:230] Built with APP_NAME = app_transformer_dlssd [2025.11.16-05.32.10:108][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][1s:869ms:395us]commonEntry.cpp:1036[ngxLog] [DldnCubinKernelMap::InitCubins:129] Setting DLDN Engine Pre / Post Cubins [2025.11.16-05.32.10:108][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][1s:869ms:409us]commonEntry.cpp:1036[ngxLog] [DldnCubinKernelMap::InitCubins:162] Setting DLDN Engine Pre / Post Cubins [2025.11.16-05.32.10:118][ 0]LogStreamlineAPI: Warning: [Warn]: [16-02-10][streamline][warn][tid:14108][1s:880ms:045us]commonEntry.cpp:1410[slOnPluginStartup] Valid application id is required in production builds - allowing for now but please fix this [2025.11.16-05.32.10:118][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][1s:880ms:077us]commonEntry.cpp:1466[slOnPluginStartup] At least one plugin requires DRS, trying to initialize ... [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:878us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.common:slSetData:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:910us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.common:slGetData:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:921us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.common:slAllocateResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:927us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.common:slFreeResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:931us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.common:slEvaluateFeature:0x7ffb8a5dfde0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:937us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.common:slSetTag:0x7ffb8a5decb0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:942us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.common:slSetTagForFrame:0x7ffb8a5dee20 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:946us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.common:slSetConsts:0x7ffb8a5dfb90 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:950us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkPresent:before - skipped [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:954us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkAfterPresent:after - skipped [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:958us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkCmdBindPipeline:after - skipped [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:964us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkCmdBindDescriptorSets:after - skipped [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:968us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkBeginCommandBuffer:after - skipped [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:972us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookResizeSwapChainPre:before - OK [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:977us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookPresent:before - OK [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:982us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookAfterPresent:after - OK [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:002ms:987us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookPresent1:before - OK [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:041us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.pcl:slSetData:0x7ffb95138a80 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:073us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.pcl:slGetData:0x7ffb95138a90 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:089us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.pcl:slAllocateResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:095us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.pcl:slFreeResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:104us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.pcl:slEvaluateFeature:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:110us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.pcl:slSetTag:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:116us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.pcl:slSetTagForFrame:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:121us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.pcl:slSetConsts:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:125us]pluginManager.cpp:1134[processPluginHooks] Plugin 'sl.pcl' has no registered hooks [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:130us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.reflex:slSetData:0x7ffb8d478d70 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:135us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.reflex:slGetData:0x7ffb8d479660 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:139us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.reflex:slAllocateResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:143us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.reflex:slFreeResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:148us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.reflex:slEvaluateFeature:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:154us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.reflex:slSetTag:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:158us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.reflex:slSetTagForFrame:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:162us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.reflex:slSetConsts:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:167us]pluginManager.cpp:1134[processPluginHooks] Plugin 'sl.reflex' has no registered hooks [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:171us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.deepdvc:slSetData:0x7ffb8d548870 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:175us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.deepdvc:slGetData:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:179us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.deepdvc:slAllocateResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:183us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.deepdvc:slFreeResources:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:189us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.deepdvc:slEvaluateFeature:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:193us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.deepdvc:slSetTag:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:198us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.deepdvc:slSetTagForFrame:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:204us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.deepdvc:slSetConsts:0x0 [2025.11.16-05.32.10:241][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:209us]pluginManager.cpp:1134[processPluginHooks] Plugin 'sl.deepdvc' has no registered hooks [2025.11.16-05.32.10:242][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:944us]dlss_gEntry.cpp:1518[slOnPluginStartup] Multi-frame not supported, max generated frames 1 (SL Plugin supports 3, NGX feature supports 1) [2025.11.16-05.32.10:242][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:968us]commonEntry.cpp:1036[ngxLog] error: failed to load NGXCore: 126 (D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\_nvngx.dll) [2025.11.16-05.32.10:242][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:003ms:982us]commonEntry.cpp:1036[ngxLog] error: failed to load NGXCore: 126 (D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\nvngx.dll) [2025.11.16-05.32.10:242][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:004ms:296us]commonEntry.cpp:1036[ngxLog] error: no matching adapter found [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:557us]commonEntry.cpp:1036[ngxLog] Loading C:\WINDOWS\System32\DriverStore\FileRepository\nvmdi.inf_amd64_f088ae99b5a2f5fd\_nvngx.dll succeeded [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: Warning: [Warn]: [16-02-10][streamline][warn][tid:14108][2s:010ms:662us]dlss_gEntry.cpp:1557[slOnPluginStartup] Feature 'kFeatureDLSS' is not sharing required data [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:866us]dlfg.cpp:896[initFlipFunctions] pfnNvAPI_SetFlipConfig API available [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:919us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.dlss_g:slSetData:0x7ffb84945570 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:930us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.dlss_g:slGetData:0x7ffb84944db0 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:935us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.dlss_g:slAllocateResources:0x7ffb84945b40 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:939us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.dlss_g:slFreeResources:0x7ffb84945ce0 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:944us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.dlss_g:slEvaluateFeature:0x0 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:949us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.dlss_g:slSetTag:0x0 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:954us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.dlss_g:slSetTagForFrame:0x0 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:959us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.dlss_g:slSetConsts:0x0 [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:964us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkPresent:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:969us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkCreateSwapchainKHR:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:974us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkDestroySwapchainKHR:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:979us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkGetSwapchainImagesKHR:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:984us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkAcquireNextImageKHR:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:988us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkDeviceWaitIdle:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:992us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkCreateWin32SurfaceKHR:after - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:010ms:997us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkDestroySurfaceKHR:before - skipped [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:001us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateSwapChainForCoreWindow:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:006us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateSwapChainForHwnd:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:010us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateSwapChain:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Leave [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:019us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookPresent:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:024us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookPresent1:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: PluginBaseDir ../../../RogueCore/Plugins/Nvidia/StreamlineCore [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: SLBinariesDir ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/ [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Enter [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Leave [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:028us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookGetDescPost:after - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Enter [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:032us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResizeSwapChainPre:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:037us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResizeSwapChainPost:after - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:041us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResize1SwapChainPre:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:046us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResize1SwapChainPost:after - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:050us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookGetBuffer:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:055us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookGetCurrentBackBufferIndex:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:060us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookSetFullscreenStatePre:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:064us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookSetFullscreenStatePost:after - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:068us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookSwapChainDestroyed:before - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:011ms:072us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateCommandQueue:after - OK [2025.11.16-05.32.10:250][ 0]LogStreamlineD3D12RHI: Registering FStreamlineD3D12DXGISwapchainProvider as IDXGISwapchainProvider, due to a supported feature needing a swap chain provider: (kFeatureDLSS_G, Result::eOk),(kFeatureLatewarp, Result::eErrorFeatureMissing),(kFeatureImGUI, Result::eErrorFeatureMissing). This can be overriden with -sl{no}swapchainprovider [2025.11.16-05.32.10:250][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Leave [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: Streamline supported by the NVIDIA D3D12 RHI in the StreamlineD3D12RHI module at runtime [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Enter [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: RequestedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)) [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: LoadedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)) [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: SupportedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)) [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Leave [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: PlatformCreateStreamlineRHI Leave [2025.11.16-05.32.10:250][ 0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Leave [2025.11.16-05.32.10:262][ 0]LogD3D12RHI: Found a custom swapchain provider: 'FStreamlineD3D12DXGISwapchainProvider'. [2025.11.16-05.32.10:262][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:024ms:594us]sl.cpp:691[operator ()] Upgrading IDXGIFactory to use SL proxy ... [2025.11.16-05.32.10:318][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:14108][2s:080ms:248us]dlfgSwapchain.cpp:332[linkSwapchainToCmdQueue] Display refresh rate 60.00 [2025.11.16-05.32.10:366][ 0]LogMoviePlayer: Initializing movie player [2025.11.16-05.32.10:370][ 0]LogStreamlineAPI: [Info]: [16-02-10][streamline][info][tid:2300][2s:132ms:446us]dlfgPresent.cpp:888[presentCommon] Present() is called on the thread 2300. [2025.11.16-05.32.10:416][ 0]LogShaderLibrary: Display: Using ../../../RogueCore/Content/ShaderArchive-RogueCore-PCD3D_SM6-PCD3D_SM6.ushaderbytecode for material shader code. Total 17097 unique shaders. [2025.11.16-05.32.10:416][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library RogueCore [2025.11.16-05.32.10:416][ 0]LogShaderLibrary: Display: Logical shader library 'RogueCore' has been created as a monolithic library [2025.11.16-05.32.10:416][ 0]LogRHI: FPipelineCacheFile Header Game Version: 0 [2025.11.16-05.32.10:416][ 0]LogRHI: FPipelineCacheFile Header Engine Data Version: 29 [2025.11.16-05.32.10:416][ 0]LogRHI: FPipelineCacheFile Header TOC Offset: 61201 [2025.11.16-05.32.10:416][ 0]LogRHI: FPipelineCacheFile File Size: 351714 Bytes [2025.11.16-05.32.10:417][ 0]LogRHI: Opened FPipelineCacheFile: ../../../RogueCore/Content/PipelineCaches/Windows/RogueCore_PCD3D_SM6.stable.upipelinecache (GUID: 86D4DE714903CEF9944C3091FA2B523B) with 2548 entries. [2025.11.16-05.32.10:417][ 0]LogRHI: Display: FPipelineCacheFile[RogueCore] opened RogueCore, filename RogueCore, guid 86D4DE714903CEF9944C3091FA2B523B. [2025.11.16-05.32.10:417][ 0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - RogueCore begining compile. [2025.11.16-05.32.10:417][ 0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'RogueCore' and enqueued 2548 tasks for precompile. (cache contains 2548, 2548 eligible, 0 had missing shaders. 0 already compiled). BatchSize 50 and BatchTime 16.000000. [2025.11.16-05.32.10:417][ 0]LogRHI: Base name for record PSOs is C:/Users/alexp/AppData/Local/RogueCore/Saved/CollectedPSOs/UE5-CL-0-RogueCore_PCD3D_SM6_5B6EBE6142842DC5F4CEE388700286FF.rec.upipelinecache [2025.11.16-05.32.10:417][ 0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() Begin [2025.11.16-05.32.10:417][ 0]LogRHI: User cache GC is disabled [2025.11.16-05.32.10:417][ 0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() End [2025.11.16-05.32.10:418][ 0]LogRHI: FPipelineCacheFile Header Game Version: 0 [2025.11.16-05.32.10:418][ 0]LogRHI: FPipelineCacheFile Header Engine Data Version: 29 [2025.11.16-05.32.10:418][ 0]LogRHI: FPipelineCacheFile Header TOC Offset: 355099 [2025.11.16-05.32.10:418][ 0]LogRHI: FPipelineCacheFile File Size: 493470 Bytes [2025.11.16-05.32.10:418][ 0]LogRHI: Opened FPipelineCacheFile: C:/Users/alexp/AppData/Local/RogueCore/Saved/RogueCore_PCD3D_SM6.upipelinecache (GUID: E140B0A34596EA89DA59ABB3AE377DA7) with 1055 entries. [2025.11.16-05.32.10:418][ 0]LogRHI: Display: FPipelineCacheFile User cache [key:RogueCore_usr] opened 'RogueCore'=1, filename RogueCore, guid E140B0A34596EA89DA59ABB3AE377DA7. [2025.11.16-05.32.10:418][ 0]LogShaderLibrary: Display: Tried to open again shader library 'RogueCore', but could not find new components for it (existing components: 1). [2025.11.16-05.32.10:419][ 0]LogInit: Overriding language with engine language configuration option (en). [2025.11.16-05.32.10:419][ 0]LogInit: Overriding language with engine locale configuration option (en). [2025.11.16-05.32.10:419][ 0]LogAssetRegistry: FAssetRegistry took 0.0001 seconds to start up [2025.11.16-05.32.10:426][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/PatchNotes/en/PatchNotes.locres' could not be opened for reading! [2025.11.16-05.32.10:509][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.32.10:511][ 0]LogDeviceProfileManager: Active device profile: [00007FF4BDC91A90][00000285FFEA0010 66] Windows [2025.11.16-05.32.10:585][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' [2025.11.16-05.32.10:660][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.10:666][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2025.11.16-05.32.10:672][ 0]LogPackageLocalizationCache: Processed 77 localized package path(s) for 1 prioritized culture(s) in 0.000077 seconds [2025.11.16-05.32.10:677][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s [2025.11.16-05.32.10:677][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] [2025.11.16-05.32.10:680][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2025.11.16-05.32.10:687][ 0]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: NetActorFactory name: NetActorFactory id: 0 [2025.11.16-05.32.10:687][ 0]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: NetSubObjectFactory name: NetSubObjectFactory id: 1 [2025.11.16-05.32.10:687][ 0]LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 [2025.11.16-05.32.10:698][ 0]DiscordSDK: Discord DLL Loaded successfully [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: Available graphics and compute adapters: [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: Selecting NPU adapter: NVIDIA GeForce RTX 4060 [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: MakeRuntimeORTDml: [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: DirectML: yes [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: RHI D3D12: yes [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: D3D12: yes [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: NPU: yes [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: Interface availability: [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: GPU: yes [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: RDG: yes [2025.11.16-05.32.10:710][ 0]LogNNERuntimeORT: NPU: yes [2025.11.16-05.32.10:711][ 0]LogNNERuntimeORT: Available graphics and compute adapters: [2025.11.16-05.32.10:711][ 0]LogNNERuntimeORT: Selecting NPU adapter: NVIDIA GeForce RTX 4060 [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'BitDepth' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'HPFCutoffFrequency' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LowRateFrequency' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LPFCutoffFrequency' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pan' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pitch' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'SampleRate' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'TimeOfDay' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Volume' [2025.11.16-05.32.10:712][ 0]LogAudioModulation: Registering Modulation MetaSound Nodes... [2025.11.16-05.32.10:721][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... [2025.11.16-05.32.10:721][ 0]LogMetaSound: MetaSound Engine Initialized [2025.11.16-05.32.10:721][ 0]LogAudioModulation: Audio Modulation Initialized [2025.11.16-05.32.10:723][ 0]LogSockets: SteamSockets: Initializing Network Relay [2025.11.16-05.32.10:730][ 0]LogUObjectArray: 44161 objects as part of root set at end of initial load. [2025.11.16-05.32.10:730][ 0]LogUObjectArray: 53 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set. [2025.11.16-05.32.10:730][ 0]LogUObjectArray: CloseDisregardForGC: 44161/44161 objects in disregard for GC pool [2025.11.16-05.32.10:743][ 0]LogEngine: Initializing Engine... [2025.11.16-05.32.10:798][ 0]LogNetVersion: Set ProjectVersion to 0.4.127286.0. Version Checksum will be recalculated on next use. [2025.11.16-05.32.10:798][ 0]LogInit: Texture streaming: Enabled [2025.11.16-05.32.10:798][ 0]LogAudio: Display: Initializing Audio Device Manager... [2025.11.16-05.32.10:798][ 0]LogAudio: Display: Loading Default Audio Settings Objects... [2025.11.16-05.32.10:798][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). [2025.11.16-05.32.10:798][ 0]LogAudio: Display: Audio Device Manager Initialized [2025.11.16-05.32.10:798][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Sample Rate: 48000 [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Max Channels (voices): 64 [2025.11.16-05.32.10:798][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 [2025.11.16-05.32.10:798][ 0]LogAudio: Display: AudioDevice MaxSources: 64 [2025.11.16-05.32.10:799][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). [2025.11.16-05.32.10:799][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). [2025.11.16-05.32.10:799][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). [2025.11.16-05.32.10:799][ 0]LogAudio: Display: Audio Modulation Plugin: DefaultModulationPlugin [2025.11.16-05.32.10:811][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' [2025.11.16-05.32.10:851][ 0]LogAudioMixer: Display: Using Audio Hardware Device Speakers (Logitech G733 Gaming Headset) [2025.11.16-05.32.10:851][ 0]LogAudioMixer: Display: Initializing Sound Submixes... [2025.11.16-05.32.10:851][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmix' [2025.11.16-05.32.10:851][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverb' [2025.11.16-05.32.10:855][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 [2025.11.16-05.32.10:855][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=8, Samples=8192, InstanceID=1 [2025.11.16-05.32.10:856][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 [2025.11.16-05.32.10:856][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 [2025.11.16-05.32.10:856][ 0]LogInit: FAudioDevice initialized with ID 1. [2025.11.16-05.32.10:856][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 [2025.11.16-05.32.11:307][ 0]LogStreamlineAPI: [Info]: [16-02-11][streamline][info][tid:2300][3s:068ms:886us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.16-05.32.11:818][ 0]FSDLog_Gameflow: UOnlineSessionSubSystem::PostInit onlineSub [2025.11.16-05.32.11:818][ 0]FSDLog_Gameflow: UOnlineSessionSubSystem::PostInit SessionInt.IsValid [2025.11.16-05.32.11:828][ 0]DiscordSDK: Discord Initialization Success! [2025.11.16-05.32.11:833][ 0]DiscordWrap: FSlateApplication initialized [2025.11.16-05.32.11:834][ 0]DiscordWrap: inputProcessor created [2025.11.16-05.32.11:834][ 0]DiscordWrap: Discord: Server Invite URL https://discordapp.com/api/invites/DRG?with_counts=true [2025.11.16-05.32.11:834][ 0]FSDLog_Gameflow: UFSDGameInstance::Init. [2025.11.16-05.32.11:834][ 0]FSDLog_Gameflow: UFSDGameInstance::Init Register delegate for ticker callback [2025.11.16-05.32.11:835][ 0]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.16-05.32.11:845][ 0]LogStreaming: Warning: LoadPackage: SkipPackage: /Engine/Transient (0xDBE82931556C7DEA) - The package to load does not exist on disk or in the loader [2025.11.16-05.32.11:845][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object /Engine/Transient.GameEngine_2147482583:BP_GameInstance_C_2147482535._MENU_Crafting_C_2147181682.WidgetTree_2147181681.MasteryBar' [2025.11.16-05.32.11:875][ 0]FSDLog_Gameflow: UFSDSaveGame::LoadFromDisk [2025.11.16-05.32.11:909][ 0]LogInit: OS: Windows 11 (25H2) [10.0.26200.7171] (), CPU: Intel(R) Core(TM) i7-14700F, GPU: NVIDIA GeForce RTX 4060 [2025.11.16-05.32.11:909][ 0]FSDLog_Gameflow: CmdLine: -disablemodding [2025.11.16-05.32.11:909][ 0]LogOnline: UFSDGameInstance::PostInit. [2025.11.16-05.32.11:909][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit onlineSub [2025.11.16-05.32.11:909][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit SessionInt.IsValid [2025.11.16-05.32.11:909][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit post online sub system [2025.11.16-05.32.11:909][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit Done [2025.11.16-05.32.11:909][ 0]FSDLog_Gameflow: UFSDGameInstance loading always loaded worlds... [2025.11.16-05.32.11:925][ 0]LogRHI: Warning: FShaderPipelineCache RogueCore completed 2548 tasks in 0.04s (1.47s wall time since intial open). [2025.11.16-05.32.12:070][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/Controller/PadSpeakerSubMixParent.PadSpeakerSubMixParent. [2025.11.16-05.32.12:070][ 0]LogAudioMixer: Display: Registering submix EndpointSubmix /Game/Audio/Controller/PadSpeakerEndpoint.PadSpeakerEndpoint. [2025.11.16-05.32.12:070][ 0]LogAudioEndpoints: Display: No endpoint implementation for Pad Speaker Output found for this platform. Endpoint Submixes set to this type will not do anything. [2025.11.16-05.32.12:070][ 0]LogAudioMixer: Display: Registering submix EndpointSubmix /Game/Audio/Controller/PadSpeakerEndpoint.PadSpeakerEndpoint. [2025.11.16-05.32.12:070][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/Controller/VibrationSubMixParent.VibrationSubMixParent. [2025.11.16-05.32.12:213][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.16-05.32.12:213][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_1 [2025.11.16-05.32.12:213][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.32.12:246][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.61ms [2025.11.16-05.32.12:248][ 0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - RogueCore_usr begining compile. [2025.11.16-05.32.12:249][ 0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'RogueCore_usr' and enqueued 1055 tasks for precompile. (cache contains 1055, 1055 eligible, 0 had missing shaders. 0 already compiled). BatchSize 88 and BatchTime 16.000000. [2025.11.16-05.32.12:529][ 0]LogLoad: Game class is 'GameModeBase' [2025.11.16-05.32.12:532][ 0]LogWorld: Bringing World /Game/Maps/UILevels/LVL_CharacterSelection.LVL_CharacterSelection up for play (max tick rate 0) at 2025.11.16-16.02.12 [2025.11.16-05.32.12:532][ 0]LogWorld: Bringing up level for play took: 0.003280 [2025.11.16-05.32.12:533][ 0]LogLoad: Took 0.319167 seconds to LoadMap(/Game/Maps/UILevels/LVL_CharacterSelection) [2025.11.16-05.32.12:533][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk) [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk) [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: osVersion detected: 10.0.26200, required: 10.0.0 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: driverVersion detected: 581.57.0, required: 512.15.0 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: requiredTags (0): {} [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDLSS_G) -> (0, Result::eOk) [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureDLSS_G) versionSL = 2.8.12, versionNGX = 310.3.0 -> (0, Result::eOk) [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureDLSS_G) -> (0, Result::eOk) [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: FeatureRequirements kFeatureDLSS_G: flags FeatureRequirementFlags::eHardwareSchedulingRequired|FeatureRequirementFlags::eVSyncOffRequired|FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: maxNumCPUThreads : 2 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: maxNumViewports : 1 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: osVersion detected: 10.0.26200, required: 10.0.19041 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: driverVersion detected: 581.57.0, required: 512.15.0 [2025.11.16-05.32.12:533][ 0]LogStreamlineRHI: requiredTags (4): {kBufferTypeDepth (0), kBufferTypeMotionVectors (1), kBufferTypeHUDLessColor (2), kBufferTypeUIColorAndAlpha (23)} [2025.11.16-05.32.12:533][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.16-05.32.12:533][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.16-05.32.12:533][ 0]LogStreamlineAPI: Warning: [Warn]: [16-02-12][streamline][warn][tid:14108][4s:295ms:197us]dlss_gEntry.cpp:1048[slGetData] slDLSSGGetState must be synchronized with the present thread, if not already, especially if using DLSS-G inputs-processing completion fence and value! [2025.11.16-05.32.12:534][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.16-05.32.12:534][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_2 [2025.11.16-05.32.12:534][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.32.12:564][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.69ms [2025.11.16-05.32.12:664][ 0]LogLoad: Game class is 'GameMode' [2025.11.16-05.32.12:665][ 0]LogPhysics: Warning: FConstraintInstance::GetRefFrame : Contained scale. [2025.11.16-05.32.12:665][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: <NoName> [2025.11.16-05.32.12:665][ 0]LogPhysics: Warning: FConstraintInstance::GetRefFrame : Contained scale. [2025.11.16-05.32.12:666][ 0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun.LVL_Loading_StartRun up for play (max tick rate 0) at 2025.11.16-16.02.12 [2025.11.16-05.32.12:666][ 0]LogWorld: Bringing up level for play took: 0.001513 [2025.11.16-05.32.12:666][ 0]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.16-05.32.12:666][ 0]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.16-05.32.12:666][ 0]LogLoad: Took 0.132014 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun) [2025.11.16-05.32.12:666][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.16-05.32.12:666][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.16-05.32.12:666][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.16-05.32.12:668][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.16-05.32.12:668][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_3 [2025.11.16-05.32.12:668][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.32.12:690][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms [2025.11.16-05.32.12:757][ 0]LogLoad: Game class is 'GameMode' [2025.11.16-05.32.12:758][ 0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator.LVL_Loading_Elevator up for play (max tick rate 0) at 2025.11.16-16.02.12 [2025.11.16-05.32.12:758][ 0]LogWorld: Bringing up level for play took: 0.001060 [2025.11.16-05.32.12:758][ 0]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.16-05.32.12:758][ 0]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.16-05.32.12:758][ 0]LogLoad: Took 0.090004 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator) [2025.11.16-05.32.12:758][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.16-05.32.12:758][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.16-05.32.12:758][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.16-05.32.12:760][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.16-05.32.12:760][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_4 [2025.11.16-05.32.12:760][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.32.12:778][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms [2025.11.16-05.32.12:997][ 0]LogLoad: Game class is 'GameModeBase' [2025.11.16-05.32.12:997][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/UILevels/RogueCore/EndScreen/SLVL_EndScreen_01) is flushing async loading [2025.11.16-05.32.13:068][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/UILevels/RogueCore/EndScreen/SLVL_EndScreen_Lights) is flushing async loading [2025.11.16-05.32.13:139][ 0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen.LVL_EndScreen up for play (max tick rate 0) at 2025.11.16-16.02.13 [2025.11.16-05.32.13:139][ 0]LogWorld: Bringing up level for play took: 0.000989 [2025.11.16-05.32.13:141][ 0]LogLoad: Took 0.381171 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen) [2025.11.16-05.32.13:141][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.16-05.32.13:141][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.16-05.32.13:141][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.16-05.32.13:141][ 0]FSDLog_Gameflow: UFSDGameInstance loading always loaded worlds done. [2025.11.16-05.32.13:141][ 0]FSDLog_Gameflow: UFSDGameInstance LoadDefaultAssetsBlocking... [2025.11.16-05.32.13:688][ 0]FSDLog_Loading: LoadAssetsBlocking call was empty and there was nothing to load [2025.11.16-05.32.13:941][ 0]FSDLog_Gameflow: UFSDGameInstance LoadDefaultAssetsBlocking DONE [2025.11.16-05.32.13:941][ 0]FSDLog_Gameflow: UFSDGameInstance wait for PSO compilation... [2025.11.16-05.32.16:943][ 0]FSDLog_Gameflow: UFSDGameInstance PSO compilation took too long, continuing (967 remaining) [2025.11.16-05.32.16:943][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. [2025.11.16-05.32.16:944][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.16-05.32.16:944][ 0]LogInit: Display: Game Engine Initialized. [2025.11.16-05.32.16:944][ 0]LogNNEDenoiser: Ray Tracing is not enabled, therefore NNEDenoiser is not registered! [2025.11.16-05.32.16:950][ 0]LogDLSS: FDLSSModule::StartupModule Enter [2025.11.16-05.32.16:950][ 0]LogDLSS: PluginBaseDir ../../../RogueCore/Plugins/Nvidia/DLSS [2025.11.16-05.32.16:950][ 0]LogDLSS: NGXBinariesDir ../../../RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/ [2025.11.16-05.32.16:950][ 0]LogDLSS: GDynamicRHIName NVIDIA D3D12 [2025.11.16-05.32.16:950][ 0]LogDLSS: Plugin settings: NGXAppId = 0 [2025.11.16-05.32.16:950][ 0]LogDLSS: NGX Application ID not specified, using the Project ID by default. [2025.11.16-05.32.16:950][ 0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Enter [2025.11.16-05.32.16:950][ 0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Leave [2025.11.16-05.32.16:950][ 0]LogDLSSNGXRHI: Searching for custom and generic DLSS binaries [2025.11.16-05.32.16:950][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-SR binary nvngx_dlss.dll not found in search path D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.16-05.32.16:950][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR binary nvngx_dlssd.dll not found in search path D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.16-05.32.16:950][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-SR binary nvngx_dlss.dll not found in search path D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.16-05.32.16:951][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR binary nvngx_dlssd.dll not found in search path D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.16-05.32.16:951][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-SR binary nvngx_dlss.dll found in search path D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Plugins\Nvidia\DLSS\Binaries\ThirdParty\Win64\ [2025.11.16-05.32.16:951][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR binary nvngx_dlssd.dll found in search path D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Plugins\Nvidia\DLSS\Binaries\ThirdParty\Win64\ [2025.11.16-05.32.16:951][ 0]LogDLSSNGXRHI: DLSS model OTA update enabled [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:151us]commonEntry.cpp:1036[ngxLog] using path for models: C:\ProgramData/NVIDIA/NGX/models/ [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:228us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 86aa7b4 [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:237us]commonEntry.cpp:1036[ngxLog] project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50 [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:243us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 8618954 [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:248us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId b9b05cc [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:253us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 876232c [2025.11.16-05.32.16:959][ 0]LogStreamlineAPI: [Info]: [16-02-16][streamline][info][tid:14108][8s:721ms:260us]commonEntry.cpp:1036[ngxLog] Found cms id 86aa7b4 for engine: ue4 engineVersion 5.6 projectID 2B64C07B4617E56557FF8A9473CBB832 [2025.11.16-05.32.16:959][ 0]LogDLSSNGX: [SDK]: [2025-11-16 16:02:16] [NGXSafeInitializeLog:141] App logging hooks successfully initialized [2025.11.16-05.32.16:959][ 0]LogDLSSNGX: [SDK]: [2025-11-16 16:02:16] [NGXLoadLibrary:287] error: failed to load NGXCore: 126 (D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\_nvngx.dll) [2025.11.16-05.32.16:959][ 0]LogDLSSNGX: [SDK]: [2025-11-16 16:02:16] [NGXLoadLibrary:287] error: failed to load NGXCore: 126 (D:\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\nvngx.dll) [2025.11.16-05.32.16:959][ 0]LogDLSSNGX: [SDK]: [2025-11-16 16:02:16] [NGXGetPathUsingQAI:139] Path to driverStore found using QAI: C:\WINDOWS\System32\DriverStore\FileRepository\nvmdi.inf_amd64_f088ae99b5a2f5fd [2025.11.16-05.32.16:965][ 0]LogDLSSNGX: [SDK]: [2025-11-16 16:02:16] [NGXLoadCoreLibrary:240] Loading C:\WINDOWS\System32\DriverStore\FileRepository\nvmdi.inf_amd64_f088ae99b5a2f5fd\_nvngx.dll succeeded [2025.11.16-05.32.16:965][ 0]LogDLSSNGX: [Core]: [2025-11-16 16:02:16] [NGXSafeInitializeLog:133] App logging hooks successfully initialized [2025.11.16-05.32.16:974][ 0]LogDLSSNGX: [DLSS]: [2025-11-16 16:02:16] [tid:14108][NGXInitLog:223] App logging hooks successfully initialized [2025.11.16-05.32.16:974][ 0]LogDLSSNGX: [DLSS]: [2025-11-16 16:02:16] [tid:14108][NGXInitLog:230] Built with APP_NAME = default_nda [2025.11.16-05.32.16:979][ 0]LogDLSSNGX: [DLSS]: [2025-11-16 16:02:16] [tid:14108][NGXInitLog:223] App logging hooks successfully initialized [2025.11.16-05.32.16:979][ 0]LogDLSSNGX: [DLSS]: [2025-11-16 16:02:16] [tid:14108][NGXInitLog:230] Built with APP_NAME = app_transformer_dlssd [2025.11.16-05.32.16:980][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init_with_ProjectID(ProjectID = 2B64C07B4617E56557FF8A9473CBB832, EngineVersion=5.6, APIVersion = 0x15, Device=00000285ACB445E0) -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init (Log C:/Users/alexp/AppData/Local/RogueCore/Saved/Logs/) -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_GetCapabilityParameters -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 470 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 0 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 537 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 2 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS is supported by the currently installed driver. Minimum driver version was reported as: 470.0 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR is supported by the currently installed driver. Minimum driver version was reported as: 537.2 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_EParameter_SuperSampling_Available -> (1 NVSDK_NGX_Result_Success), DlssAvailable = 1 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_Available -> (1 NVSDK_NGX_Result_Success), DlssRRAvailable = 1 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSS: QualityMode -2: bSupported = 1, ResolutionFraction = 0.3330. MinResolutionFraction=0.3330, MaxResolutionFraction 0.3330 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSS: QualityMode -1: bSupported = 1, ResolutionFraction = 0.5000. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSS: QualityMode 0: bSupported = 1, ResolutionFraction = 0.5800. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSS: QualityMode 1: bSupported = 1, ResolutionFraction = 0.6670. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSS: QualityMode 2: bSupported = 0, ResolutionFraction = 0.0000. MinResolutionFraction=0.0000, MaxResolutionFraction 0.0000 [2025.11.16-05.32.16:980][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.16-05.32.16:980][ 0]LogDLSS: QualityMode 3: bSupported = 1, ResolutionFraction = 1.0000. MinResolutionFraction=0.9900, MaxResolutionFraction 1.0000 [2025.11.16-05.32.16:980][ 0]LogDLSS: NumRuntimeQualityModes=5, MinDynamicResolutionFraction=0.5000, MaxDynamicResolutionFraction=1.0000 [2025.11.16-05.32.16:980][ 0]LogDLSS: NVIDIA NGX DLSS supported DLSS-SR=1 DLSS-RR=1 [2025.11.16-05.32.16:980][ 0]LogDLSS: FDLSSDenoiserWrapper(Inactive) wrapping ScreenSpaceDenoiser [2025.11.16-05.32.16:980][ 0]LogDLSS: FDLSSModule::StartupModule Leave [2025.11.16-05.32.16:980][ 0]LogNIS: FNISCoreModule::StartupModule Enter [2025.11.16-05.32.16:980][ 0]LogNIS: FNISCoreModule::StartupModule Leave [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineCoreModule::StartupModule Enter [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineViewExtension::FStreamlineViewExtension Enter GameThread (tid=14108) [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineViewExtension::FStreamlineViewExtension Leave GameThread (tid=14108) [2025.11.16-05.32.16:980][ 0]LogStreamline: RegisterStreamlineReflexHooks Enter [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: osVersion detected: 10.0.26200, required: 10.0.0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: driverVersion detected: 581.57.0, required: 512.15.0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: requiredTags (0): {} [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::lowLatencyAvailable=1 [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::latencyReportAvailable=1 [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineLatencyMarkers::Initialize sl::ReflexState::flashIndicatorDriverControlled=1 [2025.11.16-05.32.16:980][ 0]LogStreamline: RegisterStreamlineReflexHooks Leave [2025.11.16-05.32.16:980][ 0]LogStreamline: RegisterStreamlineDLSSGHooks Enter [2025.11.16-05.32.16:980][ 0]LogStreamline: RegisterStreamlineDLSSGHooks Leave [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureImGUI) -> (31, Result::eErrorFeatureMissing) [2025.11.16-05.32.16:980][ 0]LogStreamline: NVIDIA Streamline supported 1 [2025.11.16-05.32.16:980][ 0]LogStreamline: FStreamlineCoreModule::StartupModule Leave [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDeepDVC) -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureDeepDVC) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureDeepDVC) -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: FeatureRequirements kFeatureDeepDVC: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: osVersion detected: 10.0.26200, required: 10.0.0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: driverVersion detected: 581.57.0, required: 512.15.0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: requiredTags (1): {kBufferTypeScalingOutputColor (4)} [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeaturePCL) -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeaturePCL) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeaturePCL) -> (0, Result::eOk) [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: FeatureRequirements kFeaturePCL: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: osVersion detected: 10.0.26200, required: 10.0.0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: driverVersion detected: 581.57.0, required: 512.15.0 [2025.11.16-05.32.16:980][ 0]LogStreamlineRHI: requiredTags (0): {} [2025.11.16-05.32.16:981][ 0]LogInit: Display: Starting Game. [2025.11.16-05.32.16:981][ 0]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/LVL_StartingScreen?Name=Player" [2025.11.16-05.32.16:981][ 0]LogNet: Browse: /Game/Maps/LVL_StartingScreen?Name=Player [2025.11.16-05.32.16:981][ 0]LogLoad: LoadMap: /Game/Maps/LVL_StartingScreen?Name=Player [2025.11.16-05.32.16:981][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_0 [2025.11.16-05.32.16:981][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.32.16:983][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.16-05.32.16:986][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms [2025.11.16-05.32.17:047][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_StartingScreen'. [2025.11.16-05.32.17:048][ 0]LogLoad: Game class is 'BP_StartMenu_GameMode_C' [2025.11.16-05.32.17:048][ 0]LogWorld: Bringing World /Game/Maps/LVL_StartingScreen.LVL_StartingScreen up for play (max tick rate 0) at 2025.11.16-16.02.17 [2025.11.16-05.32.17:048][ 0]LogWorld: Bringing up level for play took: 0.000302 [2025.11.16-05.32.17:050][ 0]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.16-05.32.17:050][ 0]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.32.17:050][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.16-05.32.17:050][ 0]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.16-05.32.17:050][ 0]FSDLog_Gameflow: FADING (0.000000): Bp_StartMenu_PlayerController_C_2147481695: FadeScreenFromBlack [2025.11.16-05.32.17:050][ 0]FSDLog_Gameflow: 0.0 Bp_StartMenu_PlayerController_C_2147481695: FadeScreenFromBlack [2025.11.16-05.32.17:050][ 0]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.16-05.32.17:068][ 0]LogSettings: Getting screensettings to save [2025.11.16-05.32.17:068][ 0]LogSettings: Saving window fullscreen to save file [2025.11.16-05.32.17:073][ 0]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0' [2025.11.16-05.32.17:073][ 0]Bp_StartMenu_PlayerController: [Bp_StartMenu_PlayerController_C_2147481695] StartingScreen - No Invite (yet) [2025.11.16-05.32.17:074][ 0]LogLoad: Took 0.092995 seconds to LoadMap(/Game/Maps/LVL_StartingScreen) [2025.11.16-05.32.17:074][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/LVL_StartingScreen [2025.11.16-05.32.17:074][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/LVL_StartingScreen [2025.11.16-05.32.17:074][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/LVL_StartingScreen [2025.11.16-05.32.17:118][ 0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1 [2025.11.16-05.32.17:118][ 0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0 [2025.11.16-05.32.17:118][ 0]LogRHI: Display: ShaderPipelineCache: Batching Resumed. [2025.11.16-05.32.17:137][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() [2025.11.16-05.32.17:137][ 0]LogLoad: (Engine Initialization) Total time: 10.17 seconds [2025.11.16-05.32.17:145][ 0]LogRawInputWindows: Warning: Device was registered succesfully but not connected (Usage:4 UsagePage:1) [2025.11.16-05.32.17:145][ 0]LogRawInputWindows: Warning: Device was registered succesfully but not connected (Usage:5 UsagePage:1) [2025.11.16-05.32.17:151][ 0]LogContentStreaming: Texture pool size now 1000 MB [2025.11.16-05.32.17:153][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.17:153][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Gold, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Biome_Plague, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerPlagueTerrain was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerPlagueTerrain has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerPlagueTerrain'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Croppa, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Croppa was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Croppa has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Croppa'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Dystrum, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Dystrum was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Dystrum has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Dystrum'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Iron, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Iron was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Iron has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Iron'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Generic_Morkite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Morkite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Morkite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Morkite'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:153][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Nitra, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Nitra was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Nitra has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Nitra'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:153][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0' [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T00123 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T00123 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T00123'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T010 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T010 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T010'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T030 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T030 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T030'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T1 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T1 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T1'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T2 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T2 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T2'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T3 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T3 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T3'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T4 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T4 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T4'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T5 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T5 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T5'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LetsHeadForDroppod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LetsHeadForDroppod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LetsHeadForDroppod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Begin_MULE_Retrieved was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Begin_MULE_Retrieved has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Begin_MULE_Retrieved'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_EscapePod_Departed was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_EscapePod_Departed has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_EscapePod_Departed'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_EliteDropPod_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:154][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:154][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Game/SpaceRig/BP_GameState_SpaceRig, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_SpaceRig_Begin_InitiatingLaunchSequence was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_SpaceRig_Begin_InitiatingLaunchSequence has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_SpaceRig_Begin_InitiatingLaunchSequence'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_CarryThis was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_CarryThis has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_CarryThis'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_EscortMission_LaserPointDrilldozerBosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_EscortMission_LaserPointDrilldozerBosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_EscortMission_LaserPointDrilldozerBosco'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserPointer_GenericDefendBosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserPointer_GenericDefendBosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LaserPointer_GenericDefendBosco'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointerer_Bosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointerer_Bosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointerer_Bosco'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoamForBosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoamForBosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoamForBosco'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/Abilities/BA_CryoGrenade, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/Abilities/BA_Rocket, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Missions/Warnings/Plague/CleaningPod/Soaper/BP_FoamPuddle, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Missions/Warnings/Plague/CleaningPod/Soaper/BP_FoamPuddle_WalkingPlagueheart, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Heartstone_DefensiveCrystal, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_Ommoran_Beamers was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_Ommoran_Beamers has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_Ommoran_Beamers'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Enemies/Plague/BP_PlagueWormPod, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_Laserpointer_EnePlaguewormEggs was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_Laserpointer_EnePlaguewormEggs has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_Laserpointer_EnePlaguewormEggs'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Plague/PAF_Plague_SteppingOnPlague, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/UI/HUD_SpaceRig/BP_HUD_SpaceRig, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Promotion_Available was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Promotion_Available has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Promotion_Available'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/UI/HUD_SpaceRig/CampaignNotifications/WND_AssignmentMissionComplete, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Generic_Completion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Generic_Completion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Generic_Completion'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/UI/ClaimableRewards/UI_ClaimableRewards_View, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Plague/PAF_PlagueSpores_Area, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Plague/PAF_Plague_Infection_Attack, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByAttack was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByAttack has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByAttack'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_PoisonSepticPuddle, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_TakingDamage was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_TakingDamage has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_TakingDamage'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_Infection_WalkingPlagueheart_SlimeTrail, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S4_STE_GettingAffectedRockpox_SlimetrailContact was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S4_STE_GettingAffectedRockpox_SlimetrailContact has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S4_STE_GettingAffectedRockpox_SlimetrailContact'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_Electicity_ExpeniteTransmutator, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_Electicity_DataVault, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Enemies/Plague/WalkingPlagueheartBoss/PAF_PlagueInfection_Corruptor, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_Proximity was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_Proximity has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_Proximity'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: 1101 [2025.11.16-05.32.17:155][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Affliction/AFL_InfectedByRockpoxPlague, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_HeldByRockpox was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_HeldByRockpox has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_HeldByRockpox'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.17:155][ 0]LogHAL: NoLogging: [2025.11.16-05.32.17:156][ 1]LogSlate: Took 0.000116 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.16-05.32.17:156][ 1]LogSlate: Took 0.000077 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.16-05.32.17:178][ 1]LogStreaming: Display: FlushAsyncLoading(1864): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.32.17:223][ 3]LogStreamlineAPI: [Info]: [16-02-17][streamline][info][tid:2300][8s:984ms:971us]dlss_gEntry.cpp:1221[slSetData] slDLSSGSetOptions() is called on the thread 2300. [2025.11.16-05.32.17:364][ 4]Bp_StartMenu_PlayerController: [Bp_StartMenu_PlayerController_C_2147481695] Key Press:Space Bar [2025.11.16-05.32.17:827][ 6]DiscordWrap: Discord User tubbins92 Connected with id 164969210282246153 [2025.11.16-05.32.18:056][ 24]LogOnlineIdentity: STEAM: Obtained steam authticket [2025.11.16-05.32.18:156][ 24]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.32.18:158][ 24]LogSlate: Took 0.000146 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.16-05.32.18:388][119]LogRHI: Warning: FShaderPipelineCache RogueCore_usr completed 1055 tasks in 0.01s (6.08s wall time since intial open). [2025.11.16-05.32.18:388][120]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - Finished, no jobs remaining. [2025.11.16-05.32.18:548][190]LogSlate: Took 0.000201 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K) [2025.11.16-05.32.19:422][585]FSDLog_Gameflow: FADING (2.259672): Bp_StartMenu_PlayerController_C_2147481695: FadeScreenToBlack [2025.11.16-05.32.19:422][585]FSDLog_Gameflow: 2.3 Bp_StartMenu_PlayerController_C_2147481695: FadeScreenToBlack [2025.11.16-05.32.20:922][240]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/Spaceship/LVL_Ramrod_MAIN" [2025.11.16-05.32.20:922][240]LogNet: Browse: /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.32.20:922][240]LogLoad: LoadMap: /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.32.20:922][240]LogWorld: BeginTearingDown for /Game/Maps/LVL_StartingScreen [2025.11.16-05.32.20:924][240]LogWorld: UWorld::CleanupWorld for LVL_StartingScreen, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.32.20:924][240]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.20:957][240]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.16-05.32.20:959][240]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms [2025.11.16-05.32.20:961][240]LogStreaming: Display: FlushAsyncLoading(1867): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.32.21:494][240]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Ramrod_MAIN'. [2025.11.16-05.32.21:495][240]LogLoad: Game class is 'BP_SpaceRig_Gamemode_C' [2025.11.16-05.32.21:495][240]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_Mesh_v07) is flushing async loading [2025.11.16-05.32.21:542][240]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_LightingDefault) is flushing async loading [2025.11.16-05.32.21:543][240]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_VFX_Default) is flushing async loading [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.21:569][240]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_0.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_216.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.21:569][240]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_1.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_222.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.21:569][240]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_2.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_220.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.21:569][240]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_3.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_218.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.32.21:569][240]LogHAL: NoLogging: [2025.11.16-05.32.21:575][240]LogWorld: Bringing World /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN up for play (max tick rate 0) at 2025.11.16-16.02.21 [2025.11.16-05.32.21:576][240]LogWorld: Bringing up level for play took: 0.030908 [2025.11.16-05.32.21:577][240]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating [2025.11.16-05.32.21:577][240]FSDLog_Startup: AFSDGameMode::PostLogin - Adding player: BP_PlayerController_SpaceRig_C_2147480316 total count: 1 NumPlayers: 1 [2025.11.16-05.32.21:577][240]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.16-05.32.21:577][240]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.16-05.32.21:577][240]LogGameMode: Display: Match State Changed from WaitingToStart to InProgress [2025.11.16-05.32.21:580][240]LogTemp: Warning: ULocalPlayer::CalcSceneViewInitOptions One Frame Black Hack [2025.11.16-05.32.21:617][240]LogStreamlineAPI: Warning: [Warn]: [16-02-21][streamline][warn][tid:2300][13s:379ms:432us]dlfgPresent.cpp:455[sanitizeResourceExtent] Invalid backbuffer resource extent, IF optionally specified by the client! Either extent not provided or one of the extent dimensions (0 x 0) is incorrectly zero. Resetting extent to full backbuffer resource size (1920 x 1080) [2025.11.16-05.32.21:659][240]FSDLog_Gameflow: FADING (0.000000): LVL_Ramrod_MAIN_C_1: BlackoutScreen [2025.11.16-05.32.21:659][240]FSDLog_Gameflow: 0.0 LVL_Ramrod_MAIN_C_1: BlackoutScreen [2025.11.16-05.32.21:660][240]FSDLog_Gameflow: FADING (0.000000): BP_SpacerigSpectator_C_2147480310: BlackoutScreen [2025.11.16-05.32.21:660][240]FSDLog_Gameflow: 0.0 BP_SpacerigSpectator_C_2147480310: BlackoutScreen [2025.11.16-05.32.21:660][240]BP_SpacerigSpectator: [BP_SpacerigSpectator_C_2147480310] Setting spectator cam fade [2025.11.16-05.32.21:683][240]LogVoiceEncode: Display: EncoderVersion: libopus unknown [2025.11.16-05.32.21:683][240]FSDLog_Gameflow: FADING (0.000000): BP_PlayerController_SpaceRig_C_2147480316: BlackoutScreen [2025.11.16-05.32.21:683][240]FSDLog_Gameflow: 0.0 BP_PlayerController_SpaceRig_C_2147480316: BlackoutScreen [2025.11.16-05.32.21:683][240]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480316] WindowManager Binds Complete [2025.11.16-05.32.21:683][240]DiscordWrap: Discord: SetupFaction -1 isConnected 1 [2025.11.16-05.32.21:683][240]DiscordWrap: RequestFactionAdjustment: Check token [2025.11.16-05.32.21:683][240]DiscordWrap: RequestFactionAdjustment: Generate object [2025.11.16-05.32.21:683][240]DiscordWrap: Discord: Server FactionAdjustment URL https://services.ghostship.dk:8443/userFaction [2025.11.16-05.32.21:683][240]DiscordWrap: Discord: FactionAdjustment JSon { "userId": "164969210282246153", "factionId": -1, "steamTicket": "14000000C3795525153156474813A90201001001BB481969180000000100000002000000DFC5DD7DF96CAE479038CC011A000000B200000032000000040000004813A90201001001E2A62B00407096B46801A8C000000000FB7E0D697B2E29690100D3910F0000000000A78E983180A0EF3F45534A5CCF292A3A6FDF3C3CDC322081256876387664A7111E87391307D6688673DCFA192564827205933D791BD9C465167503DE9CB0994E79562519A6FF893E167EE879F38B154977CAB05C934F876060C5AC13BEBAEE61508E35B1B8FA2F6851ABF3CE7C2EE723801AD5FC2BC7C78B96E4CD56F74607E0" } [2025.11.16-05.32.21:683][240]LogGameState: Match State Changed from WaitingToStart to InProgress [2025.11.16-05.32.21:684][240]LogLoad: Took 0.761552 seconds to LoadMap(/Game/Maps/Spaceship/LVL_Ramrod_MAIN) [2025.11.16-05.32.21:684][240]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.32.21:684][240]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.32.21:684][240]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.32.21:685][240]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.32.21:685][240]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0xFFFFFFFF [2025.11.16-05.32.21:685][240]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.32.21:696][240]LogOnlineVoice: OSS: RegisterLocalTalker(0) returned 0x00000000 [2025.11.16-05.32.21:696][240]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.32.21:696][240]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.32.21:852][240]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.21:894][240]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.21:977][240]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.32.21:977][240]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480316] Last PlayedGuardianID [2025.11.16-05.32.21:977][240]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480315 newValue: BP_GuardianCharacter_C [2025.11.16-05.32.21:977][240]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480315 got a new SelectedCharacter BP_GuardianCharacter_C [2025.11.16-05.32.21:996][240]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.32.21:996][240]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.32.22:019][240]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.32.22:019][240]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.32.22:019][240]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.32.22:032][240]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.16-05.32.22:036][240]LogSlate: Took 0.000124 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Narrow.ufont' (66K) [2025.11.16-05.32.22:036][240]LogSlate: Took 0.000051 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Normal.ufont' (65K) [2025.11.16-05.32.22:037][240]LogSlate: Took 0.000102 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.16-05.32.22:053][240]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.32.22:053][240]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.32.22:053][240]FSDLog_Gameflow: UPlayerHealthComponent rejoinState load damage for Tubbins 0: 0.000000 [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.22:072][240]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_CharacterRetirement, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.22:072][240]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_CharacterRetirement, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.22:072][240]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: [2025.11.16-05.32.22:072][240]LogHAL: NoLogging: 1101 [2025.11.16-05.32.22:072][240]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_RetirementRewards, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.22:072][241]LogHAL: NoLogging: [2025.11.16-05.32.22:073][241]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.32.22:074][241]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.16-05.32.22:076][241]FSDLog_Startup: FSDGameMode: All Controllers are ready [2025.11.16-05.32.22:089][241]LogStreaming: Display: FlushAsyncLoading(2068): 1 QueuedPackages, 46 AsyncPackages [2025.11.16-05.32.22:095][241]FSDLog_Gameflow: FADING (0.402211): HUD_SpaceRig_C_2147477403: FadeScreenFromBlack [2025.11.16-05.32.22:095][241]FSDLog_Gameflow: 0.4 HUD_SpaceRig_C_2147477403: FadeScreenFromBlack [2025.11.16-05.32.22:101][241]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.16-05.32.22:317][252]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES : OnlineServiceAndPing of type String [2025.11.16-05.32.22:318][252]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.32.22:318][252]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.32.22:318][252]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(1) [2025.11.16-05.32.22:318][252]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(2) [2025.11.16-05.32.22:318][252]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(3) [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: dumping NamedSession: [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: SessionName: GameSession [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: HostingPlayerNum: 0 [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: SessionState: Pending [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: RegisteredPlayers: [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: 0 registered players [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: dumping Session: [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: OwningPlayerName: Tubbins [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: OwningPlayerId: Tubbins [0x110000102A91348] [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: NumOpenPrivateConnections: 0 [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: NumOpenPublicConnections: 3 [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: SessionInfo: HostIP: INVALID SteamP2P: 76561198004900680:7777 Type: Lobby session SessionId: Lobby[0x18...7C9B] [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: dumping SessionSettings: [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: NumPublicConnections: 4 [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: NumPrivateConnections: 0 [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bIsLanMatch: false [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bIsDedicated: false [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bUsesStats: false [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bShouldAdvertise: true [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bAllowJoinInProgress: true [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bAllowInvites: true [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bUsesPresence: true [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bUseLobbiesIfAvailable: true [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bAllowJoinViaPresence: true [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: bAllowJoinViaPresenceFriendsOnly: false [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: BuildUniqueId: 0x00000000 [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: Settings: [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_SERVERNAME=Tubbins : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_SERVERNAME_SAN=Tubbins : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: HostUserID=76561198004900680 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_PWREQUIRED=0 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_PRIVATE=1 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_FULL=0 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_NUMPLAYERS=1 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_CLASSES= : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_CLASSLOCK=1 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_MISSIONSTRUCTURE=DeepDive_Normal : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_MISSION_SEED=-1 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_GLOBALMISSION_SEED=-1 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_GAMESTATE=0 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_REGION=AU : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: SteamPingLoc=syd=22+2,sgp=76+7/77+7,hkg=115+11/108+7,maa2=124+12/108+7,hkg4=136+13/110+7,bom2=148+14/125+7,dxb=147+14/153+7,lax=156+15,tyo=157+15/157+7,iad=263+26/220+15,fra=224+22,gru=322+32/335+15 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogOnlineSession: Verbose: OSS: DRG_VERSION=127286 : OnlineServiceAndPing [2025.11.16-05.32.22:319][252]LogNet: ReplicationDriverClass is null! Not using ReplicationDriver. [2025.11.16-05.32.22:319][252]LogNetCore: DDoS detection status: detection enabled: 0 analytics enabled: 0 [2025.11.16-05.32.22:319][252]LogNet: InitBase GameNetDriver (NetDriverDefinition GameNetDriver) using replication model Generic [2025.11.16-05.32.22:319][252]PacketHandlerLog: Loaded PacketHandler component: Engine.EngineHandlerComponentFactory (StatelessConnectHandlerComponent) [2025.11.16-05.32.22:320][252]LogSockets: SteamSockets: Now tracking socket 65536 for addr 76561198004900680:7777, has parent? 0 [2025.11.16-05.32.22:320][252]LogNet: Name:GameNetDriver Def:GameNetDriver SteamSocketsNetDriver_2147477054 started listening on 7777 [2025.11.16-05.32.22:321][252]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.32.22:321][252]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.32.22:321][252]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES : OnlineServiceAndPing of type String [2025.11.16-05.32.22:321][253]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES : OnlineServiceAndPing of type String [2025.11.16-05.32.22:322][253]ServerListClientLog: Session Id is finally set [2025.11.16-05.32.22:326][253]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.32.22:667][306]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.32.22:668][306]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.32.22:668][306]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.32.22:669][306]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.32.22:669][306]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.32.22:680][307]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.32.23:682][467]LogHAL: NoLogging: 1101 [2025.11.16-05.32.23:682][467]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/SupplyPod/BP_SupplyPod_Spawn, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.23:682][468]LogHAL: NoLogging: [2025.11.16-05.32.41:438][282]LogStreaming: Display: FlushAsyncLoading(2083): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.32.41:476][282]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.16-05.32.41:476][282]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.32.41:479][282]LogHAL: NoLogging: 1101 [2025.11.16-05.32.41:479][282]LoadErrors: Warning: While trying to load package /Game/UI/Menus/OLD_Menu_Seasons/WND_Season_RewardClaimed, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_ClaimPhazyoniteInSeason was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_ClaimPhazyoniteInSeason has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_ClaimPhazyoniteInSeason'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.41:479][282]LogHAL: NoLogging: [2025.11.16-05.32.41:479][282]LogHAL: NoLogging: 1101 [2025.11.16-05.32.41:479][282]LoadErrors: Warning: While trying to load package /Game/UI/Menus/OLD_Menu_Seasons/WND_Season_RewardClaimed, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SeasonCollectingCosmetic was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SeasonCollectingCosmetic has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_SeasonCollectingCosmetic'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.41:479][282]LogHAL: NoLogging: [2025.11.16-05.32.41:480][283]LogHAL: NoLogging: 1101 [2025.11.16-05.32.41:480][283]LoadErrors: Warning: While trying to load package /Game/UI/Menus/OLD_Menu_Seasons/WND_Season_RewardClaimed, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SeasonCollectingScrip was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SeasonCollectingScrip has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_SeasonCollectingScrip'. Perhaps it has been deleted or was not synced? [2025.11.16-05.32.41:480][283]LogHAL: NoLogging: [2025.11.16-05.33.31:513][489]LogSettings: Getting screensettings to save [2025.11.16-05.33.31:514][489]LogSettings: Saving window fullscreen to save file [2025.11.16-05.33.31:530][489]LogSettings: Getting screensettings to save [2025.11.16-05.33.31:530][489]LogSettings: Saving window fullscreen to save file [2025.11.16-05.33.32:278][581]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147475819' for section '/Game/UI/Menus/OLD_Menu_Seasons/WND_Season_RewardClaimed.WND_Season_RewardClaimed_C:Zoom_INST.Zoom.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.33.43:766][ 10]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.33.43:766][ 10]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.33.46:278][381]LogStreaming: Display: FlushAsyncLoading(2085): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.33.46:300][381]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.16-05.33.46:300][381]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.33.46:337][381]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.33.46:337][381]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.33.46:339][381]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0 [2025.11.16-05.33.46:339][381]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 0 [2025.11.16-05.33.46:339][381]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.16-05.34.03:117][309]LogSettings: Getting screensettings to save [2025.11.16-05.34.03:117][309]LogSettings: Saving window fullscreen to save file [2025.11.16-05.34.15:304][708]LogSettings: Getting screensettings to save [2025.11.16-05.34.15:304][708]LogSettings: Saving window fullscreen to save file [2025.11.16-05.34.21:369][382]LogSettings: Getting screensettings to save [2025.11.16-05.34.21:369][382]LogSettings: Saving window fullscreen to save file [2025.11.16-05.34.30:118][384]LogSettings: Getting screensettings to save [2025.11.16-05.34.30:118][384]LogSettings: Saving window fullscreen to save file [2025.11.16-05.34.31:631][557]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.34.31:631][557]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.34.33:730][884]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.16-05.34.33:730][884]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.34.33:730][884]LogStreaming: Display: FlushAsyncLoading(2108): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.33:812][884]BP_PlanetShowroomItem: [BP_PlanetShowroomItem_C_2147474942] Last Depth : None New Depth : Depth1 [2025.11.16-05.34.33:822][885]LogStreaming: Display: FlushAsyncLoading(2111): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.34:373][948]LogStreaming: Display: FlushAsyncLoading(2113): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473788' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473786' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473784' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473782' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473780' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473778' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473776' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473774' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473772' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.34:473][960]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473770' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.35:224][ 52]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473615' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.35:367][ 70]ServerListClientLog: LobbyHandler::ListLobby - GET https://roguecore.ghostship.dk:26001/v1/servers/list/all?build=127286 [2025.11.16-05.34.35:369][ 70]_MENU_ServerList: [_MENU_ServerList_C_2147480083] SetUn Restricted [2025.11.16-05.34.35:975][142]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473599' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.36:360][188]_MENU_ServerList: [_MENU_ServerList_C_2147480083] Friendlist cache refresh in progress... [2025.11.16-05.34.36:381][189]_MENU_ServerList: [_MENU_ServerList_C_2147480083] Update friendlist succeded [2025.11.16-05.34.36:723][231]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473578' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.36:918][251]LogSlate: Took 0.004357 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) [2025.11.16-05.34.37:477][318]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147473576' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.38:222][406]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472757' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.38:976][495]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472755' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.39:681][578]ServerListClientLog: LobbyHandler::ListLobby - GET https://roguecore.ghostship.dk:26001/v1/servers/list/all?build=127286 [2025.11.16-05.34.39:724][583]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472752' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.40:478][672]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472741' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.41:223][760]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472526' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.41:978][849]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472524' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.42:721][937]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472513' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.43:475][ 26]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472511' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.44:228][115]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472509' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.44:590][158]ITM_ServerList_Entry: [ITM_ServerList_Entry_C_2147473540] Joining: more like rouge SNORE ID: 109775242693369610 Valid: true [2025.11.16-05.34.44:598][159]LogOnline: Warning: OSS: Async task 'FOnlineAsyncTaskSteamStoreStats SessionName: GameSession bWasSuccessful: 0' failed in 0.008418 seconds [2025.11.16-05.34.44:632][162]LogOnlineVoice: OSS: Unregistering all local talkers [2025.11.16-05.34.44:633][162]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.34.44:633][162]LogOnlineVoice: OSS: UnregisterLocalTalker(0) returned 0x00000000 [2025.11.16-05.34.44:633][162]LogOnlineVoice: OSS: Removing all remote talkers [2025.11.16-05.34.44:633][162]LogOnline: STEAM: AUTH: Revoking all tickets. [2025.11.16-05.34.44:633][162]FSDLog_Gameflow: FSDJoinSession with password [2025.11.16-05.34.44:858][188]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0xFFFFFFFF [2025.11.16-05.34.44:858][188]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.34.44:858][188]LogOnlineVoice: OSS: RegisterLocalTalker(0) returned 0x00000000 [2025.11.16-05.34.44:858][188]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(1) [2025.11.16-05.34.44:858][188]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(2) [2025.11.16-05.34.44:858][188]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(3) [2025.11.16-05.34.44:858][188]LogOnlineSession: STEAM: Using P2P Data for Connection Serialization [2025.11.16-05.34.44:858][188]LogOnline: FSD Join session: traveling to steam.76561198807431807:7777 [2025.11.16-05.34.44:858][188]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.34.44:858][188]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.34.44:858][188]LogOnline: UOnlineSessionSubSystem::HandleJoinSessionComplete: 0 [2025.11.16-05.34.44:858][189]LogGameMode: Display: Match State Changed from InProgress to LeavingMap [2025.11.16-05.34.44:858][189]LogGameState: Match State Changed from InProgress to LeavingMap [2025.11.16-05.34.44:858][189]LogGlobalStatus: UEngine::Browse Started Browse: "steam.76561198807431807/Game/Maps/LVL_StartingScreen" [2025.11.16-05.34.44:858][189]LogNet: Browse: steam.76561198807431807/Game/Maps/LVL_StartingScreen [2025.11.16-05.34.44:858][189]LogNet: World NetDriver shutdown SteamSocketsNetDriver_2147477054 [GameNetDriver] [2025.11.16-05.34.44:858][189]LogNet: DestroyNamedNetDriver: Name:GameNetDriver Def:GameNetDriver SteamSocketsNetDriver_2147477054 [2025.11.16-05.34.44:858][189]LogNet: InitBase PendingNetDriver (NetDriverDefinition GameNetDriver) using replication model Generic [2025.11.16-05.34.44:858][189]LogNet: SteamSocketsNetConnection_2147472490 setting maximum channels to: 32767 [2025.11.16-05.34.44:858][189]PacketHandlerLog: Loaded PacketHandler component: Engine.EngineHandlerComponentFactory (StatelessConnectHandlerComponent) [2025.11.16-05.34.44:859][189]LogHandshake: Stateless Handshake: NetDriverDefinition 'GameNetDriver' CachedClientID: 0 [2025.11.16-05.34.44:859][189]LogSteamSocketsAPI: Warning: SteamSockets API: Warning [#1287507794 P2P steamid:76561198807431807 vport 7777] Relay candidates enabled by P2P_Transport_ICE_Enable, but P2P_TURN_ServerList is empty [2025.11.16-05.34.44:865][189]LogSockets: SteamSockets: Now tracking socket 1287507794 for addr 76561198807431807:7777, has parent? 0 [2025.11.16-05.34.44:865][189]LogNet: Game client on port 7777, rate 100000 [2025.11.16-05.34.44:865][189]LogNetVersion: Checksum from delegate: 41272860 [2025.11.16-05.34.44:869][189]LogSockets: SteamSockets: Closing all sockets attached to listener 65536 [2025.11.16-05.34.44:979][203]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472507' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.45:677][284]ServerListClientLog: LobbyHandler::ListLobby - GET https://roguecore.ghostship.dk:26001/v1/servers/list/all?build=127286 [2025.11.16-05.34.45:729][290]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472484' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.46:472][376]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472482' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.46:825][417]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.34.46:825][417]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.34.46:825][417]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.34.46:827][417]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.34.46:827][417]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.34.46:841][418]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.34.47:228][463]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472276' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.47:980][550]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472274' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.48:730][637]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472272' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.49:471][723]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147472270' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.34.49:995][784]LogNet: UPendingNetGame::SendInitialJoin: Sending hello. [UNetConnection] RemoteAddr: 76561198807431807:7777, Name: SteamSocketsNetConnection_2147472490, Driver: Name:PendingNetDriver Def:GameNetDriver SteamSocketsNetDriver_2147472494, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID [2025.11.16-05.34.50:115][798]LogNet: Welcomed by server (Level: /Game/Maps/Spaceship/LVL_Ramrod_MAIN, Game: /Game/Game/SpaceRig/BP_SpaceRig_GamemOde.BP_SpaceRig_Gamemode_C) [2025.11.16-05.34.50:116][798]LogLoad: LoadMap: steam.76561198807431807/Game/Maps/Spaceship/LVL_Ramrod_MAIN?game=/Game/Game/SpaceRig/BP_SpaceRig_GamemOde.BP_SpaceRig_Gamemode_C [2025.11.16-05.34.50:116][798]LogWorld: BeginTearingDown for /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.34.50:128][798]LogSettings: Getting screensettings to save [2025.11.16-05.34.50:128][798]LogSettings: Saving window fullscreen to save file [2025.11.16-05.34.50:141][798]FSDLog_Startup: AFSDGameMode::Logout - Removing player: BP_PlayerController_SpaceRig_C_2147480316 total count 0 [2025.11.16-05.34.50:141][798]LogOnlineSession: Warning: STEAM: Player Tubbins [0x110000102A91348] is not part of session (GameSession) [2025.11.16-05.34.50:142][798]LogOnlineSession: Warning: STEAM: Player Tubbins [0x110000102A91348] is not part of session (GameSession) [2025.11.16-05.34.50:142][798]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.34.50:142][798]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.34.50:143][798]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.16-05.34.50:143][798]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.16-05.34.50:143][798]FSDLog_Startup: AFSDGameMode::OnControllerDestroyed - Removing player: BP_PlayerController_SpaceRig_C_2147480316 total count 0 [2025.11.16-05.34.50:143][798]LogWorld: UWorld::CleanupWorld for LVL_Ramrod_MAIN, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.34.50:153][798]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.34.50:216][798]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.16-05.34.50:259][798]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.16-05.34.50:286][798]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.50:286][798]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 0 [2025.11.16-05.34.50:291][798]LogUObjectHash: Compacting FUObjectHashTables data took 1.69ms [2025.11.16-05.34.50:298][798]LogStreaming: Display: FlushAsyncLoading(2115): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.50:812][798]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Ramrod_MAIN'. [2025.11.16-05.34.50:813][798]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_Mesh_v07) is flushing async loading [2025.11.16-05.34.50:861][798]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_VFX_Default) is flushing async loading [2025.11.16-05.34.50:864][798]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_LightingDefault) is flushing async loading [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: 1101 [2025.11.16-05.34.50:885][798]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_0.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_216.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: 1101 [2025.11.16-05.34.50:885][798]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_1.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_222.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: 1101 [2025.11.16-05.34.50:885][798]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_2.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_220.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: 1101 [2025.11.16-05.34.50:885][798]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_3.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_218.DefaultSceneRoot' which is static to it. Aborting. [2025.11.16-05.34.50:885][798]LogHAL: NoLogging: [2025.11.16-05.34.50:890][798]LogWorld: Bringing World /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN up for play (max tick rate 0) at 2025.11.16-16.04.50 [2025.11.16-05.34.50:891][798]LogWorld: Bringing up level for play took: 0.027872 [2025.11.16-05.34.50:891][798]LogLoad: Took 0.776293 seconds to LoadMap(/Game/Maps/Spaceship/LVL_Ramrod_MAIN) [2025.11.16-05.34.50:891][798]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.34.50:891][798]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.34.50:891][798]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.34.50:892][798]LogGlobalStatus: UPendingNetGame::TravelCompleted Pending net game travel completed [2025.11.16-05.34.50:937][798]LogUObjectHash: Compacting FUObjectHashTables data took 1.24ms [2025.11.16-05.34.50:944][798]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.34.50:945][798]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.16-05.34.50:947][799]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.16-05.34.50:981][800]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.34.50:982][800]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.34.50:982][800]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.34.50:983][800]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.34.50:984][800]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.34.50:995][800]LogStreaming: Display: FlushAsyncLoading(2119): 0 QueuedPackages, 19 AsyncPackages [2025.11.16-05.34.51:060][801]FSDLog_Gameflow: FADING (0.443030): LVL_Ramrod_MAIN_C_1: BlackoutScreen [2025.11.16-05.34.51:060][801]FSDLog_Gameflow: 0.4 LVL_Ramrod_MAIN_C_1: BlackoutScreen [2025.11.16-05.34.51:062][801]FSDLog_Gameflow: FADING (0.443030): BP_SpacerigSpectator_C_2147471830: BlackoutScreen [2025.11.16-05.34.51:062][801]FSDLog_Gameflow: 0.4 BP_SpacerigSpectator_C_2147471830: BlackoutScreen [2025.11.16-05.34.51:062][801]BP_SpacerigSpectator: [BP_SpacerigSpectator_C_2147471830] Setting spectator cam fade [2025.11.16-05.34.51:062][801]FSDLog_Gameflow: FADING (0.443030): BP_PlayerController_SpaceRig_C_2147471844: BlackoutScreen [2025.11.16-05.34.51:062][801]FSDLog_Gameflow: 0.4 BP_PlayerController_SpaceRig_C_2147471844: BlackoutScreen [2025.11.16-05.34.51:062][801]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147471844] WindowManager Binds Complete [2025.11.16-05.34.51:062][801]DiscordWrap: Discord: SetupFaction -1 isConnected 1 [2025.11.16-05.34.51:062][801]DiscordWrap: RequestFactionAdjustment: Check token [2025.11.16-05.34.51:062][801]DiscordWrap: RequestFactionAdjustment: Generate object [2025.11.16-05.34.51:062][801]DiscordWrap: Discord: Server FactionAdjustment URL https://services.ghostship.dk:8443/userFaction [2025.11.16-05.34.51:062][801]DiscordWrap: Discord: FactionAdjustment JSon { "userId": "164969210282246153", "factionId": -1, "steamTicket": "14000000C3795525153156474813A90201001001BB481969180000000100000002000000DFC5DD7DF96CAE479038CC011A000000B200000032000000040000004813A90201001001E2A62B00407096B46801A8C000000000FB7E0D697B2E29690100D3910F0000000000A78E983180A0EF3F45534A5CCF292A3A6FDF3C3CDC322081256876387664A7111E87391307D6688673DCFA192564827205933D791BD9C465167503DE9CB0994E79562519A6FF893E167EE879F38B154977CAB05C934F876060C5AC13BEBAEE61508E35B1B8FA2F6851ABF3CE7C2EE723801AD5FC2BC7C78B96E4CD56F74607E0" } [2025.11.16-05.34.51:064][801]LogSlate: Took 0.000230 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.16-05.34.51:064][801]LogSlate: Took 0.000088 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.16-05.34.51:067][801]LogSlate: Took 0.000096 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.16-05.34.51:067][801]LogSlate: Took 0.000147 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Narrow.ufont' (66K) [2025.11.16-05.34.51:067][801]LogSlate: Took 0.000059 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Normal.ufont' (65K) [2025.11.16-05.34.51:069][801]LogSlate: Took 0.000100 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.16-05.34.51:078][801]LogSlate: Warning: FontCache flush requested. Reason: Large atlases out of space; 2/1 Textures; frames since last flush: 8979082489330502009 [2025.11.16-05.34.51:093][801]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.34.51:099][801]LogSlate: Slate font cache was flushed [2025.11.16-05.34.51:099][801]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.34.51:100][802]LogSlate: Took 0.000116 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.16-05.34.51:100][802]LogSlate: Took 0.000098 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.16-05.34.51:101][802]LogSlate: Took 0.000081 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.16-05.34.51:101][802]LogSlate: Took 0.000104 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Narrow.ufont' (66K) [2025.11.16-05.34.51:102][802]LogSlate: Took 0.000053 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Normal.ufont' (65K) [2025.11.16-05.34.51:102][802]LogSlate: Took 0.000096 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.16-05.34.51:135][810]LogStreaming: Display: FlushAsyncLoading(2122): 1 QueuedPackages, 46 AsyncPackages [2025.11.16-05.34.51:486][810]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147471844] Last PlayedGuardianID [2025.11.16-05.34.51:486][810]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147471484 newValue: BP_GuardianCharacter_C [2025.11.16-05.34.51:486][810]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147471484 got a new SelectedCharacter BP_GuardianCharacter_C [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: 1101 [2025.11.16-05.34.51:490][810]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_CharacterRetirement, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes'. Perhaps it has been deleted or was not synced? [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: 1101 [2025.11.16-05.34.51:490][810]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_CharacterRetirement, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf'. Perhaps it has been deleted or was not synced? [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: 1101 [2025.11.16-05.34.51:490][810]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: [2025.11.16-05.34.51:490][810]LogHAL: NoLogging: 1101 [2025.11.16-05.34.51:490][810]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_RetirementRewards, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion'. Perhaps it has been deleted or was not synced? [2025.11.16-05.34.51:490][811]LogHAL: NoLogging: [2025.11.16-05.34.51:494][811]LogOnlineVoice: OSS: RegisterRemoteTalker(Laxlan [0x11...BA7F]) returned 0x00000000 [2025.11.16-05.34.51:494][811]LogOnlineVoice: OSS: StartRemoteVoiceProcessing(Laxlan [0x11...BA7F]) returned 0x00000000 [2025.11.16-05.34.51:495][811]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147469144 newValue: BP_RetconCharacter_C [2025.11.16-05.34.51:497][811]LogStreaming: Display: FlushAsyncLoading(2139): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.51:517][811]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:517][811]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:517][811]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.51:517][811]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:517][811]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.51:549][818]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.16-05.34.51:549][818]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.34.51:549][818]LogStreaming: Display: FlushAsyncLoading(2160): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.51:573][818]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:574][818]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:574][818]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.51:574][818]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:574][818]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.51:585][818]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:585][818]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:586][818]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.51:586][818]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.51:586][818]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.51:586][818]FSDLog_Gameflow: FADING (1.010287): BP_PlayerController_SpaceRig_C_2147471844: FadeScreenFromBlack [2025.11.16-05.34.51:586][818]FSDLog_Gameflow: 1.0 BP_PlayerController_SpaceRig_C_2147471844: FadeScreenFromBlack [2025.11.16-05.34.51:587][818]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.16-05.34.51:941][880]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.34.51:942][880]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.34.51:942][880]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.34.51:944][880]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.34.51:944][880]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.34.51:953][881]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.34.52:639][ 0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.52:639][ 0]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.52:640][ 0]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.52:640][ 0]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.52:640][ 0]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.52:641][ 0]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.16-05.34.52:835][ 34]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.52:835][ 34]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.52:836][ 34]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.52:836][ 34]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.52:836][ 34]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.52:837][ 34]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.16-05.34.53:135][ 86]LogHAL: NoLogging: 1101 [2025.11.16-05.34.53:135][ 86]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/SupplyPod/BP_SupplyPod_Spawn, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin'. Perhaps it has been deleted or was not synced? [2025.11.16-05.34.53:135][ 87]LogHAL: NoLogging: [2025.11.16-05.34.53:241][105]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:241][105]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:241][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:241][105]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:241][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:242][105]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection [2025.11.16-05.34.53:245][105]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:245][105]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:245][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:245][105]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:245][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:245][105]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_GuardianCharacter_C [2025.11.16-05.34.53:246][105]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] : false [2025.11.16-05.34.53:246][105]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1 [2025.11.16-05.34.53:246][105]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147471484 newValue: BP_GuardianCharacter_C [2025.11.16-05.34.53:246][105]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147471484 got a new SelectedCharacter BP_GuardianCharacter_C [2025.11.16-05.34.53:249][105]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:249][105]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:249][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:249][105]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:249][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:249][105]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147471484 newValue: BP_GuardianCharacter_C [2025.11.16-05.34.53:249][105]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147471484 got a new SelectedCharacter BP_GuardianCharacter_C [2025.11.16-05.34.53:251][105]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:251][105]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:251][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:251][105]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:251][105]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:252][105]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Collapse [2025.11.16-05.34.53:252][105]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.34.53:252][105]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.34.53:252][105]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.34.53:252][105]LogStreaming: Display: FlushAsyncLoading(2178): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.53:347][138]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:347][138]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:347][138]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.16-05.34.53:347][138]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:347][138]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:347][138]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.34.53:348][138]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:348][138]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.34.53:353][138]LogStreaming: Display: FlushAsyncLoading(2179): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.34.53:365][138]FSDLog_Gameflow: FADING (2.806898): HUD_SpaceRig_C_2147468777: FadeScreenFromBlack [2025.11.16-05.34.53:365][138]FSDLog_Gameflow: 2.8 HUD_SpaceRig_C_2147468777: FadeScreenFromBlack [2025.11.16-05.34.53:395][141]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.16-05.34.53:544][159]LogStreaming: Display: FlushAsyncLoading(2183): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.15:989][785]LogNet: Warning: UNetDriver::ProcessRemoteFunction: No owning connection for actor BP_RetconCharacter_C_2147469087. Function SetHeadLight will not be processed. [2025.11.16-05.35.15:990][785]LogNet: Warning: UNetDriver::ProcessRemoteFunction: No owning connection for actor BP_RetconCharacter_C_2147469087. Function SetHeadLight will not be processed. [2025.11.16-05.35.16:978][922]FSDLog_Gameflow: FADING (26.440446): HUD_SpaceRig_C_2147468777: FadeScreenToBlack [2025.11.16-05.35.16:978][922]FSDLog_Gameflow: 26.4 HUD_SpaceRig_C_2147468777: FadeScreenToBlack [2025.11.16-05.35.21:004][504]LogSettings: Getting screensettings to save [2025.11.16-05.35.21:004][504]LogSettings: Saving window fullscreen to save file [2025.11.16-05.35.21:006][504]LogStreaming: Display: FlushAsyncLoading(2194): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.21:019][504]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.16-05.35.21:019][504]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.16-05.35.21:019][504]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.16-05.35.21:020][504]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.16-05.35.21:020][504]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.35.21:020][504]LogWorld: SeamlessTravel to: /Game/Maps/LVL_Procedural [2025.11.16-05.35.21:025][505]LogWorld: BeginTearingDown for /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.16-05.35.21:028][505]LogStreamlineAPI: [Info]: [16-05-21][streamline][info][tid:2300][192s:789ms:980us]resourceTaggingForFrame.cpp:282[getTag] SL resource tags for frame 24504 not set yet! [2025.11.16-05.35.21:030][505]LogWorld: UWorld::CleanupWorld for LVL_Ramrod_MAIN, bSessionEnded=false, bCleanupResources=true [2025.11.16-05.35.21:035][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_rougeCore_SelectCharacterOnlyConsole_small_C_CHILDACTOR_2147468214 [2025.11.16-05.35.21:035][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Terminal_Manual_C_CHILDACTOR_2147468213 [2025.11.16-05.35.21:035][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_MotivationalQuotes_C_CHILDACTOR_2147468212 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_rougeCore_SelectCharacterOnlyConsole_small_C_CHILDACTOR_2147468211 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Terminal_Manual_C_CHILDACTOR_2147468210 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_MotivationalQuotes_C_CHILDACTOR_2147468209 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_rougeCore_SelectCharacterOnlyConsole_small_C_CHILDACTOR_2147468208 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Terminal_Manual_C_CHILDACTOR_2147468207 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_MotivationalQuotes_C_CHILDACTOR_2147468206 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_rougeCore_SelectCharacterOnlyConsole_small_C_CHILDACTOR_2147468205 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Terminal_Manual_C_CHILDACTOR_2147468204 [2025.11.16-05.35.21:036][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_MotivationalQuotes_C_CHILDACTOR_2147468203 [2025.11.16-05.35.21:037][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Drop_CamShake_C_CHILDACTOR_2147468202 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468201 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468200 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468199 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468198 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_PlayerStart_C_CHILDACTOR_2147468197 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_PlayerStart_C_CHILDACTOR_2147468196 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_PlayerStart_C_CHILDACTOR_2147468195 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_PlayerStart_C_CHILDACTOR_2147468194 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_Complexity_C_CHILDACTOR_2147468193 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_AltitudeMeter_C_CHILDACTOR_2147468192 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_MissionType_C_CHILDACTOR_2147468191 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468190 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468189 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468188 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_GarbageGen_C_CHILDACTOR_2147468187 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_Widget_DropPod_BiomeRadar_C_CHILDACTOR_2147468186 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_AsteroidField_C_CHILDACTOR_2147468185 [2025.11.16-05.35.21:038][505]LogNet: Warning: NotifyActorRenamed on client, StartupActor: DESTROYED_BP_E3trailer_AsteroidField_C_CHILDACTOR_2147468184 [2025.11.16-05.35.21:038][505]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.21:038][505]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_Mesh_v07, bSessionEnded=false, bCleanupResources=true [2025.11.16-05.35.21:038][505]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.21:039][505]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_VFX_Default, bSessionEnded=false, bCleanupResources=true [2025.11.16-05.35.21:039][505]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.21:040][505]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_LightingDefault, bSessionEnded=false, bCleanupResources=true [2025.11.16-05.35.21:040][505]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.21:040][505]LogWorld: UWorld::CleanupWorld for LVL_Skybox_Ramrod, bSessionEnded=false, bCleanupResources=true [2025.11.16-05.35.21:040][505]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.21:063][505]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. [2025.11.16-05.35.21:084][505]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.16-05.35.21:111][505]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.16-05.35.21:111][505]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.35.21:111][505]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.35.21:119][505]LogUObjectHash: Compacting FUObjectHashTables data took 1.69ms [2025.11.16-05.35.21:123][505]LogStats: SeamlessTravel FlushLevelStreaming - 0.000 s [2025.11.16-05.35.21:123][505]LogWorld: Bringing World /Temp/Untitled_5.Untitled up for play (max tick rate 0) at 2025.11.16-16.05.21 [2025.11.16-05.35.21:123][505]LogWorld: Bringing up level for play took: 0.000213 [2025.11.16-05.35.21:123][505]LogWorld: Sending NotifyLoadedWorld for LP: LocalPlayer_2147481772 PC: BP_PlayerController_SpaceRig_C_2147471844 [2025.11.16-05.35.21:123][505]LogWorld: StartLoadingDestination to: /Game/Maps/LVL_Procedural [2025.11.16-05.35.21:125][506]LogStreamlineAPI: [Info]: [16-05-21][streamline][info][tid:2300][192s:886ms:702us]resourceTaggingForFrame.cpp:282[getTag] SL resource tags for frame 24505 not set yet! [2025.11.16-05.35.21:125][507]LogStreamlineAPI: Warning: [Warn]: [16-05-21][streamline][warn][tid:14108][192s:887ms:557us]reflexEntry.cpp:98[insertCameraData] Out of order camera data detected! last: 24503, pushing: 24507 [2025.11.16-05.35.21:126][508]LogStreamlineAPI: [Info]: [16-05-21][streamline][info][tid:2300][192s:888ms:563us]resourceTaggingForFrame.cpp:282[getTag] SL resource tags for frame 24506 not set yet! [2025.11.16-05.35.21:131][509]LogWorld: BeginTearingDown for /Temp/Untitled_5 [2025.11.16-05.35.21:131][509]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.16-05.35.21:131][509]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.21:153][509]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Procedural'. [2025.11.16-05.35.21:155][509]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.16-05.35.21:160][509]LogUObjectHash: Compacting FUObjectHashTables data took 1.22ms [2025.11.16-05.35.21:164][509]LogStats: SeamlessTravel FlushLevelStreaming - 0.000 s [2025.11.16-05.35.21:164][509]LogWorld: Bringing World /Game/Maps/LVL_Procedural.LVL_Procedural up for play (max tick rate 0) at 2025.11.16-16.05.21 [2025.11.16-05.35.21:165][509]LogWorld: Bringing up level for play took: 0.000293 [2025.11.16-05.35.21:165][509]LogWorld: Sending NotifyLoadedWorld for LP: LocalPlayer_2147481772 PC: BP_PlayerController_SpaceRig_C_2147471844 [2025.11.16-05.35.21:165][509]LogWorld: ----SeamlessTravel finished in 0.14 seconds ------ [2025.11.16-05.35.23:175][696]LogOnlineVoice: OSS: UnregisterRemoteTalker(Laxlan [0x11...BA7F]) returned 0x00000000 [2025.11.16-05.35.23:176][696]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.35.23:176][696]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.35.23:176][696]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.35.23:178][696]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.35.23:178][696]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.35.23:178][696]LogTemp: Warning: ULocalPlayer::CalcSceneViewInitOptions One Frame Black Hack [2025.11.16-05.35.23:179][697]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.35.23:239][733]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.16-05.35.23:239][733]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.16-05.35.23:239][733]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.16-05.35.23:269][750]LogStreaming: Display: FlushAsyncLoading(2199): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.23:335][750]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.23:349][750]FSDLog_Gameflow: FADING (32.730560): BP_NetworkPlayerController_BXE_C_2147467918: BlackoutScreen [2025.11.16-05.35.23:349][750]FSDLog_Gameflow: 32.700001 BP_NetworkPlayerController_BXE_C_2147467918: BlackoutScreen [2025.11.16-05.35.23:349][750]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147467918] Start Wait : Client_WaitForValidPLS [2025.11.16-05.35.23:349][750]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147467918] Start Wait : NetworkPlayerController - Local Ready [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Umanite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Umanite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Umanite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Umanite'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Bismor, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Bismor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Bismor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Bismor'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Dirt_SwarmerTunnels, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_SwarmerTunnels was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_SwarmerTunnels has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_SwarmerTunnels'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_EggSurroundings, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_ExpeniteContainingRock, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Gold_Melted, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Hollomite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Holomite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Holomite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Holomite'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: [2025.11.16-05.35.23:376][750]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][750]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Magnite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Magnite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Magnite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Magnite'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][751]LogHAL: NoLogging: [2025.11.16-05.35.23:376][751]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][751]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_OilShale, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_OilShale was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_OilShale has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_OilShale'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][751]LogHAL: NoLogging: [2025.11.16-05.35.23:376][751]LogHAL: NoLogging: 1101 [2025.11.16-05.35.23:376][751]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Phazyonite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointPhazyonite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointPhazyonite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointPhazyonite'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.23:376][751]LogHAL: NoLogging: [2025.11.16-05.35.23:377][751]LogOnlineVoice: OSS: RegisterRemoteTalker(Laxlan [0x11...BA7F]) returned 0x00000000 [2025.11.16-05.35.23:377][751]LogOnlineVoice: OSS: StartRemoteVoiceProcessing(Laxlan [0x11...BA7F]) returned 0x00000000 [2025.11.16-05.35.23:378][751]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_C_2147467880 newValue: BP_RetconCharacter_C [2025.11.16-05.35.23:378][751]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_C_2147467879 newValue: BP_GuardianCharacter_C [2025.11.16-05.35.23:378][751]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] Start Wait : Valid Controllers [2025.11.16-05.35.23:378][751]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] End Wait :Valid Controllers [2025.11.16-05.35.23:378][751]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] Start Wait : WorldReady [2025.11.16-05.35.23:715][942]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.23:773][970]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147467918] End Wait :Client_WaitForValidPLS [2025.11.16-05.35.23:773][970]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147467918] End Wait :NetworkPlayerController - Local Ready [2025.11.16-05.35.23:773][970]LogStreaming: Display: FlushAsyncLoading(2635): 1 QueuedPackages, 88 AsyncPackages [2025.11.16-05.35.23:786][970]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.23:791][970]BP_NetworkPlayerController: [BP_NetworkPlayerController_BXE_C_2147467918] Rejoin Detected - Starting Rejoin Flow [2025.11.16-05.35.23:791][970]FSDLog_Gameflow: FADING (33.231422): Screen_LoadLevel_C_2147467855: FadeScreenFromBlack [2025.11.16-05.35.23:791][970]FSDLog_Gameflow: 33.200001 Screen_LoadLevel_C_2147467855: FadeScreenFromBlack [2025.11.16-05.35.23:791][970]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.16-05.35.23:791][970]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 1 [2025.11.16-05.35.23:791][970]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds [2025.11.16-05.35.23:793][970]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Loader World (LS 1) [2025.11.16-05.35.23:793][970]LVL_Loading_StartRun: [LVL_Loading_StartRun_C_0] LoaderSequence normal START: /Game/Maps/UILevels/RogueCore/Loading_Droppod/SQ_Load_StartRun_District_A.SQ_Load_StartRun_District_A [2025.11.16-05.35.23:794][970]LogMovieScene: Starting new camera cut: 'CineCameraActor_2' [2025.11.16-05.35.23:798][970]LVL_Loading_Elevator: [LVL_Loading_Elevator_C_1] LoaderSequence START: /Game/Maps/UILevels/RogueCore/Loading_Droppod/SQ_Load_StartRun_District_A.SQ_Load_StartRun_District_A [2025.11.16-05.35.23:808][971]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.16-05.35.24:170][ 37]LogOnlineVoice: OSS: Registering all local talkers [2025.11.16-05.35.24:170][ 37]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.16-05.35.24:171][ 37]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.16-05.35.24:172][ 37]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.16-05.35.24:172][ 37]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.16-05.35.24:181][ 38]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.16-05.35.24:273][ 57]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] End Wait :WorldReady [2025.11.16-05.35.24:284][ 59]FSDLog_Procedural: AProceduralSetup::InitializePLS - Biome BIOME_CrystalCaves, MissionLength 1.000000, DNA DNA_BXE_Linear_VeryLong6_Simple_C [2025.11.16-05.35.24:284][ 59]PLS_Base: [PLS_RC_Random_C_2147467878] PLS Initialized [2025.11.16-05.35.25:164][236]LogStreaming: Display: FlushAsyncLoading(2642): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.25:297][236]LogHAL: NoLogging: 1101 [2025.11.16-05.35.25:297][236]LoadErrors: Warning: While trying to load package /Game/GameElements/Objectives/Old/Salvage/EVENT_DropPodDefense_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_25_UplinkProgress_50p was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_25_UplinkProgress_50p has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_25_UplinkProgress_50p'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.25:297][236]LogHAL: NoLogging: [2025.11.16-05.35.25:297][236]LogHAL: NoLogging: 1101 [2025.11.16-05.35.25:297][236]LoadErrors: Warning: While trying to load package /Game/GameElements/Objectives/Old/Salvage/EVENT_DropPodDefense_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_26_UplinkProgress_75p was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_26_UplinkProgress_75p has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_26_UplinkProgress_75p'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.25:297][237]LogHAL: NoLogging: [2025.11.16-05.35.26:058][393]LogStreaming: Display: FlushAsyncLoading(2643): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.26:135][393]LogStaticMesh: [SM_elevatorCable] Mesh is marked for CPU read. [2025.11.16-05.35.26:139][393]LogHAL: NoLogging: 1101 [2025.11.16-05.35.26:139][393]LoadErrors: Warning: While trying to load package /Game/GameElements/Elevator/BP_Elevator_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.26:139][394]LogHAL: NoLogging: [2025.11.16-05.35.29:270][918]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.FSDWorldSettings.AudioComponent_2147467567' for section '/Game/UI/Menus/Menu_LoadingScreen/UI_LoadingScreen_FirstStage.UI_LoadingScreen_FirstStage_C:AnimText_INST.AnimText.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.16-05.35.29:759][999]LogStreaming: Display: FlushAsyncLoading(2648): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.29:830][ 4]LogStreaming: Display: FlushAsyncLoading(2655): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.29:914][ 4]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: 1101 [2025.11.16-05.35.29:960][ 4]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/HackingTool/UI/Defuse/HackingTool_DefuseBomb, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_StartHacking was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_StartHacking has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_StartHacking'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: 1101 [2025.11.16-05.35.29:960][ 4]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/HackingTool/UI/Defuse/HackingTool_DefuseBomb, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireCut was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireCut has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireCut'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: 1101 [2025.11.16-05.35.29:960][ 4]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/HackingTool/UI/Defuse/HackingTool_DefuseBomb, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireFail was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireFail has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireFail'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: 1101 [2025.11.16-05.35.29:960][ 4]LoadErrors: Warning: While trying to load package /Game/GameElements/GameEvents/RivalBombEvent/BP_RivalBombNode, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointRivalEventAntennaNode was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointRivalEventAntennaNode has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointRivalEventAntennaNode'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: [2025.11.16-05.35.29:960][ 4]LogHAL: NoLogging: 1101 [2025.11.16-05.35.29:960][ 4]LoadErrors: Warning: While trying to load package /Game/GameElements/GameEvents/RivalBombEvent/BP_RivalBombNode, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_Activated was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_Activated has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_Activated'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.29:960][ 5]LogHAL: NoLogging: [2025.11.16-05.35.29:960][ 5]LogHAL: NoLogging: 1101 [2025.11.16-05.35.29:960][ 5]LoadErrors: Warning: While trying to load package /Game/GameElements/RewardGivers/Supplies/BP_BXE_SupplyCrate_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_BrokenSuplyPod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_BrokenSuplyPod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_BrokenSuplyPod'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.29:960][ 5]LogHAL: NoLogging: [2025.11.16-05.35.30:185][ 43]BP_ProceduralController: [ProceduralController] SendRoomData (Client) to Tubbins, Seed -1155701568, RoomsInitialState Length = 7, PathObstacles Length = 3 [2025.11.16-05.35.30:185][ 43]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] Start Wait : FromData - IsInitialized [2025.11.16-05.35.30:185][ 43]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] End Wait :FromData - IsInitialized [2025.11.16-05.35.30:185][ 43]FSDLog_Procedural: AProceduralSetup::SetSeed 9d9fe170: Server: False PLSSeed: -1155701568 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147467878) [2025.11.16-05.35.30:185][ 43]LogTemp: Warning: FloodFiller Seed: -1155701568 [2025.11.16-05.35.30:185][ 43]FSDLog_Procedural: Warning: NoisyPathfinder Seed: -1155701568 [2025.11.16-05.35.30:185][ 43]FSDLog_Procedural: PathFiller Seed: -1155701568 [2025.11.16-05.35.30:185][ 43]LogTemp: Warning: FeatureFiller Seed: -1155701568 [2025.11.16-05.35.30:186][ 43]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] Start Wait : GenerateLandscape - Objectives [2025.11.16-05.35.30:186][ 43]FSDLog_Startup: Warning: HasObjectivesReplicated - objective = Obj_BXE_C_2147467902 [2025.11.16-05.35.30:186][ 43]FSDLog_Startup: Warning: HasObjectivesReplicated - objective = OBJ_BXE_SecureContainer_Defense_C_2147467901 [2025.11.16-05.35.30:186][ 43]FSDLog_Startup: Warning: HasObjectivesReplicated - HasReplicated = 1 [2025.11.16-05.35.30:186][ 43]FSDLog_Startup: Warning: HasObjectivesReplicated - Manual run through objective components on gamestate = Obj_BXE_C_2147467902 [2025.11.16-05.35.30:186][ 43]FSDLog_Startup: Warning: HasObjectivesReplicated - Manual run through objective components on gamestate = OBJ_BXE_SecureContainer_Defense_C_2147467901 [2025.11.16-05.35.30:186][ 43]BP_Actor_Macros: [PLS_RC_Random_C_2147467878] End Wait :GenerateLandscape - Objectives [2025.11.16-05.35.30:186][ 43]PLS_Base: [PLS_RC_Random_C_2147467878] CavesAdv -> Generate Landscape From Data [2025.11.16-05.35.30:292][ 60]FSDLog_Procedural: ADeepCSGWorld::SelectDebrisSettings: Selecting Debris DBA_CrystalCaves_C [2025.11.16-05.35.30:293][ 60]FSDLog_Procedural: ADebrisDataActor::InitializeChildren - Seed: -1155701568 [2025.11.16-05.35.30:374][ 73]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.080654 [2025.11.16-05.35.30:413][ 79]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.039583 [2025.11.16-05.35.30:438][ 83]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.024589 [2025.11.16-05.35.30:440][ 84]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.30:440][ 84]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Initial Carve [2025.11.16-05.35.30:529][ 98]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (181062/594637), Verts (0/1306283), Faces (0/268234) [2025.11.16-05.35.30:530][ 98]FSDLog_Terrain: OnBaseLayerCommitDone 1 [2025.11.16-05.35.30:599][109]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.004092 [2025.11.16-05.35.30:611][111]FSDLog_Procedural: FSDPathFiller::Run - PathSize 12 Runtime 0.010681 [2025.11.16-05.35.30:620][113]FSDLog_Procedural: FSDPathFiller::Run - PathSize 8 Runtime 0.008981 [2025.11.16-05.35.30:635][115]FSDLog_Procedural: FSDPathFiller::Run - PathSize 12 Runtime 0.012534 [2025.11.16-05.35.30:636][115]FSDLog_Procedural: FSDPathFiller::Run - PathSize 2 Runtime 0.001230 [2025.11.16-05.35.30:643][117]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.30:643][117]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Carve Tunnels [2025.11.16-05.35.30:719][129]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (228688/825303), Verts (304097/2525764), Faces (62358/529554) [2025.11.16-05.35.30:721][129]FSDLog_Terrain: OnBaseLayerCommitDone 2 [2025.11.16-05.35.30:785][140]FSDLog_Procedural: ProceduralController - Client_ReceiveCarverSizes : 1 [2025.11.16-05.35.30:785][140]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver [2025.11.16-05.35.30:785][140]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver - FullyReplicated [2025.11.16-05.35.30:785][140]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - CarverData Received, Pass: PrePlacement [2025.11.16-05.35.30:785][140]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - Generate Pass 0 Client [2025.11.16-05.35.30:785][140]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.30:785][140]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) PrePlacementCarvers [2025.11.16-05.35.30:846][150]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (118052/716651), Verts (74975/2404015), Faces (15474/508108) [2025.11.16-05.35.30:847][150]FSDLog_Terrain: OnBaseLayerCommitDone 3 [2025.11.16-05.35.30:900][159]FSDLog_Procedural: ProceduralController - Client_ReceiveCarverSizes : 1 [2025.11.16-05.35.30:901][159]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver [2025.11.16-05.35.30:901][159]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver - FullyReplicated [2025.11.16-05.35.30:901][159]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - CarverData Received, Pass: Plague [2025.11.16-05.35.30:901][159]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - Generate Critical Large Pass Client [2025.11.16-05.35.30:901][159]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.30:901][159]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Critical Items Large [2025.11.16-05.35.31:379][234]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (1674443/3298486), Verts (276503/2812396), Faces (59230/600749) [2025.11.16-05.35.31:385][234]FSDLog_Terrain: OnBaseLayerCommitDone 4 [2025.11.16-05.35.31:394][236]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.008355 [2025.11.16-05.35.31:407][238]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.013063 [2025.11.16-05.35.31:407][238]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.000196 [2025.11.16-05.35.31:416][240]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.31:416][240]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Special Events [2025.11.16-05.35.31:472][249]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (240536/1932504), Verts (424682/3335017), Faces (89654/713433) [2025.11.16-05.35.31:477][249]FSDLog_Terrain: OnBaseLayerCommitDone 5 [2025.11.16-05.35.31:479][250]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.31:479][250]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Critical Items Small [2025.11.16-05.35.31:490][252]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/1691968), Verts (0/2910335), Faces (0/623779) [2025.11.16-05.35.31:491][252]FSDLog_Terrain: OnBaseLayerCommitDone 6 [2025.11.16-05.35.31:497][253]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.31:529][258]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467502 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 4 times [2025.11.16-05.35.31:566][264]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 5 times [2025.11.16-05.35.31:572][265]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 6 times [2025.11.16-05.35.31:577][266]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 6 times [2025.11.16-05.35.31:583][267]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 7 times [2025.11.16-05.35.31:590][268]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 1 times [2025.11.16-05.35.31:609][271]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 3 times [2025.11.16-05.35.31:615][272]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 5 times [2025.11.16-05.35.31:621][273]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467499 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 5 times [2025.11.16-05.35.31:658][279]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 7 times [2025.11.16-05.35.31:665][280]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 11 times [2025.11.16-05.35.31:670][281]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 8 times [2025.11.16-05.35.31:677][282]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 10 times [2025.11.16-05.35.31:682][283]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 16 times [2025.11.16-05.35.31:689][284]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 9 times [2025.11.16-05.35.31:695][285]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 12 times [2025.11.16-05.35.31:701][286]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 8 times [2025.11.16-05.35.31:707][287]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 9 times [2025.11.16-05.35.31:713][288]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 11 times [2025.11.16-05.35.31:719][289]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 9 times [2025.11.16-05.35.31:725][290]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 9 times [2025.11.16-05.35.31:731][291]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 6 times [2025.11.16-05.35.31:737][292]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 12 times [2025.11.16-05.35.31:744][293]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 6 times [2025.11.16-05.35.31:750][294]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 8 times [2025.11.16-05.35.31:756][295]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 8 times [2025.11.16-05.35.31:761][296]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 7 times [2025.11.16-05.35.31:768][297]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 3 times [2025.11.16-05.35.31:775][298]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 3 times [2025.11.16-05.35.31:780][299]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 6 times [2025.11.16-05.35.31:786][300]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 9 times [2025.11.16-05.35.31:792][301]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 10 times [2025.11.16-05.35.31:798][302]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 12 times [2025.11.16-05.35.31:811][304]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (353641/2435087), Verts (0/2910335), Faces (0/623779) [2025.11.16-05.35.31:817][305]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 11 times [2025.11.16-05.35.31:823][306]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 6 times [2025.11.16-05.35.31:828][307]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 11 times [2025.11.16-05.35.31:837][308]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 8 times [2025.11.16-05.35.31:841][309]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 9 times [2025.11.16-05.35.31:848][310]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 17 times [2025.11.16-05.35.31:853][311]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 10 times [2025.11.16-05.35.31:860][312]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 7 times [2025.11.16-05.35.31:866][313]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 16 times [2025.11.16-05.35.31:873][314]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 6 times [2025.11.16-05.35.31:878][315]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 6 times [2025.11.16-05.35.31:885][316]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 4 times [2025.11.16-05.35.31:898][318]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467497 (mat TM_Biome_CrystalCave_Rock01, noise 30.000000) carved 3 times [2025.11.16-05.35.31:921][322]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 1 times [2025.11.16-05.35.31:928][323]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 2 times [2025.11.16-05.35.31:934][324]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 5 times [2025.11.16-05.35.31:940][325]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 8 times [2025.11.16-05.35.31:947][326]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 1 times [2025.11.16-05.35.31:952][327]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 4 times [2025.11.16-05.35.31:965][329]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 3 times [2025.11.16-05.35.31:978][331]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 2 times [2025.11.16-05.35.31:983][332]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 7 times [2025.11.16-05.35.31:996][334]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 4 times [2025.11.16-05.35.32:003][335]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467496 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 4 times [2025.11.16-05.35.32:016][337]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467493 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 6 times [2025.11.16-05.35.32:021][338]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467493 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 10 times [2025.11.16-05.35.32:028][339]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467493 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 5 times [2025.11.16-05.35.32:034][340]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467493 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 2 times [2025.11.16-05.35.32:059][344]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467493 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 7 times [2025.11.16-05.35.32:065][345]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467493 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 3 times [2025.11.16-05.35.32:153][359]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467491 (mat TM_Biome_CrystalCaves_Crystal01, noise 15.000000) carved 6 times [2025.11.16-05.35.32:593][425]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (2295121/4294147), Verts (2572772/8287133), Faces (550964/1821730) [2025.11.16-05.35.32:606][425]FSDLog_Terrain: OnBaseLayerCommitDone 7 [2025.11.16-05.35.32:610][427]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467481 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 2 times [2025.11.16-05.35.32:614][428]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467481 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 7 times [2025.11.16-05.35.32:621][429]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467481 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 2 times [2025.11.16-05.35.32:636][431]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467481 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 3 times [2025.11.16-05.35.32:642][432]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467481 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 9 times [2025.11.16-05.35.32:650][433]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467481 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 2 times [2025.11.16-05.35.32:680][438]FSDLog_Procedural: ProceduralController - Client_ReceiveCarverSizes : 1 [2025.11.16-05.35.32:680][438]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver [2025.11.16-05.35.32:680][438]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver - FullyReplicated [2025.11.16-05.35.32:680][438]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - CarverData Received, Pass: DebrisLarge [2025.11.16-05.35.32:680][438]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - Generate DebrisLarge Client [2025.11.16-05.35.32:680][438]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.32:680][438]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Large Carvers [2025.11.16-05.35.32:711][443]FSDLog_Terrain: DebrisCarver DebrisCarved_2147467479 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 1 times [2025.11.16-05.35.33:042][495]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (1527222/3602047), Verts (2045013/8046638), Faces (454891/1792403) [2025.11.16-05.35.33:053][495]FSDLog_Terrain: OnBaseLayerCommitDone 8 [2025.11.16-05.35.33:054][495]FSDLog_Procedural: FSDPathFiller::Run - PathSize 3 Runtime 0.001290 [2025.11.16-05.35.33:806][615]FSDLog_Procedural: ProceduralController - Client_ReceiveCarverSizes : 0 [2025.11.16-05.35.33:806][615]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - CarverData Received, Pass: Dirt [2025.11.16-05.35.33:806][615]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - Generate Dirt Client [2025.11.16-05.35.33:806][615]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.33:837][620]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (66992/2142492), Verts (256428/6243273), Faces (57282/1391405) [2025.11.16-05.35.33:841][620]FSDLog_Terrain: OnBaseLayerCommitDone 9 [2025.11.16-05.35.33:841][620]FSDLog_Procedural: UVeinResourceData::CreateInPLS RES_VEIN_Expenite BaseAmount: 250.000000, DensityModifier: 1.000000, Total Amount: 250.000000, UnitsPerLength 8.000000, Total Length 3125.000000 [2025.11.16-05.35.33:841][620]LogStreaming: Display: FlushAsyncLoading(2663): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.33:846][620]FSDLog_Procedural: UCarvedResourceData::CreateInPLS RES_CARVED_RedSugar BaseAmount: 36.000000, DensityModifier: 1.000000 Total Carvers: 8 [2025.11.16-05.35.33:846][620]FSDLog_Procedural: UCollectableResourceData::CreateInPLS RES_COLLECT_Camera BaseAmount: 1.905116, DensityModifier: 1.000000 Total Amount: 2 [2025.11.16-05.35.33:869][620]FSDLog_Procedural: Created Carved resource RES_CARVED_RedSugar Desired: 8 Spawned: 8 Overflow: 0.000000 [2025.11.16-05.35.33:896][627]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.33:896][627]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Veins [2025.11.16-05.35.34:056][652]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (670056/2788221), Verts (1391340/7691331), Faces (310084/1714605) [2025.11.16-05.35.34:064][652]FSDLog_Terrain: OnBaseLayerCommitDone 10 [2025.11.16-05.35.34:133][665]FSDLog_Procedural: ProceduralController - Client_ReceiveCarverSizes : 1 [2025.11.16-05.35.34:145][667]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver [2025.11.16-05.35.34:145][667]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver - FullyReplicated [2025.11.16-05.35.34:145][667]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - CarverData Received, Pass: Main [2025.11.16-05.35.34:379][707]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.34:379][707]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (Client) Instant Carvers [2025.11.16-05.35.34:497][727]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (102123/3035858), Verts (0/6299991), Faces (0/1404521) [2025.11.16-05.35.34:923][793]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (2062924/4608486), Verts (2618125/10468787), Faces (584033/2317528) [2025.11.16-05.35.34:937][793]FSDLog_Terrain: OnBaseLayerCommitDone 11 [2025.11.16-05.35.34:938][793]FSDLog_Procedural: Count Veins: RES_VEIN_Expenite , Target 250.000000, Actual 256.222717 [2025.11.16-05.35.34:939][793]FSDLog_Procedural: Count Veins: Red Sugar , Target 36.000000, Actual 35.282009 [2025.11.16-05.35.34:950][794]FSDLog_Procedural: Created Carved resource RES_CARVED_RedSugar Desired: 8 Spawned: 1 Overflow: 0.000000 [2025.11.16-05.35.34:951][795]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.34:951][795]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Generate Missing Resources [2025.11.16-05.35.35:005][805]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (42337/2591612), Verts (23829/7898327), Faces (5359/1744013) [2025.11.16-05.35.35:009][805]FSDLog_Terrain: OnBaseLayerCommitDone 12 [2025.11.16-05.35.35:009][805]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.16-05.35.35:009][805]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Small Carvers [2025.11.16-05.35.35:023][808]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/2549275), Verts (0/7874498), Faces (0/1738654) [2025.11.16-05.35.35:023][808]FSDLog_Terrain: OnBaseLayerCommitDone 13 [2025.11.16-05.35.35:079][817]FSDLog_Procedural: ProceduralController - Client_ReceiveCarverSizes : 1 [2025.11.16-05.35.35:084][818]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver [2025.11.16-05.35.35:084][818]FSDLog_Procedural: ProceduralController - Client_ReceivePLSLevelCarver - FullyReplicated [2025.11.16-05.35.35:084][818]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - CarverData Received, Pass: PostDebris [2025.11.16-05.35.35:084][818]PLS_Base: [PLS_RC_Random_C_2147467878] PLS - Generate Post Debris Client [2025.11.16-05.35.35:084][818]PLS_Base: [PLS_RC_Random_C_2147467878] Pass Complete: (All) Post Debris [2025.11.16-05.35.35:929][946]FSDLog_Terrain: Spawned 4892 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_CrystalCaves_C_2147467506.D_RoofSpikes_Small.DebrisMesh_2147467500 [2025.11.16-05.35.35:935][947]FSDLog_Terrain: Spawned 12942 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_CrystalCaves_C_2147467506.D_Rubble.DebrisMesh_2147467498 [2025.11.16-05.35.35:936][947]FSDLog_Terrain: Spawned 12839 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_CrystalCaves_C_2147467506.D_Rubble.DebrisMesh_2147467498 [2025.11.16-05.35.35:937][947]FSDLog_Terrain: Spawned 2542 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_CrystalCaves_C_2147467506.D_Rubble.DebrisMesh_2147467498 [2025.11.16-05.35.35:938][947]FSDLog_Terrain: Spawned 2477 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_CrystalCaves_C_2147467506.D_Rubble.DebrisMesh_2147467498 [2025.11.16-05.35.35:981][955]FSDLog_Terrain: Spawned 1011 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_DeepCore_Elements_C_2147467485.D_Rubble_Spiky 1.DebrisMesh_2147467484 [2025.11.16-05.35.36:042][965]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (2200845/4868944), Verts (3207781/12287608), Faces (704045/2720978) [2025.11.16-05.35.36:058][965]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 400 [2025.11.16-05.35.36:058][965]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 200 [2025.11.16-05.35.36:058][965]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 200 [2025.11.16-05.35.36:671][ 73]LogStreaming: Display: FlushAsyncLoading(2665): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.37:434][205]FSDLog_Terrain: OnFinalLayerCommitDone [2025.11.16-05.35.39:169][512]FSDLog_Audio: Music: Replicated: Start Music: Amb_CrystalCaveAmbix_Cue [2025.11.16-05.35.39:196][517]LogStreaming: Display: FlushAsyncLoading(2666): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.40:178][660]FSDLog_Audio: Music: Replicated: Start Music: ST_RC_3_Looping_MSS [2025.11.16-05.35.40:180][660]LogMetaSound: Warning: A non-zero StartTime (1.04) was used in asset 'ST_RC_3_Looping_MSS' that doesn't implement the Start Time interface. StartTime will be ignored. [2025.11.16-05.35.40:209][665]LogStreaming: Display: FlushAsyncLoading(2667): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.40:210][665]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.35.40:210][665]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.35.40:210][665]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.16-05.35.40:210][665]FSDLog_Gameflow: FADING (49.662844): Screen_LoadLevel_C_2147467855: BlackoutScreen [2025.11.16-05.35.40:210][665]FSDLog_Gameflow: 49.700001 Screen_LoadLevel_C_2147467855: BlackoutScreen [2025.11.16-05.35.40:210][665]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.35.40:210][665]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.16-05.35.40:210][665]LogSlate: Slate User Unregistered. User Index 8 [2025.11.16-05.35.40:215][665]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.16-05.35.40:215][665]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.16-05.35.40:217][665]LogMovieScene: Starting new camera cut: 'CineCameraActor_2' [2025.11.16-05.35.40:219][665]LogHAL: NoLogging: 1101 [2025.11.16-05.35.40:219][665]LoadErrors: Warning: While trying to load package /Game/Character/Tutorials/Tutorial_Hint_BoscoFirstSoloMission, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_Bosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_Bosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_Bosco'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.40:219][666]LogHAL: NoLogging: [2025.11.16-05.35.40:227][667]LogStreaming: Display: FlushAsyncLoading(2671): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.40:240][667]LogSlate: New Slate User Created. Platform User Id 9, User Index 9, Is Virtual User: 1 [2025.11.16-05.35.40:240][667]LogSlate: Slate User Registered. User Index 9, Is Virtual User: 1 [2025.11.16-05.35.40:241][667]LogSlate: Slate User Unregistered. User Index 9 [2025.11.16-05.35.40:241][667]LogSlate: Slate User Destroyed. User Index 9, Is Virtual User: 1 [2025.11.16-05.35.40:241][667]LogSlate: Slate User Unregistered. User Index 9 [2025.11.16-05.35.40:282][675]LogMovieScene: Starting new camera cut: 'CineCameraActor_2' [2025.11.16-05.35.40:297][678]LogStreaming: Display: FlushAsyncLoading(2683): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.40:355][678]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.16-05.35.40:357][678]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.16-05.35.40:357][678]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.16-05.35.40:451][694]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.16-05.35.40:451][694]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds [2025.11.16-05.35.40:451][694]LVL_Loading_StartRun: [LVL_Loading_StartRun_C_0] LoaderSequence STOP [2025.11.16-05.35.40:458][694]LVL_Loading_Elevator: [LVL_Loading_Elevator_C_1] LoaderSequence STOP [2025.11.16-05.35.40:458][694]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Normal World [2025.11.16-05.35.40:458][694]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.16-05.35.40:459][694]FSDLog_Gameflow: FADING (49.913086): Screen_LoadLevel_C_2147467855: FadeScreenFromBlack [2025.11.16-05.35.40:459][694]FSDLog_Gameflow: 49.900002 Screen_LoadLevel_C_2147467855: FadeScreenFromBlack [2025.11.16-05.35.40:613][697]LogNet: Warning: UNetDriver::ProcessRemoteFunction: No owning connection for actor BP_RetconCharacter_C_2147466451. Function SetHeadLight will not be processed. [2025.11.16-05.35.40:637][699]LogStreaming: Display: FlushAsyncLoading(2703): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.40:733][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 180 [2025.11.16-05.35.40:733][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 288 [2025.11.16-05.35.40:733][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 1968 [2025.11.16-05.35.40:733][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 216 [2025.11.16-05.35.40:736][699]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/RamrodMediumlConvReverb_Submix.RamrodMediumlConvReverb_Submix. [2025.11.16-05.35.40:736][699]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/ReverbSubmix.ReverbSubmix. [2025.11.16-05.35.40:736][699]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/RamrodLargeConvReverb_Submix.RamrodLargeConvReverb_Submix. [2025.11.16-05.35.40:736][699]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/DimensionEchoTEST.DimensionEchoTEST. [2025.11.16-05.35.40:736][700]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/ReverbSubmix.ReverbSubmix. [2025.11.16-05.35.40:736][700]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/RamrodSmallConvReverb_Submix.RamrodSmallConvReverb_Submix. [2025.11.16-05.35.41:624][877]LogStreaming: Display: FlushAsyncLoading(2705): 1 QueuedPackages, 67 AsyncPackages [2025.11.16-05.35.41:743][877]LogHAL: NoLogging: 1101 [2025.11.16-05.35.41:743][877]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.16-05.35.41:743][878]LogHAL: NoLogging: [2025.11.16-05.35.41:744][878]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.41:745][878]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.35.41:756][878]BP_HUD: [BP_HUD_C_2147466274] HUD Spawned: HUD_Main_C_2147464838 [2025.11.16-05.35.41:837][893]HUD_Main_BXE: [HUD_Main_C_2147464838] HUD_Main: Constructing [2025.11.16-05.35.41:839][893]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:9 [2025.11.16-05.35.41:920][911]HUD_Flares: [BS_Flares_330] Flare Count: 4 [2025.11.16-05.35.42:497][ 29]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.35.44:403][406]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.35.46:351][779]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.35.48:197][118]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.35.49:896][403]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.35.50:829][546]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 360 [2025.11.16-05.35.50:829][546]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 360 [2025.11.16-05.35.50:829][546]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 252 [2025.11.16-05.35.50:830][546]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 360 [2025.11.16-05.35.51:818][687]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.35.52:971][849]LogStreaming: Display: FlushAsyncLoading(2726): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.35.56:000][187]LogStreaming: Display: FlushAsyncLoading(2728): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.36.09:414][ 90]LogScript: Warning: Script Msg: Attempted to access index 0 from array 'playersInside' of length 0 in '/Script/RogueCore.PlayersNegotiationSphere'! [2025.11.16-05.36.09:414][ 90]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147466254] Defenders : 1 [2025.11.16-05.36.09:596][115]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147466254] Defenders : 2 [2025.11.16-05.36.10:906][295]BP_Barrier: [BP_Barrier_C_2147466273] Open [2025.11.16-05.36.10:907][295]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147466254] Defenders : 0 [2025.11.16-05.36.16:903][184]BP_Barrier: [BP_Barrier_C_2147466273] Close [2025.11.16-05.36.22:910][367]LogStreaming: Display: FlushAsyncLoading(2734): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.36.22:919][367]LogStaticMesh: [SM_RiftParticleMesh] Mesh is marked for CPU read. [2025.11.16-05.36.24:154][595]LogStreaming: Display: FlushAsyncLoading(2735): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.36.24:225][595]LogHAL: NoLogging: 1101 [2025.11.16-05.36.24:225][595]LoadErrors: Warning: While trying to load package /Game/Enemies/CoreSpawn/Crawler/BP_Crawler_Puddle, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_LaserPoint was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_LaserPoint has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'D:/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_LaserPoint'. Perhaps it has been deleted or was not synced? [2025.11.16-05.36.24:225][596]LogHAL: NoLogging: [2025.11.16-05.36.31:069][648]LogStreaming: Display: FlushAsyncLoading(2736): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.36.35:914][439]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147467721] Defenders : 2 [2025.11.16-05.36.37:848][735]LogStreaming: Display: FlushAsyncLoading(2738): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.36.37:868][735]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.16-05.36.37:868][735]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.36.37:870][735]FSDLog_Gameflow: FADING (107.299029): [2025.11.16-05.36.37:989][735]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.36.37:989][735]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.36.37:989][735]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.36.37:989][735]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.36.38:867][879]LogMovieScene: Initializing a legacy player for sequence 'YourTurnAnim_INST'. [2025.11.16-05.36.46:813][154]FSDLog_Gameflow: FADING (107.305740): [2025.11.16-05.36.49:749][634]FSDLog_Gameflow: FADING (107.305740): [2025.11.16-05.36.52:102][ 20]FSDLog_Gameflow: FADING (107.305740): [2025.11.16-05.36.52:102][ 20]LogStreaming: Display: FlushAsyncLoading(2746): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.36.52:141][ 20]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.36.52:174][ 20]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.16-05.36.52:178][ 20]FSDLog_Gameflow: FADING (107.305740): [2025.11.16-05.36.56:054][657]FSDLog_Gameflow: FADING (107.305740): [2025.11.16-05.36.56:054][657]WND_BXE_Negotiation: [WND_BXE_Negotiation_C_2147463338] 3RD Person Sound [2025.11.16-05.36.56:054][657]LogMovieScene: Initializing a legacy player for sequence 'YourTurnAnim_INST'. [2025.11.16-05.36.56:054][657]LogStreaming: Display: FlushAsyncLoading(2753): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.37.03:171][803]FSDLog_Gameflow: FADING (107.305740): [2025.11.16-05.37.05:190][133]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.37.05:211][134]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.16-05.37.05:211][134]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.16-05.37.05:211][134]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.16-05.37.05:216][136]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147467721] Defenders : 0 [2025.11.16-05.37.12:055][126]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147467738] Defenders : 2 [2025.11.16-05.37.12:103][133]LogMetaSound: Warning: Underrun detected in audio bus writer node. [2025.11.16-05.37.12:763][225]LogMetaSound: Warning: Underrun detected in audio bus writer node. [2025.11.16-05.37.15:141][564]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.37.17:067][841]LogNetPlayerMovement: Warning: CreateSavedMove: Hit limit of 96 saved moves (timing out or very bad ping?) [2025.11.16-05.37.17:346][878]LogStreaming: Display: FlushAsyncLoading(2772): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.37.17:366][878]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.16-05.37.17:366][878]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.37.17:368][878]FSDLog_Gameflow: FADING (119.448415): [2025.11.16-05.37.17:418][878]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147467738] Defenders : 0 [2025.11.16-05.37.17:421][878]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.37.17:421][878]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.37.17:421][878]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.37.17:421][878]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.16-05.37.18:340][ 19]LogMovieScene: Initializing a legacy player for sequence 'YourTurnAnim_INST'. [2025.11.16-05.37.23:861][834]FSDLog_Gameflow: FADING (119.456408): [2025.11.16-05.37.25:536][ 83]FSDLog_Gameflow: FADING (119.456408): [2025.11.16-05.37.27:556][383]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.37.32:050][ 82]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.FSDWorldSettings.AudioComponent_2147457285' for section '/Game/UI/HUD_MainOnscreen/HostileReadings/HUD_HostileReading.HUD_HostileReading_C:Enter_INST.Enter.MovieSceneAudioTrack_0.MovieSceneAudioSection_1' on actor '<null>' [2025.11.16-05.37.41:929][ 2]LogStreaming: Display: FlushAsyncLoading(2778): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.37.44:116][416]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 950 [2025.11.16-05.37.46:391][821]LogNiagara: Warning: UNiagaraFunctionLibrary::OverrideSystemUserVariableSkeletalMeshComponent: Did not find a matching Skeletal Mesh Data Interface variable named "SkeletalMesh" in the User variables of NiagaraSystem "NiagaraComponent /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.FSDWorldSettings.NiagaraComponent_2147457060" . [2025.11.16-05.37.52:404][971]LogNet: Warning: UNetDriver::ProcessRemoteFunction: No owning connection for actor WPN_PlatformGun_BXE_C_2147460348. Function Server_StartUsing will not be processed. [2025.11.16-05.37.52:404][971]LogNet: Warning: UNetDriver::ProcessRemoteFunction: No owning connection for actor WPN_PlatformGun_BXE_C_2147460348. Function Server_StopFire will not be processed. [2025.11.16-05.38.25:243][625]LogStreaming: Display: FlushAsyncLoading(2781): 1 QueuedPackages, 0 AsyncPackages [2025.11.16-05.38.46:385][516]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock [2025.11.16-05.38.46:385][516]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.38.46:385][516]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147467918] Request Open Chat [2025.11.16-05.38.47:489][721]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture [2025.11.16-05.38.47:490][721]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.39.29:744][101]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock [2025.11.16-05.39.29:744][101]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.39.29:744][101]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147467918] Request Open Chat [2025.11.16-05.39.32:192][516]DiscordWrap: inputProcessor ignore invite [2025.11.16-05.39.33:172][683]DiscordWrap: inputProcessor ignore invite [2025.11.16-05.39.33:212][690]DiscordWrap: inputProcessor reject invite [2025.11.16-05.39.33:612][758]DiscordWrap: inputProcessor ignore invite [2025.11.16-05.39.34:001][824]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture [2025.11.16-05.39.34:001][824]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.39.45:210][656]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock [2025.11.16-05.39.45:210][656]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.16-05.39.45:210][656]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147467918] Request Open Chat [2025.11.16-05.39.45:759][747]DiscordWrap: inputProcessor ignore invite [2025.11.16-05.39.47:520][ 41]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture [2025.11.16-05.39.47:520][ 41]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.16-05.39.49:510][367]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:511][367]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:517][368]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:523][369]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:528][370]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:534][371]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:540][372]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:546][373]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:552][374]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:557][375]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:563][376]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:568][377]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:574][378]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:580][379]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:586][380]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:592][381]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:597][382]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:604][383]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:609][384]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:615][385]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:620][386]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:626][387]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:632][388]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:638][389]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:644][390]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:650][391]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:655][392]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:661][393]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:666][394]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:672][395]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:678][396]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:683][397]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:689][398]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets! [2025.11.16-05.39.49:696][399]LogStreamableManager: Display: RequestAsyncLoad() called with empty or only null assets!
Comments
No comments yet.
Loading comments...
Loading comments...
0 comments loaded
You need to join this project to comment on issues.
Join Project