Uploaded on: 07.01.2025
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 | ==========================================================================
DEBUG SPEW: No debug_filter.cfg found, so only general, error, warning and
scripting categories can be shown and no debug_filter.cfg info will be saved.
==========================================================================
Opened log 'C:\Users\wssmi\AppData\Roaming\HardLightProductions\FreeSpaceOpen\data\fs2_open.log', Tue Jan 07 16:18:24 2025 ...
Legacy config mode is DISABLED.
Reason: Legacy mode disabled since the new config location was used more recently than the old location.
Setting local mod settings ini file to 'data/MoGW-omni_settings.ini'
Initializing SDL 2.26.5 (compiled with 2.26.5)...
FreeSpace 2 Open version: 24.2.0
Passed cmdline options:
-soft_particles
-aa
-aa_preset 3
-orbradar
-rearm_timer
-mod MoGW-omni-1.1.2,fsport-mediavps-4.7.2,fsport-3.7.3,MVPS-4.7.3
-window
-parse_cmdline_only
-ship_choice_3d
-weapon_choice_3d
-no_screenshake
-nomotiondebris
-3dwarp
Deprecated flag '-ship_choice_3d' found. Please remove from your cmdline.
Deprecated flag '-weapon_choice_3d' found. Please remove from your cmdline.
Deprecated flag '-no_screenshake' found. Please remove from your cmdline.
Deprecated flag '-nomotiondebris' found. Please remove from your cmdline.
Deprecated flag '-3dwarp' found. Please remove from your cmdline.
Building file index...
Found root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\core.vp' with a checksum of 0xc43b24d1
Found root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\Hellgate_Ikeya.vpc' with a checksum of 0x3edd34c4
Found root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\Light_Of_Antares.vpc' with a checksum of 0x057d58c8
Found root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\Rain_On_Ribos_IV.vpc' with a checksum of 0x3be318b4
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_47x.vpc' with a checksum of 0xe1c97dbe
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_music.vpc' with a checksum of 0x953a9963
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_remix.vpc' with a checksum of 0x3b4c6296
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_TACskins.vpc' with a checksum of 0x2483bcbd
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng1_fs1.vpc' with a checksum of 0x4598450c
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng2_fs1.vpc' with a checksum of 0xe357af06
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng3_fs1.vpc' with a checksum of 0xa6bd406b
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng4_fs1.vpc' with a checksum of 0xa123726b
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng5_fs1.vpc' with a checksum of 0x59ef1d6c
Found root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\warble_fs1_supplemental.vpc' with a checksum of 0x8ba5f3b5
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\fsport-missions.vpc' with a checksum of 0x449582e8
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\fsport3_7.vpc' with a checksum of 0x0c41ee3b
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\odeon_fs1.vpc' with a checksum of 0x9db5a4ac
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\sparky_hi_fs1.vpc' with a checksum of 0x2db6a563
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\stu_fs1.vpc' with a checksum of 0xc9e1a0ca
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_fs1.vpc' with a checksum of 0x5677aabb
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi1_fs1.vpc' with a checksum of 0x3253936e
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi2_fs1.vpc' with a checksum of 0x987c6026
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi3_fs1.vpc' with a checksum of 0x3ba81948
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi4_fs1.vpc' with a checksum of 0xa5b35968
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi5_fs1.vpc' with a checksum of 0x20d4282a
Found root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\warble_fs1.vpc' with a checksum of 0x0b608285
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_A_Warp.vp' with a checksum of 0x9658a8f8
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced1.vp' with a checksum of 0x925fae17
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced2.vp' with a checksum of 0xc3a408b5
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced3.vp' with a checksum of 0x15ee2126
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced4.vp' with a checksum of 0xbad575a4
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced5.vp' with a checksum of 0x875a8fa6
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_AnimGlows.vp' with a checksum of 0x21fa6154
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets.vp' with a checksum of 0xa3ed0eab
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S.vp' with a checksum of 0x16c62a7f
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S_Maps1.vp' with a checksum of 0x4d3207d7
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S_Maps2.vp' with a checksum of 0xa9a86c54
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S_Maps3.vp' with a checksum of 0x2143555c
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_1.vp' with a checksum of 0xad5a9aa4
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_2.vp' with a checksum of 0x0bb51352
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps1.vp' with a checksum of 0x2aad5925
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps2.vp' with a checksum of 0xad822e2a
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps3.vp' with a checksum of 0xd46cb944
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps4.vp' with a checksum of 0x29c3873d
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps5.vp' with a checksum of 0x56909467
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps6.vp' with a checksum of 0x86541bc2
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps7.vp' with a checksum of 0x59c0bc29
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_V.vp' with a checksum of 0x518d32e5
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_V_Maps1.vp' with a checksum of 0x4231f9f8
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_V_Maps2.vp' with a checksum of 0xafda7532
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_CB_ANI_1.vp' with a checksum of 0x30a95a21
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_CB_ANI_2.vp' with a checksum of 0x220d84d8
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_CB_ANI_3.vp' with a checksum of 0x0ff94ac9
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Compatibility.vp' with a checksum of 0x450ef336
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Effects_1.vp' with a checksum of 0x186db8fd
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Effects_2.vp' with a checksum of 0x073ae85c
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Effects_3.vp' with a checksum of 0x081ebf4e
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Mainhalls.vp' with a checksum of 0x2faf47c3
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Music.vp' with a checksum of 0x7dc7b726
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_RadarIcons.vp' with a checksum of 0x961a72d2
Found root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Root.vp' with a checksum of 0x0f072187
Found root pack 'D:\Games\freespace2\FS2\root_fs2.vp' with a checksum of 0xce10d76c
Found root pack 'D:\Games\freespace2\FS2\smarty_fs2.vp' with a checksum of 0xddeb3b1e
Found root pack 'D:\Games\freespace2\FS2\sparky_fs2.vp' with a checksum of 0x164fe65a
Found root pack 'D:\Games\freespace2\FS2\sparky_hi_fs2.vp' with a checksum of 0xa11d56f1
Found root pack 'D:\Games\freespace2\FS2\stu_fs2.vp' with a checksum of 0xd77da83a
Found root pack 'D:\Games\freespace2\FS2\tango1_fs2.vp' with a checksum of 0x4c25221e
Found root pack 'D:\Games\freespace2\FS2\tango2_fs2.vp' with a checksum of 0x86920b82
Found root pack 'D:\Games\freespace2\FS2\tango3_fs2.vp' with a checksum of 0x705e8d71
Found root pack 'D:\Games\freespace2\FS2\warble_fs2.vp' with a checksum of 0xd85c305d
Searching root 'C:\Users\wssmi\AppData\Roaming\HardLightProductions\FreeSpaceOpen\MoGW-omni-1.1.2\' ... 0 files
Searching root 'C:\Users\wssmi\AppData\Roaming\HardLightProductions\FreeSpaceOpen\fsport-mediavps-4.7.2\' ... 0 files
Searching root 'C:\Users\wssmi\AppData\Roaming\HardLightProductions\FreeSpaceOpen\fsport-3.7.3\' ... 3 files
Searching root 'C:\Users\wssmi\AppData\Roaming\HardLightProductions\FreeSpaceOpen\MVPS-4.7.3\' ... 1 files
Searching root 'C:\Users\wssmi\AppData\Roaming\HardLightProductions\FreeSpaceOpen\' ... 3 files
Searching root 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\' ... 0 files
Skipping VP file ('D:\Games\freespace2\FS2\MoGW-omni-1.1.2\core.vp') of invalid size...
Searching root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\Hellgate_Ikeya.vpc' ... 35 files
Searching root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\Light_Of_Antares.vpc' ... 43 files
Searching root pack 'D:\Games\freespace2\FS2\MoGW-omni-1.1.2\Rain_On_Ribos_IV.vpc' ... 124 files
Searching root 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\' ... 10 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_47x.vpc' ... 646 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_music.vpc' ... 75 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_remix.vpc' ... 123 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\mv_fsport_TACskins.vpc' ... 124 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng1_fs1.vpc' ... 13 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng2_fs1.vpc' ... 26 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng3_fs1.vpc' ... 28 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng4_fs1.vpc' ... 13 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\tango_apng5_fs1.vpc' ... 16 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-mediavps-4.7.2\warble_fs1_supplemental.vpc' ... 42 files
Searching root 'D:\Games\freespace2\FS2\fsport-3.7.3\' ... 0 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\fsport-missions.vpc' ... 234 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\fsport3_7.vpc' ... 999 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\odeon_fs1.vpc' ... 10 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\sparky_hi_fs1.vpc' ... 1219 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\stu_fs1.vpc' ... 1546 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_fs1.vpc' ... 92 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi1_fs1.vpc' ... 9 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi2_fs1.vpc' ... 26 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi3_fs1.vpc' ... 28 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi4_fs1.vpc' ... 13 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\tango_hi5_fs1.vpc' ... 16 files
Searching root pack 'D:\Games\freespace2\FS2\fsport-3.7.3\warble_fs1.vpc' ... 111 files
Searching root 'D:\Games\freespace2\FS2\MVPS-4.7.3\' ... 9 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_A_Warp.vp' ... 62 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced1.vp' ... 1155 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced2.vp' ... 128 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced3.vp' ... 19 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced4.vp' ... 209 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Advanced5.vp' ... 16 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_AnimGlows.vp' ... 1735 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets.vp' ... 948 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S.vp' ... 34 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S_Maps1.vp' ... 63 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S_Maps2.vp' ... 157 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_S_Maps3.vp' ... 40 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_1.vp' ... 42 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_2.vp' ... 20 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps1.vp' ... 131 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps2.vp' ... 62 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps3.vp' ... 94 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps4.vp' ... 110 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps5.vp' ... 64 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps6.vp' ... 26 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_T_Maps7.vp' ... 46 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_V.vp' ... 33 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_V_Maps1.vp' ... 143 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Assets_V_Maps2.vp' ... 39 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_CB_ANI_1.vp' ... 26 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_CB_ANI_2.vp' ... 31 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_CB_ANI_3.vp' ... 32 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Compatibility.vp' ... 1349 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Effects_1.vp' ... 3358 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Effects_2.vp' ... 3478 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Effects_3.vp' ... 1466 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Mainhalls.vp' ... 2 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Music.vp' ... 32 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_RadarIcons.vp' ... 24 files
Searching root pack 'D:\Games\freespace2\FS2\MVPS-4.7.3\MV_Root.vp' ... 688 files
Searching root 'D:\Games\freespace2\FS2\' ... 13 files
Searching root pack 'D:\Games\freespace2\FS2\root_fs2.vp' ... 157 files
Searching root pack 'D:\Games\freespace2\FS2\smarty_fs2.vp' ... 10 files
Searching root pack 'D:\Games\freespace2\FS2\sparky_fs2.vp' ... 3027 files
Searching root pack 'D:\Games\freespace2\FS2\sparky_hi_fs2.vp' ... 1337 files
Searching root pack 'D:\Games\freespace2\FS2\stu_fs2.vp' ... 2355 files
Searching root pack 'D:\Games\freespace2\FS2\tango1_fs2.vp' ... 32 files
Searching root pack 'D:\Games\freespace2\FS2\tango2_fs2.vp' ... 15 files
Searching root pack 'D:\Games\freespace2\FS2\tango3_fs2.vp' ... 10 files
Searching root pack 'D:\Games\freespace2\FS2\warble_fs2.vp' ... 52 files
Searching memory root ... 79 files
Found 81 roots and 28586 files.
Game Settings Table: Using Standard Loops For SEXP Arguments
Game Settings Table: Using standard event chaining behavior
Game Settings Table: External shaders are DISABLED
Game Settings Table: Using retail turret collisions (shooting a turret barrel will register if it is within the radius of the base)
Game Settings Table: Damage Impacted Subsystem First set to FALSE (weapons will damage the closest subsystem before any others)
TBM => Starting parse of 'mv_root-mod.tbm' ...
Game Settings Table: Using fixed turret collisions (shooting a turret barrel will always register)
Game Settings Table: Using fixed missile detonation (missiles will cross an entire subsystem before detonating)
Game Settings Table: Using 3D ship select
Game Settings Table: Using 3D ship icons
Game Settings Table: Using 3D weapon select
Game Settings Table: Using 3D weapon icons
Game Settings Table: Using 3D overhead ship
TBM => Starting parse of 'mv_fsport-mod.tbm' ...
TBM => Starting parse of 'mv_root-lcl.tbm' ...
TBM => Starting parse of 'fsport-spanish-lcl.tbm' ...
TBM => Starting parse of 'fsport-polish-lcl.tbm' ...
TBM => Starting parse of 'fsport-italian-lcl.tbm' ...
Setting language to RETAIL HYBRID
TBM => Starting parse of 'mv_root-lcl.tbm' ...
TBM => Starting parse of 'fsport-spanish-lcl.tbm' ...
Language tag #English not found in fsport-spanish-lcl.tbm
TBM => Starting parse of 'fsport-polish-lcl.tbm' ...
Language tag #English not found in fsport-polish-lcl.tbm
TBM => Starting parse of 'fsport-italian-lcl.tbm' ...
Language tag #English not found in fsport-italian-lcl.tbm
TBM => Starting parse of 'mv_root-tlc.tbm' ...
TBM => Starting parse of 'fsport-spanish-tlc.tbm' ...
Language tag #default not found in fsport-spanish-tlc.tbm
TBM => Starting parse of 'fsport-polish-tlc.tbm' ...
Language tag #default not found in fsport-polish-tlc.tbm
TBM => Starting parse of 'fsport-italian-tlc.tbm' ...
Language tag #default not found in fsport-italian-tlc.tbm
No XSTR entry in strings.tbl for index 1700
No XSTR entry in strings.tbl for index 1812
No XSTR entry in strings.tbl for index 1813
No XSTR entry in strings.tbl for index 1814
No XSTR entry in strings.tbl for index 1815
No XSTR entry in strings.tbl for index 1754
No XSTR entry in strings.tbl for index 1755
No XSTR entry in strings.tbl for index 1703
No XSTR entry in strings.tbl for index 1704
No XSTR entry in strings.tbl for index 1838
No XSTR entry in strings.tbl for index 1839
No XSTR entry in strings.tbl for index 1840
No XSTR entry in strings.tbl for index 1841
No XSTR entry in strings.tbl for index 1739
No XSTR entry in strings.tbl for index 1740
No XSTR entry in strings.tbl for index 1720
No XSTR entry in strings.tbl for index 1717
No XSTR entry in strings.tbl for index 1743
No XSTR entry in strings.tbl for index 1718
No XSTR entry in strings.tbl for index 1719
No XSTR entry in strings.tbl for index 1698
No XSTR entry in strings.tbl for index 1722
No XSTR entry in strings.tbl for index 1723
No XSTR entry in strings.tbl for index 1750
No XSTR entry in strings.tbl for index 1751
No XSTR entry in strings.tbl for index 1842
No XSTR entry in strings.tbl for index 1843
No XSTR entry in strings.tbl for index 1846
No XSTR entry in strings.tbl for index 1847
No XSTR entry in strings.tbl for index 1848
No XSTR entry in strings.tbl for index 1849
No XSTR entry in strings.tbl for index 1734
No XSTR entry in strings.tbl for index 1735
No XSTR entry in strings.tbl for index 1807
No XSTR entry in strings.tbl for index 1760
No XSTR entry in strings.tbl for index 1705
No XSTR entry in strings.tbl for index 1706
No XSTR entry in strings.tbl for index 1707
No XSTR entry in strings.tbl for index 1708
No XSTR entry in strings.tbl for index 1709
No XSTR entry in strings.tbl for index 1710
No XSTR entry in strings.tbl for index 1711
No XSTR entry in strings.tbl for index 1712
No XSTR entry in strings.tbl for index 1782
No XSTR entry in strings.tbl for index 1783
No XSTR entry in strings.tbl for index 1770
No XSTR entry in strings.tbl for index 1771
No XSTR entry in strings.tbl for index 1747
No XSTR entry in strings.tbl for index 1765
No XSTR entry in strings.tbl for index 1738
No XSTR entry in strings.tbl for index 1715
No XSTR entry in strings.tbl for index 1772
No XSTR entry in strings.tbl for index 1773
No XSTR entry in strings.tbl for index 1741
No XSTR entry in strings.tbl for index 1742
No XSTR entry in strings.tbl for index 1748
No XSTR entry in strings.tbl for index 1749
No XSTR entry in strings.tbl for index 1761
No XSTR entry in strings.tbl for index 1762
No XSTR entry in strings.tbl for index 1732
No XSTR entry in strings.tbl for index 1733
No XSTR entry in strings.tbl for index 1752
No XSTR entry in strings.tbl for index 1753
No XSTR entry in strings.tbl for index 1758
No XSTR entry in strings.tbl for index 1759
No XSTR entry in strings.tbl for index 1726
No XSTR entry in strings.tbl for index 1727
No XSTR entry in strings.tbl for index 1766
No XSTR entry in strings.tbl for index 1767
No XSTR entry in strings.tbl for index 1713
No XSTR entry in strings.tbl for index 1714
No XSTR entry in strings.tbl for index 1716
No XSTR entry in strings.tbl for index 1697
No XSTR entry in strings.tbl for index 1855
No XSTR entry in strings.tbl for index 1856
No XSTR entry in strings.tbl for index 1728
No XSTR entry in strings.tbl for index 1729
No XSTR entry in strings.tbl for index 1730
No XSTR entry in strings.tbl for index 1731
No XSTR entry in strings.tbl for index 1756
No XSTR entry in strings.tbl for index 1757
No XSTR entry in strings.tbl for index 1744
No XSTR entry in strings.tbl for index 1745
No XSTR entry in strings.tbl for index 1746
No XSTR entry in strings.tbl for index 1809
No XSTR entry in strings.tbl for index 1808
No XSTR entry in strings.tbl for index 1810
No XSTR entry in strings.tbl for index 1811
No XSTR entry in strings.tbl for index 1724
No XSTR entry in strings.tbl for index 1725
No XSTR entry in strings.tbl for index 1701
No XSTR entry in strings.tbl for index 1702
No XSTR entry in strings.tbl for index 1832
No XSTR entry in strings.tbl for index 1833
No XSTR entry in strings.tbl for index 1834
No XSTR entry in strings.tbl for index 1835
No XSTR entry in strings.tbl for index 1836
No XSTR entry in strings.tbl for index 1837
No XSTR entry in strings.tbl for index 1768
No XSTR entry in strings.tbl for index 1769
No XSTR entry in strings.tbl for index 1763
No XSTR entry in strings.tbl for index 1764
No XSTR entry in strings.tbl for index 1736
No XSTR entry in strings.tbl for index 1737
Initializing OpenAL...
OpenAL Vendor : OpenAL Community
OpenAL Renderer : OpenAL Soft
OpenAL Version : 1.1 ALSOFT 1.23.1
Found extension "AL_EXT_float32".
Found extension "ALC_EXT_EFX".
Enhanced sound is enabled.
ALC reported 255 available sources, setting max to use at 223
Sample rate: 44100 (44100)
EFX enabled: NO
Playback device: OpenAL Soft on Realtek Digital Output (Realtek High Definition Audio)
Capture device: OpenAL Soft on Microfoon (Logitech BRIO)
... OpenAL successfully initialized!
Initializing SDL video...
Initializing OpenGL graphics device at 3440x1440 with 32-bit color...
Requested SDL Pixel values = R: 8, G: 8, B: 8, depth: 24, stencil: 8, double-buffer: 1, FSAA: 0
SDL: Creating window at 0,0 because window has same size as desktop.
Requested SDL Pixel values = R: 8, G: 8, B: 8, depth: 24, stencil: 8, double-buffer: 1, FSAA: 0
Actual SDL Video values = R: 8, G: 8, B: 8, depth: 24, stencil: 8, double-buffer: 1, FSAA: 0
OpenGL Vendor : NVIDIA Corporation
OpenGL Renderer : NVIDIA GeForce RTX 2080 Ti/PCIe/SSE2
OpenGL Version : 4.5.0 NVIDIA 566.36
WARNING: Failed to find uniform 'clipEnabled'.
Max texture units: 2 (32)
Max client texture states: 2 (1)
Max elements vertices: 1048576
Max elements indices: 1048576
Max texture size: 32768x32768
Max render buffer size: 32768x32768
S3TC texture support: YES
BPTC texture support: YES
Post-processing enabled: YES
Using trilinear texture filter.
OpenGL Shader Version: 4.50 NVIDIA
Max uniform block size: 65536
Max uniform buffer bindings: 84
Uniform buffer byte offset alignment: 256
... OpenGL init is complete!
Initializing path renderer...
Checking graphics capabilities:
Persistent buffer mapping: Enabled
Checking mod required rendering features...
All required features are supported.
GRAPHICS: Initializing default colors...
Loading 2_PreLoad as splash screen
Using high memory settings...
TBM => Starting parse of 'mv_effects-crv.tbm' ...
TBM => Starting parse of 'mv_effects-part.tbm' ...
TBM => Starting parse of 'mv_effects-snd.tbm' ...
TBM => Starting parse of 'fs1_effects-snd.tbm' ...
IFFs got to name Friendly
IFFs got to name Hostile
IFFs got to name Neutral
IFFs got to name Unknown
IFFs got to name Traitor
TBM => Starting parse of 'mv_effects-sdf.tbm' ...
TBM => Starting parse of 'mv_effects-snd.tbm' ...
TBM => Starting parse of 'fs1_effects-snd.tbm' ...
Control item defined without a valid tab. Disabling: Show Objectives
Control item defined without a valid tab. Disabling: Show Nav Map
[controlconfigdefaults.tbl] Overrode default preset.
[controlconfigdefaults.tbl] Ignoring duplicate Preset 'default'
[controlconfigdefaults.tbl] found 1 sections
PST => Loading `hh` with version 0
PST => Loading `hhhm` with version 0
PST => Loading `woutersmits` with version 0
No XSTR entry in strings.tbl for index 1647
No XSTR entry in strings.tbl for index 1648
No XSTR entry in strings.tbl for index 1649
No XSTR entry in strings.tbl for index 1650
No XSTR entry in strings.tbl for index 1651
No XSTR entry in strings.tbl for index 1652
No XSTR entry in strings.tbl for index 1653
No XSTR entry in strings.tbl for index 1654
No XSTR entry in strings.tbl for index 1655
No XSTR entry in strings.tbl for index 1656
No XSTR entry in strings.tbl for index 1657
No XSTR entry in strings.tbl for index 1658
TBM => Starting parse of 'mv_root-mdl.tbm' ...
Adding cutscene Introduction
Adding cutscene Ancients 1
Adding cutscene Lab Experiment
Adding cutscene Command Briefing
Adding cutscene Ancients 2
Adding cutscene Hall Fight
Adding cutscene Ancients 3
Adding cutscene Ancients 4
Adding cutscene Ancients 5
Adding cutscene End Game
Initializing Joystick...
No joysticks found
Printing joystick info:
Joystick 0 removed
Joystick 1 removed
Joystick 2 removed
Joystick 3 removed
No joystick is being used.
Current soundtrack set to -1 in event_music_reset_choices
TBM => Starting parse of 'mv_music-mus.tbm' ...
TBM => Starting parse of 'mv_fsport_remix-mus.tbm' ...
TBM => Starting parse of 'mv_fsport_music-mus.tbm' ...
TBM => Starting parse of 'mv_effects-fbl.tbm' ...
TBM => Starting parse of 'mv_assets_v-anim.tbm' ...
TBM => Starting parse of 'mv_assets_t-anim.tbm' ...
TBM => Starting parse of 'mv_assets_s-anim.tbm' ...
TBM => Starting parse of 'mv_effects-mfl.tbm' ...
Wokka! Error opening file (armor.tbl)!
TABLES: Unable to parse 'armor.tbl'! Error message = Failed to open file.
TBM => Starting parse of 'mv_effects-amr.tbm' ...
TBM => Starting parse of 'mv_assets-aip.tbm' ...
TBM => Starting parse of 'fsport-aip.tbm' ...
TBM => Starting parse of 'mv_root-wxp.tbm' ...
TBM => Starting parse of 'mv_effects-wxp.tbm' ...
Ignoring "stream" flag on weapon UD-1 Volz...
TBM => Starting parse of 'mv_root-wep.tbm' ...
TBM => Starting parse of 'mv_effects-wep.tbm' ...
TBM => Starting parse of 'mv_assets-wep.tbm' ...
TBM => Starting parse of 'railguncycle-wep.tbm' ...
TBM => Starting parse of 'fs1_effects-wep.tbm' ...
TBM => Starting parse of 'fs1_assets-wep.tbm' ...
TBM => Starting parse of 'mv_effects-obt.tbm' ...
TBM => Starting parse of 'mv_root-shp.tbm' ...
TBM => Starting parse of 'radar-shp.tbm' ...
TBM => Starting parse of 'mv_effects-shp.tbm' ...
TBM => Starting parse of 'mv_assets_v-shp.tbm' ...
TBM => Starting parse of 'mv_assets_t-shp.tbm' ...
TBM => Starting parse of 'mv_assets_s-shp.tbm' ...
TBM => Starting parse of 'mv_assets-shp.tbm' ...
TBM => Starting parse of 'fsport-turretangles-shp.tbm' ...
TBM => Starting parse of 'tacskins-shp.tbm' ...
TBM => Starting parse of 'fs1_radar-shp.tbm' ...
TBM => Starting parse of 'fs1_loadout-shp.tbm' ...
TBM => Starting parse of 'fs1_effects-shp.tbm' ...
TBM => Starting parse of 'fs1_assets-shp.tbm' ...
TBM => Starting parse of 'fs1_additional-shp.tbm' ...
TBM => Starting parse of 'mv_mainhall-hlp.tbm' ...
TBM => Starting parse of 'fsport-reticle-hdg.tbm' ...
TBM => Starting parse of 'mv_root-hdg.tbm' ...
No XSTR entry in strings.tbl for index 1667
TBM => Starting parse of 'mv_assets-ast.tbm' ...
Small asteroid not found. Using asteroid Small Asteroid
Medium asteroid not found. Using asteroid Medium Asteroid
Large asteroid not found. Using asteroid Large Asteroid
TBM => Starting parse of 'mv_effects-neb.tbm' ...
Using deprecated motion debris parsing for Default motion debris!
Using deprecated motion debris parsing for Nebula motion debris!
TBM => Starting parse of 'mv_effects-str.tbm' ...
TABLES => Starting parse of 'ssm.tbl'...
TBM => Starting parse of lighting profiles ...
TBM => Starting parse of 'mv_mainhall-hall.tbm' ...
TBM => Starting parse of 'aaa_1res-hall.tbm' ...
Game Settings Table: Show-subtitle adjusted resolution is (-2, -1)
SCRIPTING: Beginning initialization sequence...
SCRIPTING: Beginning Lua initialization...
LUA: Opening LUA state...
LUA: Initializing base Lua libraries...
LUA: Initializing extended Lua libraries...
LUA: Beginning ADE initialization
ADE: Initializing enumeration constants...
ADE: Assigning Lua session...
ADE: Loading default scripts...
SCRIPTING: Beginning main hook parse sequence....
Wokka! Error opening file (scripting.tbl)!
TABLES: Unable to parse 'scripting.tbl'! Error message = Failed to open file.
TBM => Starting parse of 'mv_zLoadFirst-sct.tbm' ...
TBM => Starting parse of 'mv_exp-sct.tbm' ...
TBM => Starting parse of 'mv_dbrs-sct.tbm' ...
SCRIPTING: Parsing pure Lua scripts
SCRIPTING: Inititialization complete.
NOTE: libRocket is disabled since unicode text mode is not enabled!
MediaVPs: Explosions script loaded!
MediaVPs: Starting flashy deaths script loading
MediaVPs: Flaming debris script loaded!
MediaVPs: Flaming debris script ACTIVE!
MediaVPs: In fs1_effects-fdbrs.tbm, class TC-TRI not found
MediaVPs: Flaming debris override found for TC 2
MediaVPs: Flaming debris override found for TSC 2
MediaVPs: Flaming debris override found for TAC 1
MediaVPs: Flaming debris override found for TTC 1
MediaVPs: In fs1_effects-fdbrs.tbm, class GTNB Pharos not found
MediaVPs: Flaming debris override found for Asteroid
MediaVPs: In fs1_effects-fdbrs.tbm, class TC-Meson Bomb not found
MediaVPs: Flaming debris override found for VC 3
MediaVPs: Flaming debris override found for VAC 4
MediaVPs: In fs1_effects-fdbrs.tbm, class VAC 5 not found
MediaVPs: Flaming debris override found for SC 5
MediaVPs: Flaming debris override found for SAC 2
MediaVPs: In fs1_effects-fdbrs.tbm, class SAC 3 not found
MediaVPs: Flaming debris override found for TAC 1#medical
MediaVPs: Flaming debris override found for Terran NavBuoy
MediaVPs: Flaming debris override found for Terran NavBuoy#destroyable
MediaVPs: Flaming debris override found for Vasudan NavBuoy
MediaVPs: Flaming debris override found for Vasudan NavBuoy#destroyable
MediaVPs: In mv_effects-fdbrs.tbm, class TC-TRI not found
MediaVPs: Flaming debris override found for TC 2
MediaVPs: Flaming debris override found for TSC 2
MediaVPs: Flaming debris override found for TAC 1
MediaVPs: Flaming debris override found for TTC 1
MediaVPs: In mv_effects-fdbrs.tbm, class GTNB Pharos not found
MediaVPs: Flaming debris override found for Asteroid
MediaVPs: In mv_effects-fdbrs.tbm, class TC-Meson Bomb not found
MediaVPs: Flaming debris override found for VC 3
MediaVPs: Flaming debris override found for VAC 4
MediaVPs: In mv_effects-fdbrs.tbm, class VAC 5 not found
MediaVPs: Flaming debris override found for SC 5
MediaVPs: Flaming debris override found for SAC 2
MediaVPs: In mv_effects-fdbrs.tbm, class SAC 3 not found
FFmpeg: Using libavcodec with version 57.107.100. Compiled with version 57.107.100
FFmpeg: Using libavformat with version 57.83.100. Compiled with version 57.83.100
FFmpeg: Using libavutil with version 55.78.100. Compiled with version 55.78.100
FFmpeg: Using libswresample with version 2.9.100. Compiled with version 2.9.100
FFmpeg: Using libswscale with version 4.8.100. Compiled with version 4.8.100
FFmpeg library initialized!
FFmpeg: License: LGPL version 3 or later
Ships.tbl is : INVALID!!!!
Weapons.tbl is : INVALID!!!!
cfile_init() took 3487
Printing in-game options values!
Option.Game.SkillLevel: Easy
Option.Graphics.ScreenShake: On
Option.Game.UnfocusedPause: Yes
Option.Game.Discord: Off
Option.Graphics.FOV: 43.0°
Option.Graphics.CockpitFOVToggle: Off
Option.Graphics.CockpitFOV: 43.0°
No XSTR entry in strings.tbl for index 1721
Option.Graphics.Detail: Ultra
Option.Graphics.Texture: Ultra
Option.Graphics.Particles: Ultra
Option.Graphics.SmallDebris: Ultra
Option.Graphics.ShieldEffects: Ultra
Option.Graphics.Stars: Ultra
No XSTR entry in strings.tbl for index 1691
Option.Graphics.3DShockwaves: 3D
Option.Graphics.Shadows: Disabled
No XSTR entry in strings.tbl for index 1844
Option.Game.FlightMode: Ship Locked
Option.Game.FlightCursorExtent: 19.9°
Option.Game.FlightCursorDeadzone: 1.1°
Option.Audio.Effects: 1.0
Option.Audio.Voice: 0.7
Option.Game.Language: English
Option.Audio.Music: 0.5
No XSTR entry in strings.tbl for index 1673
Option.Input.Joystick: None
Option.Input.Joystick1: None
Option.Input.Joystick2: None
Option.Input.Joystick3: None
Option.Graphics.DeferredLighting: On
Option.Graphics.3dWarp: On
Option.Input.MouseSensitivity: 4
No XSTR entry in strings.tbl for index 1774
Option.Input.UseMouse: Mouse
Option.Graphics.Gamma: 1.00
Option.Graphics.Lighting: Ultra
No XSTR entry in strings.tbl for index 1679
Option.Graphics.WindowMode: Fullscreen
Option.Graphics.Display: (1) MSI MPG341CQR
Option.Graphics.Resolution: 3440x1440
Option.Graphics.SoftParticles: On
Option.Graphics.FramebufferEffects: None
Option.Graphics.AAMode: None
No XSTR entry in strings.tbl for index 1693
Option.Graphics.MSAASamples: Off
Option.Graphics.PostProcessing: On
Option.Graphics.VSync: On
Option.Graphics.MotionDebris: On
Option.Audio.BriefingVoice: On
Option.Graphics.NebulaDetail: Ultra
Option.Input.ForceFeedback: Off
Option.Input.HitEffect: Off
Option.Input.FFStrength: 100.0
Option.Input.JoystickDeadZone: 10
Option.Input.JoystickSensitivity: 9
Option.Multi.TogglePXO: On
Option.Multi.LocalBroadcast: Off
Option.Multi.FlushCache: Before Game
Option.Multi.TransferMissions: /missions
Option.Graphics.Lightshafts: On
Option.Graphics.BloomIntensity: 25
Option.Audio.EnableEFX: Off
Option.Audio.PlaybackDevice: (1) OpenAL Soft on Realtek Digital Output (Realtek High Definition Audio)
Option.Audio.CaptureDevice: (1) OpenAL Soft on Microfoon (Logitech BRIO)
Option.Graphics.WarpFlash: On
No XSTR entry in strings.tbl for index 1677
Option.Graphics.TextureFilter: Bilinear
Option.Graphics.Anisotropy: 16x
Initializing head tracking...
Failed to load library 'scptrackir64.dll': 'Failed loading scptrackir64.dll: Kan opgegeven module niet vinden.'
TrackIR Init Failed - -1
Failed to initialize 'TrackIR': Failed to initialize TrackIR.
Failed to load library '': 'Failed loading : De parameter is onjuist.'
Failed to initialize 'FreeTrack': Library could not be loaded!.
No supported provider found, headtracking will be disabled...
Headtracking is not enabled...
Creating player for movie 'intro.mve'.
FFmpeg: Using video codec H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (h264).
FFmpeg: Using audio codec AAC (Advanced Audio Coding) (aac).
Frame 0 too long!!: frametime = 8.512 (8.512)
Got event GS_EVENT_GAME_INIT (49) in state NOT A VALID STATE (0)
FFMPEG Log: [adpcm_ms @ 0000000003bfbee0] Multiple frames in a packet.
PLR => Loading 'woutersmits.json' with version 4...
PLR => Parsing: Flags...
PLR => Parsing: ScoringMulti...
PLR => Parsing: Scoring...
PLR => Parsing: Info...
PLR => Parsing: Multiplayer...
PLR => Parsing: Variables...
PLR => Parsing: Settings...
No XSTR entry in strings.tbl for index 1680
PLR => Parsing: Controls...
PLR => Parsing: Containers...
PLR => Parsing: HUD...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
PLR => Loading complete!
PLR => Verifying 'hh.json' with version 4...
PLR => Parsing: Info...
PLR => Parsing: Flags...
PLR => Verifying complete!
PLR => Verifying 'hhhm.json' with version 4...
PLR => Parsing: Flags...
PLR => Parsing: Info...
PLR => Verifying complete!
PLR => Verifying 'woutersmits.json' with version 4...
PLR => Parsing: Flags...
PLR => Parsing: Info...
PLR => Verifying complete!
Frame 0 too long!!: frametime = 8.550 (8.550)
PLR => Verifying 'woutersmits.json' with version 4...
PLR => Parsing: Flags...
PLR => Parsing: Info...
PLR => Verifying complete!
Got event GS_EVENT_MAIN_MENU (0) in state GS_STATE_INITIAL_PLAYER_SELECT (37)
PLR => Loading 'woutersmits.json' with version 4...
PLR => Parsing: Flags...
PLR => Parsing: ScoringMulti...
PLR => Parsing: Scoring...
PLR => Parsing: Info...
PLR => Parsing: Multiplayer...
PLR => Parsing: Variables...
PLR => Parsing: Settings...
PLR => Parsing: Controls...
PLR => Parsing: Containers...
PLR => Parsing: HUD...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
PLR => Loading complete!
CSG => Unable to find campaign file 'SilentThreatReborn.fc2'!
PLR => Saving 'woutersmits.json' with version 4...
PLR => Saving: Flags...
PLR => Saving: Info...
PLR => Saving: Scoring...
PLR => Saving: ScoringMulti...
PLR => Saving: HUD...
PLR => Saving: Variables...
PLR => Saving: Containers...
PLR => Saving: Multiplayer...
PLR => Saving: Controls...
PLR => Saving: Settings...
PLR => Saving complete!
Wokka! Error opening file (SilentThreatReborn.fc2)!
Error opening 'SilentThreatReborn.fc2'
Error message = Failed to open file.
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
CSG => Loading 'woutersmits.freespace.csg' with version 8...
CSG => Parsing: Flags...
CSG => Parsing: Info...
CSG => Parsing: Missions...
CSG => Parsing: Techroom...
CSG => Parsing: Loadout...
CSG => Parsing: Scoring...
CSG => Parsing: RedAlert...
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
CSG => Loading complete!
Got event GS_EVENT_CAMPAIGN_ROOM (54) in state GS_STATE_MAIN_MENU (1)
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea B' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Galatea A' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion B' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
Substitute main hall 'Bastion A' not found
CSG => Loading 'woutersmits.freespace.csg' with version 8...
CSG => Parsing: Flags...
CSG => Parsing: Info...
CSG => Parsing: Missions...
CSG => Parsing: Techroom...
CSG => Parsing: Loadout...
CSG => Parsing: Scoring...
CSG => Parsing: RedAlert...
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
CSG => Loading complete!
1_RoR.fc2(line 11): Warning: Unable to find weapon class Flail#PVN in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Flail#PVN in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class VML-4 Laser in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class VML-4 Laser in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class Mako in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Mako in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class Phoenix V#MoGW in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Phoenix V#MoGW in stuff_int_list!" at parselo.cpp:317
CSG => Loading 'woutersmits.1_RoR.csg' with version 8...
CSG => Parsing: Flags...
CSG => Parsing: Info...
CSG => Parsing: Missions...
CSG => Parsing: Techroom...
CSG => Parsing: Loadout...
CSG => Parsing: Scoring...
CSG => Parsing: RedAlert...
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
CSG => Loading complete!
Got event GS_EVENT_MAIN_MENU (0) in state GS_STATE_CAMPAIGN_ROOM (42)
PLR => Saving 'woutersmits.json' with version 4...
PLR => Saving: Flags...
PLR => Saving: Info...
PLR => Saving: Scoring...
PLR => Saving: ScoringMulti...
PLR => Saving: HUD...
PLR => Saving: Variables...
PLR => Saving: Containers...
PLR => Saving: Multiplayer...
PLR => Saving: Controls...
PLR => Saving: Settings...
PLR => Saving complete!
1_RoR.fc2(line 11): Warning: Unable to find weapon class Flail#PVN in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Flail#PVN in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class VML-4 Laser in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class VML-4 Laser in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class Mako in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Mako in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class Phoenix V#MoGW in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Phoenix V#MoGW in stuff_int_list!" at parselo.cpp:317
CSG => Loading 'woutersmits.1_RoR.csg' with version 8...
CSG => Parsing: Flags...
CSG => Parsing: Info...
CSG => Parsing: Missions...
CSG => Parsing: Techroom...
CSG => Parsing: Loadout...
CSG => Parsing: Scoring...
CSG => Parsing: RedAlert...
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
CSG => Loading complete!
Too much time passed between frames. Adjusting timestamp by 15398 milliseconds to compensate
Frame 0 too long!!: frametime = 15.411 (15.411)
Frame 0 too long!!: frametime = 0.376 (0.376)
Got event GS_EVENT_NEW_CAMPAIGN (26) in state GS_STATE_MAIN_MENU (1)
1_RoR.fc2(line 11): Warning: Unable to find weapon class Flail#PVN in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Flail#PVN in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class VML-4 Laser in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class VML-4 Laser in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class Mako in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Mako in stuff_int_list!" at parselo.cpp:317
1_RoR.fc2(line 11): Warning: Unable to find weapon class Phoenix V#MoGW in stuff_int_list!
WARNING: "1_RoR.fc2(line 11):
Warning: Unable to find weapon class Phoenix V#MoGW in stuff_int_list!" at parselo.cpp:317
CSG => Loading 'woutersmits.1_RoR.csg' with version 8...
CSG => Parsing: Flags...
CSG => Parsing: Info...
CSG => Parsing: Missions...
CSG => Parsing: Techroom...
CSG => Parsing: Loadout...
CSG => Parsing: Scoring...
CSG => Parsing: RedAlert...
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
Someone passed an extension to bm_load for file 'deathsquad.pcx'
CSG => Loading complete!
Got event GS_EVENT_START_GAME (1) in state GS_STATE_MAIN_MENU (1)
=================== STARTING LEVEL LOAD ==================
Someone passed an extension to bm_load for file 'LS-RoR-01-large.tga'
Starting model page in...
Beginning level bitmap paging...
Loading warp glow 'warpglow01'
Loading warp ball 'warpball01'
Loading warp glow 'warpglow01'
Loading warp ball 'warpball01'
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 1.
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 2.
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 3.
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 4.
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 5.
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 6.
Converting legacy 'Beta Arrived' message for message Beta Arrived with persona Wingman 7.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 1.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 2.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 3.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 4.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 5.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 6.
Converting legacy 'Delta Arrived' message for message Delta Arrived with persona Wingman 7.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 1.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 2.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 3.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 4.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 5.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 6.
Converting legacy 'Epsilon Arrived' message for message Epsilon Arrived with persona Wingman 7.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 1.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 2.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 3.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 4.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 5.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 6.
Converting legacy 'Gamma Arrived' message for message Gamma Arrived with persona Wingman 7.
SHOCKWAVE => Loading default shockwave model...
Loading model 'shockwave.pof' into slot '0'
Model shockwave.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
SHOCKWAVE => Default model load: SUCCEEDED!!
Game_level_init took 1 secondsMISSION LOAD: 'RoR_01.fs2'
Hmmm... Extension passed to mission_load...
Current soundtrack set to -1 in event_music_reset_choices
Using alternate ship type name: GTM Faustus
MISSIONS: Ship "Warehouse Block" has an invalid ship type (ships.tbl probably changed). Making it type 0
MISSIONS: Ship "Siegfried" has an invalid ship type (ships.tbl probably changed). Making it type 0
Starting mission message count : 209
Someone passed an extension to bm_load_animation for file 'MSG-GTA.eff'
Ending mission message count : 210
No XSTR entry in strings.tbl for index 505
No XSTR entry in strings.tbl for index 506
No XSTR entry in strings.tbl for index 503
No XSTR entry in strings.tbl for index 504
OpenGL Debug: Source:OpenGL Type:Error ID:1282 Severity:High Message:GL_INVALID_OPERATION error generated. The required buffer is missing.
Frame 0 too long!!: frametime = 5.447 (5.447)
Frame 0 too long!!: frametime = 4.952 (4.952)
Frame 0 too long!!: frametime = 0.397 (0.397)
Could not load replacement texture transport01-01-gdu for ship Iota 3
Could not load replacement texture gtc_rose for ship Rose
Could not load replacement texture gtc_lily for ship Lily
Could not load replacement texture gtc_orchid for ship Orchid
Could not load replacement texture gtc_damocles for ship Damocles
Could not load replacement texture jupiter-np-trans-siegf for ship Siegfried
Loading model 'Valkyrie.pof' into slot '1'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'thruster01b' is detail level 1 of 'thruster01a'
Submodel 'thruster02b' is detail level 1 of 'thruster02a'
Submodel 'thruster03b' is detail level 1 of 'thruster03a'
Submodel 'thruster04b' is detail level 1 of 'thruster04a'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'Arcadia.pof' into slot '2'
Unknown special object type $path06 while reading model Arcadia.pof
Unknown special object type $path07 while reading model Arcadia.pof
Subsystem 'ForkTable' on ship Arcadia.pof is not recognized as a common subsystem type
Subsystem 'ForkLift' on ship Arcadia.pof is not recognized as a common subsystem type
Subsystem 'fighterbay' on ship Arcadia.pof is not recognized as a common subsystem type
Found live debris model for 'communication'
Found live debris model for 'communication'
Found live debris model for 'fighterbay'
Found live debris model for 'fighterbay'
Found live debris model for 'fighterbay'
Found live debris model for 'fighterbay'
Found live debris model for 'weapons'
Found live debris model for 'weapons'
Found live debris model for 'weapons'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Allocating space for at least 31 new ship subsystems ... a total of 200 is now available (31 in-use).
Submodel turret01 of model Arcadia.pof is animated and has movement enabled.
Submodel turret02 of model Arcadia.pof is animated and has movement enabled.
Submodel turret03 of model Arcadia.pof is animated and has movement enabled.
Submodel turret04 of model Arcadia.pof is animated and has movement enabled.
Submodel turret05 of model Arcadia.pof is animated and has movement enabled.
Submodel turret06 of model Arcadia.pof is animated and has movement enabled.
Submodel turret07 of model Arcadia.pof is animated and has movement enabled.
Submodel turret08 of model Arcadia.pof is animated and has movement enabled.
Submodel turret09 of model Arcadia.pof is animated and has movement enabled.
Submodel turret10 of model Arcadia.pof is animated and has movement enabled.
Submodel turret11 of model Arcadia.pof is animated and has movement enabled.
Submodel turret17 of model Arcadia.pof is animated and has movement enabled.
Submodel turret18 of model Arcadia.pof is animated and has movement enabled.
Submodel turret19 of model Arcadia.pof is animated and has movement enabled.
Submodel turret20 of model Arcadia.pof is animated and has movement enabled.
Submodel turret21 of model Arcadia.pof is animated and has movement enabled.
Submodel turret22 of model Arcadia.pof is animated and has movement enabled.
Loading model 'Elysium.pof' into slot '3'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'dockingportb' is detail level 1 of 'dockingporta'
Submodel 'dockingportc' is detail level 2 of 'dockingporta'
Submodel 'dockingportd' is detail level 3 of 'dockingporta'
Submodel 'enginenozzlesb' is detail level 1 of 'enginenozzlesa'
Submodel 'enginenozzlesc' is detail level 2 of 'enginenozzlesa'
Submodel 'enginesbottomb' is detail level 1 of 'enginesbottoma'
Submodel 'enginesbottomc' is detail level 2 of 'enginesbottoma'
Submodel 'enginesbottomd' is detail level 3 of 'enginesbottoma'
Submodel 'enginestopb' is detail level 1 of 'enginestopa'
Submodel 'enginestopc' is detail level 2 of 'enginestopa'
Submodel 'enginestopd' is detail level 3 of 'enginestopa'
Submodel 'lightsb' is detail level 1 of 'lightsa'
Submodel 'lightsc' is detail level 2 of 'lightsa'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'dock01-terran.pof' into slot '4'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-3' is detail level 3 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Submodel 'detail-3' is detail level 2 of 'detail-1'
Submodel 'detail-3' is detail level 1 of 'detail-2'
Loading model 'Leviathan_FS1.pof' into slot '5'
Subsystem 'armour04a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Subsystem 'armour02a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Subsystem 'armour01a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Subsystem 'armour03a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Subsystem 'armour05a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Subsystem 'armour06a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Subsystem 'armour07a' on ship Leviathan_FS1.pof is not recognized as a common subsystem type
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'armour01b' is detail level 1 of 'armour01a'
Submodel 'armour01b-destroyed' is detail level 1 of 'armour01a-destroyed'
Submodel 'armour02b' is detail level 1 of 'armour02a'
Submodel 'armour02b-destroyed' is detail level 1 of 'armour02a-destroyed'
Submodel 'armour03b' is detail level 1 of 'armour03a'
Submodel 'armour03b-destroyed' is detail level 1 of 'armour03a-destroyed'
Submodel 'armour04b' is detail level 1 of 'armour04a'
Submodel 'armour04b-destroyed' is detail level 1 of 'armour04a-destroyed'
Submodel 'armour05b' is detail level 1 of 'armour05a'
Submodel 'armour05b-destroyed' is detail level 1 of 'armour05a-destroyed'
Submodel 'armour06b' is detail level 1 of 'armour06a'
Submodel 'armour06b-destroyed' is detail level 1 of 'armour06a-destroyed'
Submodel 'armour07b' is detail level 1 of 'armour07a'
Submodel 'armour07b-destroyed' is detail level 1 of 'armour07a-destroyed'
Submodel 'radar01b-dish' is detail level 1 of 'radar01a-dish'
Submodel 'radar01c-dish' is detail level 2 of 'radar01a-dish'
Submodel 'radar01b-dish-destroyed' is detail level 1 of 'radar01a-dish-destroyed'
Submodel 'radar01c-dish-destroyed' is detail level 2 of 'radar01a-dish-destroyed'
Submodel 'turret09b-01-main' is detail level 1 of 'turret09a-01-main'
Submodel 'turret09c-01-main' is detail level 2 of 'turret09a-01-main'
Submodel 'turret09b-01-sub' is detail level 1 of 'turret09a-01-sub'
Submodel 'turret09b-01-main-destroyed' is detail level 1 of 'turret09a-01-main-destroyed'
Submodel 'turret09c-01-main-destroyed' is detail level 2 of 'turret09a-01-main-destroyed'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Submodel 'turret02b' is detail level 1 of 'Turret02'
Submodel 'turret02b-destroyed' is detail level 1 of 'Turret02-destroyed'
Submodel turret09a-01-main of model Leviathan_FS1.pof is animated and has movement enabled.
Loading model 'Faustus.pof' into slot '6'
Unknown special object type $reactor while reading model Faustus.pof
Subsystem 'Fighterbay' on ship Faustus.pof is not recognized as a common subsystem type
Submodel 'Detail1' is detail level 1 of 'Detail0'
Submodel 'Detail2' is detail level 2 of 'Detail0'
Submodel 'Detail3' is detail level 3 of 'Detail0'
Submodel 'science01b-solar1' is detail level 1 of 'science01a-solar1'
Submodel 'science01c-solar1' is detail level 2 of 'science01a-solar1'
Submodel 'science01d-solar1' is detail level 3 of 'science01a-solar1'
Submodel 'science01b-solar1-destroyed' is detail level 1 of 'science01a-solar1-destroyed'
Submodel 'Detail2' is detail level 1 of 'Detail1'
Submodel 'Detail3' is detail level 2 of 'Detail1'
Submodel 'Detail3' is detail level 1 of 'Detail2'
Loading model 'chronos.pof' into slot '7'
Subsystem 'bridge' on ship chronos.pof is not recognized as a common subsystem type
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'turretb' is detail level 1 of 'turreta'
Submodel 'gun01b' is detail level 1 of 'gun01a'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'TAC1.pof' into slot '8'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'Fenris_FS1.pof' into slot '9'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'radar01b-dish' is detail level 1 of 'radar01a-dish'
Submodel 'radar01c-dish' is detail level 2 of 'radar01a-dish'
Submodel 'radar01d-dish' is detail level 3 of 'radar01a-dish'
Submodel 'turret09d-01-main' is detail level 3 of 'turret09a-01-main'
Submodel 'turret09b-02-sub' is detail level 1 of 'turret09a-02-sub'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'Apollo.pof' into slot '10'
Submodel 'Detail1' is detail level 1 of 'Detail0'
Submodel 'Detail2' is detail level 2 of 'Detail0'
Submodel 'Detail3' is detail level 3 of 'Detail0'
Submodel 'CockpitglassB' is detail level 1 of 'CockpitglassA'
Submodel 'CockpitglassC' is detail level 2 of 'CockpitglassA'
Submodel 'gunsB' is detail level 1 of 'gunsA'
Submodel 'missilesB' is detail level 1 of 'missilesA'
Submodel 'Detail2' is detail level 1 of 'Detail1'
Submodel 'Detail3' is detail level 2 of 'Detail1'
Submodel 'Detail3' is detail level 1 of 'Detail2'
Loading model 'Basilisk.pof' into slot '11'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'watchdog.pof' into slot '12'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'turret01b' is detail level 1 of 'turret01a'
Submodel 'turret01c' is detail level 2 of 'turret01a'
Submodel 'turret01b-arm' is detail level 1 of 'turret01a-arm'
Submodel 'turret01b-destroyed' is detail level 1 of 'turret01a-destroyed'
Submodel 'turret02b' is detail level 1 of 'turret02a'
Submodel 'turret02c' is detail level 2 of 'turret02a'
Submodel 'turret02b-arm' is detail level 1 of 'turret02a-arm'
Submodel 'turret02b-destroyed' is detail level 1 of 'turret02a-destroyed'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'cerberus.pof' into slot '13'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'turret01b' is detail level 1 of 'turret01a'
Submodel 'turret01c' is detail level 2 of 'turret01a'
Submodel 'turret01b-arm' is detail level 1 of 'turret01a-arm'
Submodel 'turret01b-destroyed' is detail level 1 of 'turret01a-destroyed'
Submodel 'turret02b' is detail level 1 of 'turret02a'
Submodel 'turret02c' is detail level 2 of 'turret02a'
Submodel 'turret02b-arm' is detail level 1 of 'turret02a-arm'
Submodel 'turret02b-destroyed' is detail level 1 of 'turret02a-destroyed'
Submodel 'detail2' is detail level 1 of 'detail1'
Allocating space for at least 2 new ship subsystems ... a total of 400 is now available (201 in-use).
Loading model 'navbuoy-terran.pof' into slot '14'
Loading model 'Poseidon.pof' into slot '15'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'tc2.pof' into slot '16'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'tc2x.pof' into slot '17'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'ttc1.pof' into slot '18'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'Ulysses.pof' into slot '19'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
WARNING: "Unable to find 'Turret10' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret09' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret08' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret07' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret06' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret05' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret04' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret03' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret02' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret01' in the ship Warehouse Block (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret07' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret06' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret05' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret04' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret03a' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret02a' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
WARNING: "Unable to find 'Turret01a' in the ship Siegfried (class GTF Ulysses) subsys_list!" at missionparse.cpp:2289
Reassigning player to squadron GTA
Someone passed an extension to bm_load for file 'gta.pcx'
WARNING: "Error in mission event: "set gauge active": Invalid custom HUD gauge.
In sexpression: ( when
( has-time-elapsed 20 )
( hud-set-custom-gauge-active
( true )
"TIMER_TOP"
"TIMER_VIEW_1"
"TIMER_BOT"
)
)
(Bad node appears to be: "TIMER_TOP")
" at missionparse.cpp:6496
WARNING: "Error in mission event: "set gauage inactive": Invalid custom HUD gauge.
In sexpression: ( when
( or
( has-arrived-delay 0 "Damocles" )
( is-destroyed-delay
0
"Omicron 1"
"Omicron 2"
)
)
( hud-set-custom-gauge-active
( false )
"TIMER_TOP"
"TIMER_VIEW_1"
"TIMER_BOT"
)
)
(Bad node appears to be: "TIMER_TOP")
" at missionparse.cpp:6496
WARNING: "Error in mission event: "set gauge info": Invalid custom HUD gauge.
In sexpression: ( when
( true )
( hud-set-message
"TIMER_VIEW_1"
"Timer - header"
)
( when
( and
( < @z_Timer_S[0] 10 )
( >= @z_Timer_S[0] 0 )
)
( hud-set-message
"TIMER_BOT"
"Timer - 0m-0s"
)
)
( when
( > @z_Timer_S[0] 10 )
( hud-set-message
"TIMER_BOT"
"Timer - 0m-ss"
)
)
)
(Bad node appears to be: "TIMER_VIEW_1")
" at missionparse.cpp:6496
WARNING: "Error in mission event: "update gauge": Invalid custom HUD gauge.
In sexpression: ( when
( and
( not
( has-arrived-delay 0 "Damocles" )
)
( >
( mission-time-msecs )
@z_Timer-intervall[-1]
)
)
( when
( > @z_Timer_Actual[0] 0 )
( modify-variable
@z_Timer_Actual[0]
( -
@z_Timer_Full[340]
( mission-time )
)
)
( when
( and
( < @z_Timer_Actual[0] 360 )
( >= @z_Timer_Actual[0] 300 )
)
( modify-variable @z_Timer_M[0] 5 )
)
( when
( and
( < @z_Timer_Actual[0] 300 )
( >= @z_Timer_Actual[0] 240 )
[...]
(Bad node appears to be: "TIMER_BOT")
" at missionparse.cpp:6496
Loading model 'starfield.pof' into slot '20'
Model starfield.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
=================== STARTING LEVEL DATA LOAD ==================
FFMPEG Log: [adpcm_ms @ 00000000379fae00] Multiple frames in a packet.
Loading model 'Centaur.pof' into slot '21'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'thruster01b' is detail level 1 of 'thruster01a'
Submodel 'thruster01c' is detail level 2 of 'thruster01a'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Loading model 'scarab.pof' into slot '22'
Submodel 'Detail1' is detail level 1 of 'Detail0'
Submodel 'Detail2' is detail level 2 of 'Detail0'
Submodel 'Detail3' is detail level 3 of 'Detail0'
Submodel 'Glass-Transb' is detail level 1 of 'Glass-Transa'
Submodel 'Detail2' is detail level 1 of 'Detail1'
Submodel 'Detail3' is detail level 2 of 'Detail1'
Submodel 'Detail3' is detail level 1 of 'Detail2'
About to page in ships!
Loading model 'MX-50.pof' into slot '23'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Loading model 'Fury.pof' into slot '24'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Loading model 'Interceptor.pof' into slot '25'
Submodel 'detail-3' is detail level 1 of 'detail-2'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-3' is detail level 3 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Submodel 'detail-3' is detail level 2 of 'detail-1'
Loading model 'S_Hornet.pof' into slot '26'
Submodel 'hornetlod2' is detail level 1 of 'hornetlod1'
WARNING: "Trail bitmap TrailTreb1Pur could not be loaded. Trail will not be rendered." at weapons.cpp:4411
Loading model 'S_Trebuchet.pof' into slot '27'
Submodel 'trebuchetlod2' is detail level 1 of 'trebuchetlod1'
Loading model 'cmeasure01.pof' into slot '28'
Loading model 'ShivanCM.pof' into slot '29'
Submodel 'detail1' is detail level 1 of 'detail0'
Loading model 'VasudanCM.pof' into slot '30'
Submodel 'detail1' is detail level 1 of 'detail0'
Loading model 'harbinger.pof' into slot '31'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Loading warp model 'warp.pof'
Loading model 'warp.pof' into slot '32'
Submodel 'warp01c' is detail level 1 of 'warp01b'
Submodel 'warp01c' is detail level 2 of 'warp01a'
Submodel 'warp01b' is detail level 1 of 'warp01a'
Loading model 'debris01.pof' into slot '33'
Loading model 'debris02.pof' into slot '34'
Paging in mission messages
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
SOUND ==> Could not open wave file msgstart.wav for streaming. Reason: File not found with any known extension.
Stopping model page in...
User bitmap 'TMP512x512+8'
User bitmap 'TMP256x256+8'
User bitmap 'TMP512x512+8'
User bitmap 'TMP512x512+8'
Ending level bitmap paging...
=================== ENDING LOAD ================
Real count = 967, Estimated count = 719
================================================
Level load took 43.944000 seconds.
Received post for event GS_EVENT_CMD_BRIEF during state transtition. Find Allender if you are unsure if this is bad.
Got event GS_EVENT_CMD_BRIEF (55) in state GS_STATE_START_GAME (51)
Command Briefing UI: Using scroll buttons
Frame 0 too long!!: frametime = 38.063 (38.063)
Frame 0 too long!!: frametime = 0.332 (0.332)
Got event GS_EVENT_OPTIONS_MENU (8) in state GS_STATE_CMD_BRIEF (43)
Frame 0 too long!!: frametime = 0.700 (0.700)
No XSTR entry in strings.tbl for index 1665
No XSTR entry in strings.tbl for index 1666
No XSTR entry in strings.tbl for index 1831
OpenGL Debug: Source:OpenGL Type:Error ID:1282 Severity:High Message:GL_INVALID_OPERATION error generated. The required buffer is missing.
Got event GS_EVENT_QUIT_GAME (5) in state GS_STATE_OPTIONS_MENU (5)
Printing in-game options values!
Option.Game.SkillLevel: Very Easy
Option.Graphics.ScreenShake: On
Option.Game.UnfocusedPause: Yes
Option.Game.Discord: Off
Option.Graphics.FOV: 43.0°
Option.Graphics.CockpitFOVToggle: Off
Option.Graphics.CockpitFOV: 43.0°
Option.Graphics.Detail: Ultra
Option.Graphics.Texture: Ultra
Option.Graphics.Particles: Ultra
Option.Graphics.SmallDebris: Ultra
Option.Graphics.ShieldEffects: Ultra
Option.Graphics.Stars: Ultra
Option.Graphics.3DShockwaves: 3D
Option.Graphics.Shadows: Disabled
Option.Game.FlightMode: Ship Locked
Option.Game.FlightCursorExtent: 19.9°
Option.Game.FlightCursorDeadzone: 1.1°
Option.Audio.Effects: 0.1
Option.Audio.Voice: 0.1
Option.Game.Language: English
Option.Audio.Music: 0.1
Option.Input.Joystick: None
Option.Input.Joystick1: None
Option.Input.Joystick2: None
Option.Input.Joystick3: None
Option.Graphics.DeferredLighting: On
Option.Graphics.3dWarp: On
Option.Input.MouseSensitivity: 5
Option.Input.UseMouse: Mouse
Option.Graphics.Gamma: 1.00
Option.Graphics.Lighting: Ultra
Option.Graphics.WindowMode: Fullscreen
Option.Graphics.Display: (1) MSI MPG341CQR
Option.Graphics.Resolution: 3440x1440
Option.Graphics.SoftParticles: On
Option.Graphics.FramebufferEffects: None
Option.Graphics.AAMode: None
Option.Graphics.MSAASamples: Off
Option.Graphics.PostProcessing: On
Option.Graphics.VSync: On
Option.Graphics.MotionDebris: On
Option.Audio.BriefingVoice: On
Option.Graphics.NebulaDetail: Ultra
Option.Input.ForceFeedback: Off
Option.Input.HitEffect: Off
Option.Input.FFStrength: 100.0
Option.Input.JoystickDeadZone: 10
Option.Input.JoystickSensitivity: 9
Option.Multi.TogglePXO: On
Option.Multi.LocalBroadcast: On
Option.Multi.FlushCache: Before Game
Option.Multi.TransferMissions: /missions
Option.Graphics.Lightshafts: On
Option.Graphics.BloomIntensity: 25
Option.Audio.EnableEFX: Off
Option.Audio.PlaybackDevice: (1) OpenAL Soft on Realtek Digital Output (Realtek High Definition Audio)
Option.Audio.CaptureDevice: (1) OpenAL Soft on Microfoon (Logitech BRIO)
Option.Graphics.WarpFlash: On
Option.Graphics.TextureFilter: Bilinear
Option.Graphics.Anisotropy: 16x
PLR => Saving 'woutersmits.json' with version 4...
PLR => Saving: Flags...
PLR => Saving: Info...
PLR => Saving: Scoring...
PLR => Saving: ScoringMulti...
PLR => Saving: HUD...
PLR => Saving: Variables...
PLR => Saving: Containers...
PLR => Saving: Multiplayer...
PLR => Saving: Controls...
PLR => Saving: Settings...
PLR => Saving complete!
CSG => Saving 'woutersmits.1_RoR.csg' with version 8...
CSG => Saving: Flags...
CSG => Saving: Info...
CSG => Saving: Missions...
CSG => Saving: Techroom...
CSG => Saving: Loadout...
CSG => Saving: Scoring...
CSG => Saving: RedAlert...
CSG => Saving: HUD...
CSG => Saving: Variables...
CSG => Saving: Settings...
CSG => Saving: Controls...
CSG => Saving: Cutscenes...
CSG => Saving: Last Missions...
CSG => Saving: Containers...
CSG => Saving complete!
brief_close() returning without doing anything
PLR => Saving 'woutersmits.json' with version 4...
PLR => Saving: Flags...
PLR => Saving: Info...
PLR => Saving: Scoring...
PLR => Saving: ScoringMulti...
PLR => Saving: HUD...
PLR => Saving: Variables...
PLR => Saving: Containers...
PLR => Saving: Multiplayer...
PLR => Saving: Controls...
PLR => Saving: Settings...
PLR => Saving complete!
CSG => Saving 'woutersmits.1_RoR.csg' with version 8...
CSG => Saving: Flags...
CSG => Saving: Info...
CSG => Saving: Missions...
CSG => Saving: Techroom...
CSG => Saving: Loadout...
CSG => Saving: Scoring...
CSG => Saving: RedAlert...
CSG => Saving: HUD...
CSG => Saving: Variables...
CSG => Saving: Settings...
CSG => Saving: Controls...
CSG => Saving: Cutscenes...
CSG => Saving: Last Missions...
CSG => Saving: Containers...
CSG => Saving complete!
Freeing all existing models...
Unloading model 'shockwave.pof' from slot '0'
Unloading model 'Valkyrie.pof' from slot '1'
Unloading model 'Arcadia.pof' from slot '2'
Unloading model 'Elysium.pof' from slot '3'
Unloading model 'dock01-terran.pof' from slot '4'
Unloading model 'Leviathan_FS1.pof' from slot '5'
Unloading model 'Faustus.pof' from slot '6'
Unloading model 'chronos.pof' from slot '7'
Unloading model 'TAC1.pof' from slot '8'
Unloading model 'Fenris_FS1.pof' from slot '9'
Unloading model 'Apollo.pof' from slot '10'
Unloading model 'Basilisk.pof' from slot '11'
Unloading model 'watchdog.pof' from slot '12'
Unloading model 'cerberus.pof' from slot '13'
Unloading model 'navbuoy-terran.pof' from slot '14'
Unloading model 'Poseidon.pof' from slot '15'
Unloading model 'tc2.pof' from slot '16'
Unloading model 'tc2x.pof' from slot '17'
Unloading model 'ttc1.pof' from slot '18'
Unloading model 'Ulysses.pof' from slot '19'
Unloading model 'starfield.pof' from slot '20'
Unloading model 'Centaur.pof' from slot '21'
Unloading model 'scarab.pof' from slot '22'
Unloading model 'MX-50.pof' from slot '23'
Unloading model 'Fury.pof' from slot '24'
Unloading model 'Interceptor.pof' from slot '25'
Unloading model 'S_Hornet.pof' from slot '26'
Unloading model 'S_Trebuchet.pof' from slot '27'
Unloading model 'cmeasure01.pof' from slot '28'
Unloading model 'ShivanCM.pof' from slot '29'
Unloading model 'VasudanCM.pof' from slot '30'
Unloading model 'harbinger.pof' from slot '31'
Unloading model 'warp.pof' from slot '32'
Unloading model 'debris01.pof' from slot '33'
Unloading model 'debris02.pof' from slot '34'
... Log closed, Tue Jan 07 16:20:05 2025
|