Uploaded on: 27.07.2024
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 | ==========================================================================
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\Reneg\AppData\Roaming\HardLightProductions\FreeSpaceOpen\data\fs2_open.log', Sat Jul 27 00:21:05 2024 ...
Legacy config mode is DISABLED.
Reason: Legacy mode disabled since the new config location was used more recently than the old location.
Initializing SDL 2.0.10 (compiled with 2.0.10)...
FreeSpace 2 Open version: 24.0.2
Passed cmdline options:
-soft_particles
-aa
-aa_preset 3
-mod Blackwater_Operations_Dump-0.9.99,MVPS-4.7.3
-parse_cmdline_only
Building file index...
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_a_warp.vp' with a checksum of 0x9658a8f8
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_animglows.vp' with a checksum of 0x21fa6154
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets.vp' with a checksum of 0xa3ed0eab
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s.vp' with a checksum of 0x16c62a7f
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s_maps1.vp' with a checksum of 0x4d3207d7
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s_maps2.vp' with a checksum of 0xa9a86c54
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s_maps3.vp' with a checksum of 0x2143555c
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_1.vp' with a checksum of 0xad5a9aa4
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_2.vp' with a checksum of 0x0bb51352
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps1.vp' with a checksum of 0x2aad5925
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps2.vp' with a checksum of 0xad822e2a
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps3.vp' with a checksum of 0xd46cb944
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps4.vp' with a checksum of 0x29c3873d
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps5.vp' with a checksum of 0x56909467
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps6.vp' with a checksum of 0x86541bc2
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps7.vp' with a checksum of 0x59c0bc29
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_v.vp' with a checksum of 0x518d32e5
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_v_maps1.vp' with a checksum of 0x4231f9f8
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_v_maps2.vp' with a checksum of 0xafda7532
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_cb_ani_1.vp' with a checksum of 0x30a95a21
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_cb_ani_2.vp' with a checksum of 0x220d84d8
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_cb_ani_3.vp' with a checksum of 0x0ff94ac9
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_compatibility.vp' with a checksum of 0x450ef336
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_1.vp' with a checksum of 0x186db8fd
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_2.vp' with a checksum of 0x073ae85c
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_3.vp' with a checksum of 0x081ebf4e
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_mainhalls.vp' with a checksum of 0x2faf47c3
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_music.vp' with a checksum of 0x7dc7b726
Found root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_root.vp' with a checksum of 0x0f072187
Found root pack 'D:\FreespaceOpen\FS2\FS2OGGcutscenepack.vp' with a checksum of 0x84396e99
Found root pack 'D:\FreespaceOpen\FS2\multi-mission-pack.vp' with a checksum of 0x377695e0
Found root pack 'D:\FreespaceOpen\FS2\multi-voice-pack.vp' with a checksum of 0xd50e7442
Found root pack 'D:\FreespaceOpen\FS2\root_fs2.vp' with a checksum of 0xce10d76c
Found root pack 'D:\FreespaceOpen\FS2\smarty_fs2.vp' with a checksum of 0xddeb3b1e
Found root pack 'D:\FreespaceOpen\FS2\sparky_fs2.vp' with a checksum of 0x164fe65a
Found root pack 'D:\FreespaceOpen\FS2\sparky_hi_fs2.vp' with a checksum of 0xa11d56f1
Found root pack 'D:\FreespaceOpen\FS2\stu_fs2.vp' with a checksum of 0xd77da83a
Found root pack 'D:\FreespaceOpen\FS2\tango1_fs2.vp' with a checksum of 0x4c25221e
Found root pack 'D:\FreespaceOpen\FS2\tango2_fs2.vp' with a checksum of 0x86920b82
Found root pack 'D:\FreespaceOpen\FS2\tango3_fs2.vp' with a checksum of 0x705e8d71
Found root pack 'D:\FreespaceOpen\FS2\warble_fs2.vp' with a checksum of 0xd85c305d
Searching root 'C:\Users\Reneg\AppData\Roaming\HardLightProductions\FreeSpaceOpen\Blackwater_Operations_Dump-0.9.99\' ... 0 files
Searching root 'C:\Users\Reneg\AppData\Roaming\HardLightProductions\FreeSpaceOpen\MVPS-4.7.3\' ... 0 files
Searching root 'C:\Users\Reneg\AppData\Roaming\HardLightProductions\FreeSpaceOpen\' ... 3 files
Searching root 'D:\FreespaceOpen\FS2\Blackwater_Operations_Dump-0.9.99\' ... 2335 files
Searching root 'D:\FreespaceOpen\FS2\MVPS-4.7.3\' ... 9 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_a_warp.vp' ... 62 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_animglows.vp' ... 1735 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets.vp' ... 948 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s.vp' ... 34 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s_maps1.vp' ... 63 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s_maps2.vp' ... 157 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_s_maps3.vp' ... 40 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_1.vp' ... 42 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_2.vp' ... 20 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps1.vp' ... 131 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps2.vp' ... 62 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps3.vp' ... 94 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps4.vp' ... 110 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps5.vp' ... 64 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps6.vp' ... 26 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_t_maps7.vp' ... 46 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_v.vp' ... 33 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_v_maps1.vp' ... 143 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_assets_v_maps2.vp' ... 39 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_cb_ani_1.vp' ... 26 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_cb_ani_2.vp' ... 31 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_cb_ani_3.vp' ... 32 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_compatibility.vp' ... 1349 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_1.vp' ... 3358 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_2.vp' ... 3478 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_3.vp' ... 1466 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_mainhalls.vp' ... 2 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_music.vp' ... 32 files
Searching root pack 'D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_root.vp' ... 688 files
Searching root 'D:\FreespaceOpen\FS2\' ... 4 files
Searching root pack 'D:\FreespaceOpen\FS2\FS2OGGcutscenepack.vp' ... 10 files
Searching root pack 'D:\FreespaceOpen\FS2\multi-mission-pack.vp' ... 110 files
Searching root pack 'D:\FreespaceOpen\FS2\multi-voice-pack.vp' ... 307 files
Searching root pack 'D:\FreespaceOpen\FS2\root_fs2.vp' ... 157 files
Searching root pack 'D:\FreespaceOpen\FS2\smarty_fs2.vp' ... 10 files
Searching root pack 'D:\FreespaceOpen\FS2\sparky_fs2.vp' ...
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\16b11k\boom_3.wav
Existing:
D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_1.vp::data\sounds\boom_3.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\16b11k\Thunder_01.wav
Existing:
D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_1.vp::data\sounds\Thunder_01.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\16b11k\Thunder_02.wav
Existing:
D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_1.vp::data\sounds\Thunder_02.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\8b22k\l_alien1.wav
Existing:
D:\FreespaceOpen\FS2\Blackwater_Operations_Dump-0.9.99\data\sounds\l_alien1.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\8b22k\L_alien2.wav
Existing:
D:\FreespaceOpen\FS2\Blackwater_Operations_Dump-0.9.99\data\sounds\L_alien2.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\8b22k\L_Alien3.wav
Existing:
D:\FreespaceOpen\FS2\Blackwater_Operations_Dump-0.9.99\data\sounds\L_Alien3.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\8b22k\l_vashvy.wav
Existing:
D:\FreespaceOpen\FS2\Blackwater_Operations_Dump-0.9.99\data\sounds\l_vashvy.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\8b22k\l_vaslight.wav
Existing:
D:\FreespaceOpen\FS2\Blackwater_Operations_Dump-0.9.99\data\sounds\l_vaslight.wav
WARNING! A file being indexed may be shadowed by an existing file!
New:
D:\FreespaceOpen\FS2\sparky_fs2.vp::data\sounds\8b22k\warp_1.wav
Existing:
D:\FreespaceOpen\FS2\MVPS-4.7.3\mv_effects_1.vp::data\sounds\warp_1.wav
3027 files
Searching root pack 'D:\FreespaceOpen\FS2\sparky_hi_fs2.vp' ... 1337 files
Searching root pack 'D:\FreespaceOpen\FS2\stu_fs2.vp' ... 2355 files
Searching root pack 'D:\FreespaceOpen\FS2\tango1_fs2.vp' ... 32 files
Searching root pack 'D:\FreespaceOpen\FS2\tango2_fs2.vp' ... 15 files
Searching root pack 'D:\FreespaceOpen\FS2\tango3_fs2.vp' ... 10 files
Searching root pack 'D:\FreespaceOpen\FS2\warble_fs2.vp' ... 52 files
Searching memory root ... 77 files
Found 48 roots and 24161 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)
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_root-lcl.tbm' ...
Setting language to RETAIL HYBRID
TBM => Starting parse of 'mv_root-lcl.tbm' ...
TBM => Starting parse of 'mv_root-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 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 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 1713
No XSTR entry in strings.tbl for index 1714
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 1716
No XSTR entry in strings.tbl for index 1697
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 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.18.2
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: 48000 (44100)
EFX enabled: NO
Playback device: OpenAL Soft on Speakers (High Definition Audio Device)
Capture device: OpenAL Soft on Microphone (High Definition Audio Device)
... OpenAL successfully initialized!
Initializing SDL video...
Initializing OpenGL graphics device at 1920x1080 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 2070/PCIe/SSE2
OpenGL Version : 4.5.0 NVIDIA 552.41
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
Can use compressed textures: YES
Texture compression available: 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' ...
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 'bwo-sdf.tbm' ...
TBM => Starting parse of 'mv_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 `Paladin` with version 0
PST => Loading `Thrustmaster` with version 0
PST => Loading `Thrustmaster2` 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 GTVA Colossus
Adding cutscene Bosch Monologue 1
Adding cutscene Bosch Monologue 2
Adding cutscene Bosch Monologue 3
Adding cutscene Bosch Monologue 4
Adding cutscene Bastion dies
Adding cutscene End Game
Adding cutscene End Game Part 2A
Adding cutscene End Game Part 2B
Initializing Joystick...
Printing joystick info:
Joystick name: T.Flight Hotas X
Joystick GUID: 030000004F04000008B1000000000000
Joystick ID: 0
Joystick device ID: 0
Using 'T.Flight Hotas X' as Joy-0
Number of axes: 5
Number of buttons: 12
Number of hats: 1
Number of trackballs: 0
Current soundtrack set to -1 in event_music_reset_choices
TBM => Starting parse of 'mv_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 'BWO-sexp.tbm' ...
TBM => Starting parse of 'mv_effects-mfl.tbm' ...
TBM => Starting parse of 'BWO-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 'bwo-amr.tbm' ...
TBM => Starting parse of 'mv_assets-aip.tbm' ...
TBM => Starting parse of 'mv_root-wxp.tbm' ...
TBM => Starting parse of 'mv_effects-wxp.tbm' ...
TBM => Starting parse of 'BWO-wxp.tbm' ...
Ignoring "stream" flag on weapon Subach HL-7...
Ignoring "stream" flag on weapon Mekhu HL-7...
Ignoring "stream" flag on weapon Morning Star...
Ignoring "stream" flag on weapon Maxim...
Ignoring "stream" flag on weapon Mace...
Ignoring "stream" flag on weapon Renegade...
Ignoring "stream" flag on weapon Adjudicator...
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 'bwo-wep.tbm' ...
TBM => Starting parse of 'mv_effects-obt.tbm' ...
Loading model 'GVDr_Aaru-WB.pof' into slot '0'
No subsystems found for model "GVDr_Aaru-WB.pof".
Unloading model 'GVDr_Aaru-WB.pof' from slot '0'
Specified deprecated non-initial type animation on subsystem arm1 of ship class GVDr Aaru#WithBomb. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem arm2 of ship class GVDr Aaru#WithBomb. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem braces of ship class GVDr Aaru#WithBomb. Consider using *-anim.tbm's instead.
Loading model 'GVDr_Aaru-EX.pof' into slot '0'
Unloading model 'GVDr_Aaru-EX.pof' from slot '0'
Specified deprecated non-initial type animation on subsystem arm1 of ship class GVDr Aaru#Extended. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem arm2 of ship class GVDr Aaru#Extended. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem braces of ship class GVDr Aaru#Extended. Consider using *-anim.tbm's instead.
Loading model 'GVM_Shehin.pof' into slot '0'
Unloading model 'GVM_Shehin.pof' from slot '0'
Specified deprecated non-initial type animation on subsystem FlapTopPort of ship class SMB Medusa. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem FlapBtmPort of ship class SMB Medusa. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem FlapTopStarboard of ship class SMB Medusa. Consider using *-anim.tbm's instead.
Specified deprecated non-initial type animation on subsystem FlapBtmStarboard of ship class SMB Medusa. Consider using *-anim.tbm's instead.
TBM => Starting parse of 'mv_root-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 'mv_mainhall-hlp.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' ...
TBM => Starting parse of 'bwo-str.tbm' ...
TBM => Starting parse of 'Act5-str.tbm' ...
TABLES => Starting parse of 'ssm.tbl'...
TBM => Starting parse of lighting profiles ...
TBM => Starting parse of 'mv_mainhall-hall.tbm' ...
Game Settings Table: Show-subtitle adjusted resolution is (-1, -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' ...
TBM => Starting parse of 'zLoadFirst-sct.tbm' ...
TBM => Starting parse of 'parsecfg-sct.tbm' ...
TBM => Starting parse of 'IMJump-sct.tbm' ...
TBM => Starting parse of 'axui-sct.tbm' ...
TBM => Starting parse of 'axmsg-sct.tbm' ...
TBM => Starting parse of 'axease-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: Flaming debris override found for TC-TRI
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: Flaming debris override found for GTNB Pharos
MediaVPs: Flaming debris override found for Asteroid
MediaVPs: Flaming debris override found for TC-Meson Bomb
MediaVPs: In mv_effects-fdbrs.tbm, class VC 3 not found
MediaVPs: Flaming debris override found for VAC 4
MediaVPs: Flaming debris override found for VAC 5
MediaVPs: Flaming debris override found for SC 5
MediaVPs: Flaming debris override found for SAC 2
MediaVPs: Flaming debris override found for SAC 3
AXUI starting up...
AXUI Screen Intializing...
y: 0
h: 1080
y_aspect: 1.40625
x: 240
w: 1440
x_aspect: 1.40625
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 2097
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.2°
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
No XSTR entry in strings.tbl for index 1779
Option.Graphics.Shadows: Disabled
Option.Audio.Effects: 0.8
Option.Audio.Voice: 0.7
Option.Game.Language: English
Option.Audio.Music: 0.1
Option.Input.Joystick: T.Flight Hotas X
No XSTR entry in strings.tbl for index 1673
Option.Input.Joystick1: None
Option.Input.Joystick2: None
Option.Input.Joystick3: None
Option.Graphics.DeferredLighting: On
Option.Graphics.MotionDebris: On
Option.Graphics.3dWarp: On
Option.Input.MouseSensitivity: 5
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) Generic PnP Monitor
Option.Graphics.Resolution: 1920x1080
Option.Graphics.SoftParticles: On
No XSTR entry in strings.tbl for index 1690
Option.Graphics.FramebufferEffects: All
No XSTR entry in strings.tbl for index 1684
Option.Graphics.AAMode: SMAA Low
No XSTR entry in strings.tbl for index 1693
Option.Graphics.MSAASamples: Off
Option.Graphics.PostProcessing: On
Option.Graphics.VSync: 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: 26
Option.Graphics.WarpFlash: On
No XSTR entry in strings.tbl for index 1678
Option.Graphics.TextureFilter: Trilinear
Option.Graphics.Anisotropy: 16x
Initializing head tracking...
Failed to load library 'scptrackir64.dll': 'Failed loading scptrackir64.dll: The specified module could not be found.
'
TrackIR Init Failed - -1
Failed to initialize 'TrackIR': Failed to initialize TrackIR.
Failed to load library '': 'Failed loading : The parameter is incorrect.
'
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 Log: [theora @ 00000000035206a0] 7 bits left in packet 82
FFMPEG Log: [ogg @ 000000000351f4c0] Broken file, keyframe not correctly marked.
FFMPEG Log: [theora @ 00000000209200a0] 7 bits left in packet 82
FFmpeg: Using video codec Theora (theora).
FFmpeg: Using audio codec Vorbis (vorbis).
Frame 0 too long!!: frametime = 8.825 (8.825)
FFMPEG Log: [ogg @ 000000000351f4c0] Broken file, keyframe not correctly marked.
FFMPEG Log: [ogg @ 000000000351f4c0] Broken file, keyframe not correctly marked.
FFMPEG Log: [ogg @ 000000000351f4c0] Broken file, keyframe not correctly marked.
Discord: connected to user renegadepaladin#0 - 242380561946116099
Got event GS_EVENT_GAME_INIT (49) in state NOT A VALID STATE (0)
PLR => Loading 'Paladin.json' with version 4...
PLR => Parsing: Info...
PLR => Parsing: Containers...
PLR => Parsing: Scoring...
PLR => Parsing: ScoringMulti...
PLR => Parsing: Flags...
PLR => Parsing: Settings...
PLR => Parsing: HUD...
PLR => Parsing: Variables...
PLR => Parsing: Multiplayer...
PLR => Parsing: Controls...
PLR => Loading complete!
PLR => Verifying 'Paladin.json' with version 4...
PLR => Parsing: Info...
PLR => Parsing: Flags...
PLR => Verifying complete!
Frame 0 too long!!: frametime = 8.847 (8.847)
PLR => Verifying 'Paladin.json' with version 4...
PLR => Parsing: Info...
PLR => Parsing: Flags...
PLR => Verifying complete!
Got event GS_EVENT_MAIN_MENU (0) in state GS_STATE_INITIAL_PLAYER_SELECT (37)
PLR => Loading 'Paladin.json' with version 4...
PLR => Parsing: Info...
PLR => Parsing: Containers...
PLR => Parsing: Scoring...
PLR => Parsing: ScoringMulti...
PLR => Parsing: Flags...
PLR => Parsing: Settings...
PLR => Parsing: HUD...
PLR => Parsing: Variables...
PLR => Parsing: Multiplayer...
PLR => Parsing: Controls...
PLR => Loading complete!
CSG => Loading 'Paladin.FreeSpace2.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 => Warning: (0x0011) Short read, information may have been lost!
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
CSG => Loading complete!
PLR => Saving 'Paladin.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!
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
CSG => Loading 'Paladin.FreeSpace2.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 => Warning: (0x0011) Short read, information may have been lost!
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
CSG => Loading complete!
No XSTR entry in strings.tbl for index 503
No XSTR entry in strings.tbl for index 504
No XSTR entry in strings.tbl for index 506
No XSTR entry in strings.tbl for index 505
Got event GS_EVENT_NEW_CAMPAIGN (26) in state GS_STATE_MAIN_MENU (1)
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
CSG => Loading 'Paladin.FreeSpace2.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 => Warning: (0x0011) Short read, information may have been lost!
CSG => Parsing: HUD...
CSG => Parsing: Variables...
CSG => Parsing: Settings...
CSG => Parsing: Controls...
CSG => Parsing: Cutscenes...
CSG => Parsing: Last Missions...
CSG => Parsing: Containers...
CSG => Loading complete!
Got event GS_EVENT_START_GAME (1) in state GS_STATE_MAIN_MENU (1)
=================== STARTING LEVEL LOAD ==================
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 animation...
SHOCKWAVE => Default animation load: SUCCEEDED!!
MISSION LOAD: 'Training-1.fs2'
Hmmm... Extension passed to mission_load...
Current soundtrack set to -1 in event_music_reset_choices
Starting mission message count : 205
Ending mission message count : 242
Current soundtrack set to -1 in event_music_set_soundtrack
Loading model 'Myrmidon.pof' into slot '0'
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 5 new ship subsystems ... a total of 200 is now available (5 in-use).
Loading model 'Drone01.pof' into slot '1'
Submodel 'detail3' is detail level 1 of 'detail2'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 3 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail1' is detail level 1 of 'detail0'
Reassigning player to squadron 53rd Hammerheads
Someone passed an extension to bm_load for file 'hammer1.pcx'
Loading model 'Starfield.pof' into slot '2'
Model Starfield.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
=================== STARTING LEVEL DATA LOAD ==================
SOUND ==> Could not open wave file warp2.wav for streaming. Reason: File not found with any known extension.
Warning: Sound 'machx.wav' has more than one channel but is used as a 3D sound! 3D sounds may only have one channel.
Warning: Sound 'l_sbreaker.wav' has more than one channel but is used as a 3D sound! 3D sounds may only have one channel.
Loading model 'Hygeia.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 '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 'Nephthys.pof' into slot '4'
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 'glassb' is detail level 1 of 'glassa'
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 'SMS_Centaur.pof' into slot '5'
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 'rockeye.pof' into slot '6'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'Tempest.pof' into slot '7'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail1' is detail level 1 of 'detail0'
Loading model 'bombardier.pof' into slot '8'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'cmeasure01.pof' into slot '9'
Loading model 'VasudanCM.pof' into slot '10'
Submodel 'detail1' is detail level 1 of 'detail0'
Loading warp model 'warp.pof'
Loading model 'warp.pof' into slot '11'
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 '12'
Loading model 'debris02.pof' into slot '13'
Paging in mission messages
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 = 758, Estimated count = 719
================================================
Level load took 10.818000 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)
Loading model 'wep_subach_tech.pof' into slot '14'
Model wep_subach_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Command Briefing UI: Using scroll buttons
Frame 0 too long!!: frametime = 11.067 (11.067)
Got event GS_EVENT_MAIN_MENU (0) in state GS_STATE_CMD_BRIEF (43)
Unloading model 'wep_subach_tech.pof' from slot '14'
brief_close() returning without doing anything
Cleanup: Deleted 30 objects
Unloading in mission messages
CSG => Saving 'Paladin.FreeSpace2.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!
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
CSG => Loading 'Paladin.FreeSpace2.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 => Warning: (0x0011) Short read, information may have been lost!
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 'hammer1.pcx'
CSG => Loading complete!
Got event GS_EVENT_TECH_MENU (11) in state GS_STATE_MAIN_MENU (1)
Techroom successfully initialized, now changing tab...
Loading model 'Ulysses.pof' into slot '14'
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'
Frame 0 too long!!: frametime = 0.365 (0.365)
WARNING: Failed to find uniform 'sHeightmap'.
Got event GS_EVENT_SIMULATOR_ROOM (58) in state GS_STATE_TECH_MENU (7)
Freeing all existing models...
Unloading model 'Myrmidon.pof' from slot '0'
Unloading model 'Drone01.pof' from slot '1'
Unloading model 'Starfield.pof' from slot '2'
Unloading model 'Hygeia.pof' from slot '3'
Unloading model 'Nephthys.pof' from slot '4'
Unloading model 'SMS_Centaur.pof' from slot '5'
Unloading model 'rockeye.pof' from slot '6'
Unloading model 'Tempest.pof' from slot '7'
Unloading model 'bombardier.pof' from slot '8'
Unloading model 'cmeasure01.pof' from slot '9'
Unloading model 'VasudanCM.pof' from slot '10'
Unloading model 'warp.pof' from slot '11'
Unloading model 'debris01.pof' from slot '12'
Unloading model 'debris02.pof' from slot '13'
Unloading model 'Ulysses.pof' from slot '14'
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine_Neb' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
Substitute main hall 'Aquitaine' not found
CSG => Loading 'Paladin.FreeSpace2.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 => Warning: (0x0011) Short read, information may have been lost!
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 'hammer1.pcx'
CSG => Loading complete!
Frame 0 too long!!: frametime = 1.406 (1.406)
Frame 0 too long!!: frametime = 1.400 (1.400)
Got event GS_EVENT_START_GAME (1) in state GS_STATE_SIMULATOR_ROOM (20)
PLR => Saving 'Paladin.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!
=================== STARTING LEVEL LOAD ==================
Starting model page in...
Beginning level bitmap paging...
MISSION LOAD: 'BWO-E1M1'
Current soundtrack set to -1 in event_music_reset_choices
Starting mission message count : 205
Ending mission message count : 205
Loading model 'Perseus.pof' into slot '0'
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 'Flap_LF_DNb' is detail level 1 of 'Flap_LF_DNa'
Submodel 'Flap_LF_DNc' is detail level 2 of 'Flap_LF_DNa'
Submodel 'Flap_LF_DNd' is detail level 3 of 'Flap_LF_DNa'
Submodel 'Flap_LF_UPb' is detail level 1 of 'Flap_LF_UPa'
Submodel 'Flap_LF_UPc' is detail level 2 of 'Flap_LF_UPa'
Submodel 'Flap_LF_UPd' is detail level 3 of 'Flap_LF_UPa'
Submodel 'Flap_RT_DNb' is detail level 1 of 'Flap_RT_DNa'
Submodel 'Flap_RT_DNc' is detail level 2 of 'Flap_RT_DNa'
Submodel 'Flap_RT_DNd' is detail level 3 of 'Flap_RT_DNa'
Submodel 'Flap_RT_UPb' is detail level 1 of 'Flap_RT_UPa'
Submodel 'Flap_RT_UPc' is detail level 2 of 'Flap_RT_UPa'
Submodel 'Flap_RT_UPd' is detail level 3 of 'Flap_RT_UPa'
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 'Mentu.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 '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 21 new ship subsystems ... a total of 200 is now available (21 in-use).
Loading model 'bes.pof' into slot '2'
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 'vac5.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 '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 'Boanerges.pof' into slot '4'
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 'Artemis.pof' into slot '5'
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 'Myrmidon.pof' into slot '6'
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 'Tauret.pof' into slot '7'
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 'detail4' is detail level 4 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail4' is detail level 3 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Submodel 'detail4' is detail level 2 of 'detail2'
Submodel 'detail4' is detail level 1 of 'detail3'
Loading model 'Thoth.pof' into slot '8'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 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'
Loading model 'Isis.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 'Turret01b' is detail level 1 of 'Turret01'
Submodel 'Turret01b-arm' is detail level 1 of 'Turret01-arm'
Submodel 'Turret02b' is detail level 1 of 'Turret02'
Submodel 'Turret02b-arm' is detail level 1 of 'Turret02-arm'
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 'Sobek.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 'detail2' is detail level 1 of 'detail1'
Submodel 'detail3' is detail level 2 of 'detail1'
Submodel 'detail3' is detail level 1 of 'detail2'
Submodel L-Clamp01 of model Isis.pof is animated and has movement enabled.
Submodel R-Clamp01 of model Isis.pof is animated and has movement enabled.
Submodel L-Clamp02 of model Isis.pof is animated and has movement enabled.
Submodel R-Clamp02 of model Isis.pof is animated and has movement enabled.
Submodel L-Clamp03 of model Isis.pof is animated and has movement enabled.
Submodel R-Clamp03 of model Isis.pof is animated and has movement enabled.
Submodel L-Clamp04 of model Isis.pof is animated and has movement enabled.
Submodel R-Clamp04 of model Isis.pof is animated and has movement enabled.
Loading model 'Aeolus.pof' into slot '11'
Subsystem 'Fighterbay' on ship Aeolus.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 '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 'Leviathan_FS2.pof' into slot '12'
Subsystem 'armour04a' on ship Leviathan_FS2.pof is not recognized as a common subsystem type
Subsystem 'armour02a' on ship Leviathan_FS2.pof is not recognized as a common subsystem type
Subsystem 'armour01a' on ship Leviathan_FS2.pof is not recognized as a common subsystem type
Subsystem 'armour03a' on ship Leviathan_FS2.pof is not recognized as a common subsystem type
Subsystem 'armour05a' on ship Leviathan_FS2.pof is not recognized as a common subsystem type
Subsystem 'armour06a' on ship Leviathan_FS2.pof is not recognized as a common subsystem type
Subsystem 'armour07a' on ship Leviathan_FS2.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 'turret02b' is detail level 1 of 'turret02'
Submodel 'turret02b-destroyed' is detail level 1 of 'turret02-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'
Loading model 'Ptah.pof' into slot '13'
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 'Osiris.pof' into slot '14'
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 'fighter2v-03.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 'Skybox-BetaAquilae.pof' into slot '16'
Loading model 'Asteroid-BrownSmall.pof' into slot '17'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'Asteroid-BrownMedium.pof' into slot '18'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'Asteroid-BrownLarge.pof' into slot '19'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
=================== STARTING LEVEL DATA LOAD ==================
Warning: Sound 'machx.wav' has more than one channel but is used as a 3D sound! 3D sounds may only have one channel.
Warning: Sound 'l_sbreaker.wav' has more than one channel but is used as a 3D sound! 3D sounds may only have one channel.
Loading model 'Hygeia.pof' into slot '20'
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 'Nephthys.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 'glassb' is detail level 1 of 'glassa'
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 'SMS_Centaur.pof' into slot '22'
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 191 new ship subsystems ... a total of 400 is now available (143 in-use).
About to page in ships!
Loading model 'Blip.pof' into slot '23'
Submodel 'blipb' is detail level 1 of 'blipa'
Submodel 'blipc' is detail level 2 of 'blipa'
Submodel 'blipd' is detail level 3 of 'blipa'
Submodel 'blipc' is detail level 1 of 'blipb'
Submodel 'blipd' is detail level 2 of 'blipb'
Submodel 'blipd' is detail level 1 of 'blipc'
Loading model 'rockeye.pof' into slot '24'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'Tempest.pof' into slot '25'
Submodel 'detail2' is detail level 1 of 'detail1'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail1' is detail level 1 of 'detail0'
Loading model 'NewHornet.pof' into slot '26'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Loading model 'bombardier.pof' into slot '27'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'crossbow.pof' into slot '28'
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 'trebuchet.pof' into slot '29'
Submodel 'detail1' is detail level 1 of 'detail0'
Submodel 'detail2' is detail level 2 of 'detail0'
Submodel 'detail2' is detail level 1 of 'detail1'
Loading model 'piranha.pof' into slot '30'
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 'stilettoII.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 model 'cyclops.pof' into slot '32'
Loading model 'cmeasure01.pof' into slot '33'
Loading model 'VasudanCM.pof' into slot '34'
Submodel 'detail1' is detail level 1 of 'detail0'
Loading model 'harbinger.pof' into slot '35'
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 'hornet.pof' into slot '36'
Submodel 'detail-3' is detail level 1 of 'detail-2'
Submodel 'detail-2' is detail level 2 of 'detail-0'
Submodel 'detail-3' is detail level 3 of 'detail-0'
Submodel 'detail-1' is detail level 1 of 'detail-0'
Submodel 'detail-2' is detail level 1 of 'detail-1'
Submodel 'detail-3' is detail level 2 of 'detail-1'
Loading warp model 'warp.pof'
Loading model 'warp.pof' into slot '37'
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 '38'
Loading model 'debris02.pof' into slot '39'
Paging in mission messages
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 = 1026, Estimated count = 719
================================================
Level load took 10.656000 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)
Loading model 'Hercules-2.pof' into slot '40'
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 'doodadb' is detail level 1 of 'doodada'
Submodel 'glassb' is detail level 1 of 'glassa'
Submodel 'glassc' is detail level 2 of 'glassa'
Submodel 'glassd' is detail level 3 of 'glassa'
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 'Serapis.pof' into slot '41'
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 'wep_subach_tech.pof' into slot '42'
Model wep_subach_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Loading model 'wep_akheton_tech.pof' into slot '43'
Model wep_akheton_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Loading model 'wep_morningstar_tech.pof' into slot '44'
Model wep_morningstar_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Loading model 'wep_proms_tech.pof' into slot '45'
Model wep_proms_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Loading model 'wep_circe_tech.pof' into slot '46'
Model wep_circe_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Loading model 'wep_lamprey_tech.pof' into slot '47'
Model wep_lamprey_tech.pof has a null moment of inertia! (This is only a problem if the model is a ship.)
Loading model 'rockeye-tech.pof' into slot '48'
Loading model 'tempest_tech.pof' into slot '49'
Loading model 'newhornet_tech.pof' into slot '50'
Loading model 'bombardier-tech.pof' into slot '51'
Loading model 'crossbow_tech.pof' into slot '52'
Loading model 'trebuchet-tech.pof' into slot '53'
Command Briefing UI: Using scroll buttons
Frame 0 too long!!: frametime = 11.433 (11.433)
Got event GS_EVENT_START_BRIEFING (15) in state GS_STATE_CMD_BRIEF (43)
CSG => Saving 'Paladin.FreeSpace2.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!
Got event GS_EVENT_ENTER_GAME (2) in state GS_STATE_BRIEFING (10)
Unloading model 'wep_subach_tech.pof' from slot '42'
Unloading model 'wep_akheton_tech.pof' from slot '43'
Unloading model 'wep_morningstar_tech.pof' from slot '44'
Unloading model 'wep_proms_tech.pof' from slot '45'
Unloading model 'wep_circe_tech.pof' from slot '46'
Unloading model 'wep_lamprey_tech.pof' from slot '47'
Unloading model 'rockeye-tech.pof' from slot '48'
Unloading model 'tempest_tech.pof' from slot '49'
Unloading model 'newhornet_tech.pof' from slot '50'
Unloading model 'bombardier-tech.pof' from slot '51'
Unloading model 'crossbow_tech.pof' from slot '52'
Unloading model 'trebuchet-tech.pof' from slot '53'
Initializing AXMessage...
Beginning JSON Parse for axmessage.cfg
No path specified, assuming data/config...
axmessage.cfg exists, decoding... success!
Loaded axmessage config file
AXMESSAGE: Found resolution 1: 1024
AXMESSAGE: Found resolution 2: 1920
AXMESSAGE: Found resolution 3: 2560
AXMESSAGE: Loading resolution number 2
Entering game at time = 58.869
Submodel Flap_LF_DNa of model Perseus.pof is animated and has movement enabled.
Submodel Flap_LF_UPa of model Perseus.pof is animated and has movement enabled.
Submodel Flap_RT_DNa of model Perseus.pof is animated and has movement enabled.
Submodel Flap_RT_UPa of model Perseus.pof is animated and has movement enabled.
FFMPEG Log: [adpcm_ms @ 0000000022dfd1e0] Multiple frames in a packet.
CRASH DETECTED!!! Wrote crash dump to D:\FreespaceOpen\bin\FSO-24.0.2\windows\x64_avx\fs2_open_24_0_2_x64_AVX-FASTDBG_20240727_042204.mdmp
|