-
Notifications
You must be signed in to change notification settings - Fork 0
/
g_debug_archive.txt
3995 lines (3982 loc) · 124 KB
/
g_debug_archive.txt
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
0.4 gfx_sdl2 "SDL 2.0.14 (1 joysticks) Driver:windows (Drivers: windows dummy)"
0.4 disable_native_text_input=0
0.4 music_sdl2, SDL_Mixer 2.0.5 (44100Hz, Music decoders:WAVE,MODPLUG,MOD,MAD,MP3,OGG,NATIVEMIDI,MIDI Sample decoders:WAVE,AIFF,VOC,MOD,MP3,OGG,MID)
0.4 Setting default window settings...
0.4 set_resolution 320*200
0.4 Setting graphics scaling to x2 change_windowsize=-1
0.4 Received message from Custom: V OHRRPGCE,4,12284,OHRRPGCE wip 20210611
0.4 Received message from Custom: G C:\OHRRPGCE\0_ohrgames\0-mirrorworld\mirrorworld.rpg
0.4 Received message from Custom: W C:\Users\Dell\AppData\Roaming\OHRRPGCE\working0.tmp\
end_debug: no debug/error messages during startup (skipping rest of startup)
0.5 ----Loading C:\OHRRPGCE\0_ohrgames\0-mirrorworld\mirrorworld.rpg----
0.5 curdir: C:\OHRRPGCE\0_ohrgames\0-mirrorworld
0.5 tmpdir: C:\Users\Dell\AppData\Local\Temp\ohrrpgce20210718110318.854.tmp\
0.5 settings_dir: C:\Users\Dell\AppData\Roaming\OHRRPGCE
0.5 savedir: C:\OHRRPGCE\0_ohrgames\0-mirrorworld\mirrorworld.saves
0.5 Name:
1.5 plotscr.hsd version: 3U
2.0 lock_resolution()
2.0 set_resolution 426*240
2.0 recenter_window_hint()
2.0 get_screen_size: true screen size 1600x900
2.0 Desktop resolution: 1600*860
2.0 automatic_scale_factor(0.5), screen size: 1600*860
2.0 Setting graphics scaling to x2 change_windowsize=-1
2.0 Preserving fullscreen/windowed state
2.0 genRungameFullscreenIndependent: 0
2.5 Joystick 0 GUID 030000005e0400008e020000000072 instance_id 0
2.5 Opened as gamecontroller Xbox 360 Controller
2.5 Opened joystick 0 Xbox 360 Controller (id 0) -- 11 buttons 6 axes 1 hats 0 balls
6.1 Loadgame requested; resetgame
16.3 Loading save slot 0
16.3 loadgame: 0 is a valid normal slot, updating lastsaveslot
16.3 ! Scripterr(5): defkeypress -> keypressmm: firstchild: invalid slice handle 0
16.3 unlock_resolution(426,240)
18.6 set_resolution 426*240
18.6 lock_resolution()
18.6 ! Scripterr(5): defkeypress -> keypressmm: slicechild: invalid slice handle 0
18.6 unlock_resolution(426,240)
19.0 set_resolution 426*240
19.0 lock_resolution()
19.0 ! Scripterr(5): defkeypress -> keypressmm: firstchild: invalid slice handle 0
19.0 unlock_resolution(426,240)
19.3 set_resolution 426*240
19.3 lock_resolution()
19.3 ! Scripterr(5): defkeypress -> keypressmm: setslicevisible: invalid slice handle 0
19.3 unlock_resolution(426,240)
19.5 set_resolution 426*240
19.5 lock_resolution()
19.5 ! Scripterr(5): defkeypress -> keypressmm: firstchild: invalid slice handle 0
19.5 unlock_resolution(426,240)
20.1 set_resolution 426*240
20.1 lock_resolution()
20.1 ! Scripterr(5): defkeypress -> keypressmm: slicechild: invalid slice handle 0
20.1 unlock_resolution(426,240)
20.1 set_resolution 426*240
20.1 lock_resolution()
20.1 ! Scripterr(5): defkeypress -> keypressmm: firstchild: invalid slice handle 0
20.1 unlock_resolution(426,240)
20.2 set_resolution 426*240
20.2 lock_resolution()
20.2 ! Scripterr(5): defkeypress -> keypressmm: setslicevisible: invalid slice handle 0
20.2 unlock_resolution(426,240)
20.3 set_resolution 426*240
20.3 lock_resolution()
20.3 ! Scripterr(5): defkeypress -> keypressmm: firstchild: invalid slice handle 0
20.3 unlock_resolution(426,240)
20.4 set_resolution 426*240
20.4 lock_resolution()
20.4 ! Scripterr(5): defkeypress -> keypressmm: slicechild: invalid slice handle 0
20.4 unlock_resolution(426,240)
20.5 set_resolution 426*240
20.5 lock_resolution()
20.5 ! Scripterr(5): defkeypress -> keypressmm: firstchild: invalid slice handle 0
20.5 unlock_resolution(426,240)
20.6 set_resolution 426*240
20.6 lock_resolution()
20.6 ! Scripterr(5): defkeypress -> keypressmm: setslicevisible: invalid slice handle 0
20.6 unlock_resolution(426,240)
20.7 set_resolution 426*240
20.7 lock_resolution()
52.2 msg: M ohrrpgce.gen
52.2 msg: M general.reld
53.7 msg: M ohrrpgce.gen
53.7 msg: M general.reld
83.4 msg: M ohrrpgce.gen
83.4 msg: M general.reld
99.3 msg: M ohrrpgce.map
99.3 msg: M ohrrpgce.t03
99.3 msg: M ohrrpgce.p03
99.3 msg: M ohrrpgce.e03
99.3 msg: M ohrrpgce.z03
99.3 msg: M ohrrpgce.l03
99.3 msg: M ohrrpgce.n03
99.3 msg: M ohrrpgce.dox
99.3 msg: M ohrrpgce.d03
99.3 msg: M ohrrpgce.mn
99.3 did not reload ohrrpgce.d03
99.5 msg: M ohrrpgce.map
99.5 msg: M ohrrpgce.t03
99.5 msg: M ohrrpgce.p03
99.5 msg: M ohrrpgce.e03
99.5 msg: M ohrrpgce.z03
99.5 msg: M ohrrpgce.l03
99.5 msg: M ohrrpgce.n03
99.5 msg: M ohrrpgce.dox
99.5 msg: M ohrrpgce.d03
99.5 did not reload ohrrpgce.d03
99.5 msg: M ohrrpgce.mn
100.0 msg: M ohrrpgce.gen
100.0 msg: M general.reld
100.3 msg: M ohrrpgce.gen
106.7 msg: M ohrrpgce.map
106.7 msg: M ohrrpgce.t01
106.7 msg: M ohrrpgce.p01
106.7 msg: M ohrrpgce.e01
106.7 msg: M ohrrpgce.z01
106.7 msg: M ohrrpgce.l01
106.7 msg: M ohrrpgce.n01
106.7 msg: M ohrrpgce.dox
106.7 msg: M ohrrpgce.d01
106.7 msg: M ohrrpgce.mn
106.7 did not reload ohrrpgce.d01
109.9 msg: M ohrrpgce.map
109.9 msg: M ohrrpgce.t01
109.9 msg: M ohrrpgce.p01
109.9 msg: M ohrrpgce.e01
109.9 msg: M ohrrpgce.z01
109.9 msg: M ohrrpgce.l01
109.9 msg: M ohrrpgce.n01
109.9 msg: M ohrrpgce.dox
109.9 msg: M ohrrpgce.d01
109.9 msg: M ohrrpgce.mn
109.9 did not reload ohrrpgce.d01
114.9 msg: M ohrrpgce.map
114.9 msg: M ohrrpgce.t01
114.9 msg: M ohrrpgce.p01
114.9 msg: M ohrrpgce.e01
114.9 msg: M ohrrpgce.z01
114.9 msg: M ohrrpgce.l01
114.9 msg: M ohrrpgce.n01
114.9 msg: M ohrrpgce.dox
114.9 msg: M ohrrpgce.d01
114.9 msg: M ohrrpgce.mn
114.9 did not reload ohrrpgce.d01
115.3 msg: M ohrrpgce.gen
115.3 msg: M general.reld
120.1 msg: M ohrrpgce.gen
132.2 msg: M ohrrpgce.til
133.0 msg: M ohrrpgce.til
134.2 msg: M ohrrpgce.til
137.2 msg: M ohrrpgce.til
138.3 msg: M ohrrpgce.til
140.2 msg: M ohrrpgce.til
148.4 msg: M ohrrpgce.til
148.4 msg: M defpass.bin
148.4 did not reload defpass.bin
149.0 msg: M ohrrpgce.gen
150.0 msg: M ohrrpgce.gen
150.0 msg: M general.reld
159.1 msg: M ohrrpgce.hsp
159.1 msg: M plotscr.lst
159.1 msg: M plotscr.lst
159.1 msg: M lookup1.bin
159.5 plotscr.hsd version: 3U
494.0 msg: M ohrrpgce.hsp
494.1 msg: M plotscr.lst
494.1 msg: M plotscr.lst
494.1 msg: M lookup1.bin
494.8 plotscr.hsd version: 3U
594.7 msg: M ohrrpgce.hsp
594.7 msg: M plotscr.lst
594.7 msg: M plotscr.lst
594.9 plotscr.hsd version: 3U
594.9 msg: M lookup1.bin
6911.4 Loadgame requested; resetgame
6911.9 Loading save slot 0
6911.9 loadgame: 0 is a valid normal slot, updating lastsaveslot
8188.4 Cleaning up and terminating 0
8188.4 Closing music backend...
8188.4 ...done
8188.4 Deleting tmpdir C:\Users\Dell\AppData\Local\Temp\ohrrpgce20210718110318.854.tmp\
8188.6 Closing gfx backend & allmodex...
8188.6 ...done
8188.6 End.
+++|=========> APPLY SWORD, CUT HERE (Please send whole sections)
Loading C:\OHRRPGCE\support\CrashRpt1403.dll
0.1 ----Starting OHRRPGCE Game----
0.1 07-18-2021 14:21:06
0.1 OHRRPGCE wip 20210611.12284 gfx_sdl2+directx+fb/music_sdl2 FreeBASIC 1.05.0 (01-31-2016) gcc 5.3.0 x86 pdb Built on vampirecell -g -gen gcc Win32 32-bit
0.1 exepath: C:\OHRRPGCE, exe: C:\OHRRPGCE\game.exe
0.1 orig_dir: C:\OHRRPGCE\0_ohrgames\0-mirrorworld
0.1 curdir: C:\OHRRPGCE\0_ohrgames\0-mirrorworld
0.1 Runtime info: music_sdl2, SDL 2.0.14, SDL_Mixer 2.0.5 Windows 6.2.9200 (8/Server 2012 or later) , ANSI codepage: 1252
0.1 Reading commands from master channel '\\.\pipe\ohrrpgce_lump_updates_testing_20836'
0.1 Spawned from Custom
0.1 Initialising gfx_sdl2...
0.2 setvideomode zoom=2 w*h = 640,400
0.3 gfx_sdl2 "SDL 2.0.14 (1 joysticks) Driver:windows (Drivers: windows dummy)"
0.3 disable_native_text_input=0
0.3 music_sdl2, SDL_Mixer 2.0.5 (44100Hz, Music decoders:WAVE,MODPLUG,MOD,MAD,MP3,OGG,NATIVEMIDI,MIDI Sample decoders:WAVE,AIFF,VOC,MOD,MP3,OGG,MID)
0.3 Setting default window settings...
0.3 set_resolution 320*200
0.3 Setting graphics scaling to x2 change_windowsize=-1
0.3 Received message from Custom: V OHRRPGCE,4,12284,OHRRPGCE wip 20210611
0.3 Received message from Custom: G C:\OHRRPGCE\0_ohrgames\0-mirrorworld\mirrorworld.rpg
0.3 Received message from Custom: W C:\Users\Dell\AppData\Roaming\OHRRPGCE\working0.tmp\
end_debug: no debug/error messages during startup (skipping rest of startup)
0.4 ----Loading C:\OHRRPGCE\0_ohrgames\0-mirrorworld\mirrorworld.rpg----
0.4 curdir: C:\OHRRPGCE\0_ohrgames\0-mirrorworld
0.4 tmpdir: C:\Users\Dell\AppData\Local\Temp\ohrrpgce20210718142106.60.tmp\
0.4 settings_dir: C:\Users\Dell\AppData\Roaming\OHRRPGCE
0.4 savedir: C:\OHRRPGCE\0_ohrgames\0-mirrorworld\mirrorworld.saves
0.4 Name:
0.7 plotscr.hsd version: 3U
1.2 lock_resolution()
1.2 set_resolution 426*240
1.2 recenter_window_hint()
1.2 get_screen_size: true screen size 1600x900
1.2 Desktop resolution: 1600*860
1.2 automatic_scale_factor(0.5), screen size: 1600*860
1.2 Setting graphics scaling to x2 change_windowsize=-1
1.2 Preserving fullscreen/windowed state
1.2 genRungameFullscreenIndependent: 0
1.7 Joystick 0 GUID 030000005e0400008e020000000072 instance_id 0
1.7 Opened as gamecontroller Xbox 360 Controller
1.7 Opened joystick 0 Xbox 360 Controller (id 0) -- 11 buttons 6 axes 1 hats 0 balls
2.7 Loadgame requested; resetgame
3.2 Loading save slot 0
3.2 loadgame: 0 is a valid normal slot, updating lastsaveslot
56.5 msg: M ohrrpgce.gen
56.5 msg: M general.reld
105.7 msg: M ohrrpgce.hsp
105.7 msg: M plotscr.lst
105.7 msg: M plotscr.lst
105.7 msg: M lookup1.bin
105.9 plotscr.hsd version: 3U
110.3 Loadgame requested; resetgame
110.8 Loading save slot 0
110.8 loadgame: 0 is a valid normal slot, updating lastsaveslot
157.3 ! Scripterr(4): defkeypress -> keypressmm -> imuseitem: mapcure: invalid attack ID 0
157.3 unlock_resolution(426,240)
159.5 set_resolution 426*240
159.5 lock_resolution()
165.0 msg: M ohrrpgce.gen
165.0 msg: M general.reld
230.5 msg: M ohrrpgce.dt6
230.5 msg: M attack.bin
230.5 did not reload ohrrpgce.dt6
230.5 did not reload attack.bin
231.6 msg: M ohrrpgce.dt6
231.6 msg: M attack.bin
231.6 did not reload ohrrpgce.dt6
231.6 did not reload attack.bin
234.8 msg: M ohrrpgce.dt6
234.8 msg: M attack.bin
234.8 did not reload ohrrpgce.dt6
234.8 did not reload attack.bin
238.3 msg: M ohrrpgce.dt6
238.3 msg: M attack.bin
238.3 did not reload ohrrpgce.dt6
238.3 did not reload attack.bin
241.5 msg: M ohrrpgce.dt6
241.5 msg: M attack.bin
241.5 did not reload ohrrpgce.dt6
241.5 did not reload attack.bin
242.8 msg: M ohrrpgce.dt6
242.8 msg: M attack.bin
242.8 did not reload ohrrpgce.dt6
242.8 did not reload attack.bin
245.3 msg: M ohrrpgce.dt6
245.3 msg: M attack.bin
245.3 did not reload ohrrpgce.dt6
245.3 did not reload attack.bin
248.1 msg: M ohrrpgce.dt6
248.1 msg: M attack.bin
248.1 did not reload ohrrpgce.dt6
248.1 did not reload attack.bin
252.8 msg: M ohrrpgce.dt6
252.8 msg: M attack.bin
252.8 did not reload ohrrpgce.dt6
252.8 did not reload attack.bin
254.3 msg: M ohrrpgce.dt6
254.3 msg: M attack.bin
254.3 did not reload ohrrpgce.dt6
254.3 did not reload attack.bin
255.5 msg: M ohrrpgce.dt6
255.5 msg: M attack.bin
255.5 did not reload ohrrpgce.dt6
255.5 did not reload attack.bin
259.8 msg: M ohrrpgce.dt6
259.8 msg: M attack.bin
259.8 did not reload ohrrpgce.dt6
259.8 did not reload attack.bin
264.0 msg: M ohrrpgce.dt6
264.0 msg: M attack.bin
264.0 did not reload ohrrpgce.dt6
264.0 did not reload attack.bin
267.3 msg: M ohrrpgce.dt6
267.3 msg: M attack.bin
267.3 did not reload ohrrpgce.dt6
267.3 did not reload attack.bin
271.9 msg: M ohrrpgce.dt6
271.9 msg: M attack.bin
271.9 did not reload ohrrpgce.dt6
271.9 did not reload attack.bin
276.7 JOYSTICKSTATE.UPDATE_KEYBITS(0) took 53ms
278.8 msg: M ohrrpgce.dt6
278.8 msg: M attack.bin
278.8 did not reload ohrrpgce.dt6
278.8 did not reload attack.bin
312.4 msg: M ohrrpgce.dt6
312.4 msg: M attack.bin
312.4 did not reload ohrrpgce.dt6
312.4 did not reload attack.bin
316.7 msg: M ohrrpgce.dt6
316.7 msg: M attack.bin
316.7 did not reload ohrrpgce.dt6
316.7 did not reload attack.bin
323.4 msg: M ohrrpgce.dt6
323.4 msg: M attack.bin
323.4 did not reload ohrrpgce.dt6
323.4 did not reload attack.bin
363.8 msg: M ohrrpgce.dt6
363.8 msg: M attack.bin
363.8 did not reload ohrrpgce.dt6
363.8 did not reload attack.bin
367.3 msg: M ohrrpgce.gen
367.3 msg: M general.reld
379.0 msg: M ohrrpgce.itm
381.8 msg: M ohrrpgce.itm
433.5 msg: M ohrrpgce.itm
436.9 msg: M ohrrpgce.itm
441.1 msg: M ohrrpgce.gen
441.1 msg: M general.reld
442.4 msg: M ohrrpgce.gen
549.4 msg: M ohrrpgce.dt6
549.4 msg: M attack.bin
549.5 did not reload ohrrpgce.dt6
549.5 did not reload attack.bin
557.4 msg: M ohrrpgce.dt6
557.4 msg: M attack.bin
557.4 did not reload ohrrpgce.dt6
557.4 did not reload attack.bin
560.4 msg: M ohrrpgce.dt6
560.4 msg: M attack.bin
560.4 did not reload ohrrpgce.dt6
560.4 did not reload attack.bin
561.4 msg: M ohrrpgce.gen
561.4 msg: M general.reld
567.1 msg: M ohrrpgce.gen
578.4 msg: M ohrrpgce.dt0
578.4 msg: M heroes.reld
581.0 msg: M ohrrpgce.dt0
581.0 msg: M heroes.reld
583.6 msg: M ohrrpgce.dt0
583.6 msg: M heroes.reld
585.0 msg: M ohrrpgce.dt0
585.0 msg: M heroes.reld
585.5 msg: M ohrrpgce.gen
585.5 msg: M general.reld
589.6 msg: M browse.txt
589.6 msg: M browse.txt
589.6 msg: M general.reld
589.6 msg: M ohrrpgce.gen
589.6 msg: M general.reld
597.1 msg: M browse.txt
597.1 msg: M browse.txt
597.1 msg: M general.reld
597.1 msg: M ohrrpgce.gen
597.1 msg: M general.reld
657.4 msg: M ohrrpgce.gen
658.9 msg: M browse.txt
658.9 msg: M browse.txt
658.9 msg: M general.reld
658.9 msg: M ohrrpgce.gen
658.9 msg: M general.reld
659.3 msg: M ohrrpgce.gen
661.7 msg: M ohrrpgce.hsp
661.7 msg: M plotscr.lst
661.7 msg: M plotscr.lst
661.7 msg: M lookup1.bin
661.9 plotscr.hsd version: 3U
661.9 not reloading script defloadgame because it's in use: refcount=1
661.9 unlock_resolution(426,240)
663.8 set_resolution 426*240
663.8 lock_resolution()
663.8 msg: M ohrrpgce.gen
663.8 msg: M general.reld
664.2 plotscr.hsd version: 3U
666.0 Loadgame requested; resetgame
666.5 Loading save slot 0
666.5 loadgame: 0 is a valid normal slot, updating lastsaveslot
839.4 msg: M ohrrpgce.map
839.4 msg: M ohrrpgce.t04
839.4 msg: M ohrrpgce.p04
839.4 msg: M ohrrpgce.e04
839.4 msg: M ohrrpgce.z04
839.4 msg: M ohrrpgce.l04
839.4 msg: M ohrrpgce.n04
839.4 msg: M ohrrpgce.dox
839.4 msg: M ohrrpgce.d04
839.4 msg: M ohrrpgce.mn
839.5 did not reload ohrrpgce.d04
839.8 msg: M ohrrpgce.map
839.8 msg: M ohrrpgce.t04
839.8 msg: M ohrrpgce.p04
839.8 msg: M ohrrpgce.e04
839.8 msg: M ohrrpgce.z04
839.8 msg: M ohrrpgce.l04
839.8 msg: M ohrrpgce.n04
839.8 msg: M ohrrpgce.dox
839.8 msg: M ohrrpgce.d04
839.8 did not reload ohrrpgce.d04
839.8 msg: M ohrrpgce.mn
857.9 msg: M ohrrpgce.map
857.9 msg: M ohrrpgce.t03
857.9 msg: M ohrrpgce.p03
857.9 msg: M ohrrpgce.e03
857.9 msg: M ohrrpgce.z03
857.9 msg: M ohrrpgce.l03
857.9 msg: M ohrrpgce.n03
857.9 msg: M ohrrpgce.dox
857.9 msg: M ohrrpgce.d03
857.9 msg: M ohrrpgce.mn
858.0 did not reload ohrrpgce.d03
866.0 msg: M ohrrpgce.n03
894.8 msg: M ohrrpgce.n03
897.2 msg: M ohrrpgce.tmn
897.4 msg: M ohrrpgce.tmn
897.6 msg: M ohrrpgce.tmn
898.0 msg: M ohrrpgce.tmn
899.0 msg: M ohrrpgce.tmn
899.2 msg: M ohrrpgce.tmn
899.4 msg: M ohrrpgce.tmn
899.5 msg: M ohrrpgce.tmn
899.6 msg: M ohrrpgce.tmn
899.7 msg: M ohrrpgce.tmn
899.8 msg: M ohrrpgce.tmn
900.2 msg: M ohrrpgce.tmn
903.4 msg: M ohrrpgce.tmn
903.5 msg: M ohrrpgce.tmn
903.7 msg: M ohrrpgce.tmn
903.9 msg: M ohrrpgce.tmn
904.1 msg: M ohrrpgce.tmn
912.7 msg: M ohrrpgce.map
912.7 msg: M ohrrpgce.t03
912.7 msg: M ohrrpgce.p03
912.7 msg: M ohrrpgce.e03
912.8 msg: M ohrrpgce.z03
912.8 msg: M ohrrpgce.l03
912.8 msg: M ohrrpgce.n03
912.8 msg: M ohrrpgce.dox
912.8 msg: M ohrrpgce.d03
912.8 msg: M ohrrpgce.mn
912.8 did not reload ohrrpgce.d03
918.9 msg: M ohrrpgce.map
918.9 msg: M ohrrpgce.t03
918.9 msg: M ohrrpgce.p03
918.9 msg: M ohrrpgce.e03
918.9 msg: M ohrrpgce.z03
918.9 msg: M ohrrpgce.l03
918.9 msg: M ohrrpgce.n03
918.9 msg: M ohrrpgce.dox
918.9 msg: M ohrrpgce.d03
918.9 msg: M ohrrpgce.mn
918.9 did not reload ohrrpgce.d03
923.8 Loadgame requested; resetgame
924.3 Loading save slot 0
924.3 loadgame: 0 is a valid normal slot, updating lastsaveslot
927.2 Loadgame requested; resetgame
927.7 Loading save slot 1
927.7 loadgame: 1 is a valid normal slot, updating lastsaveslot
1023.0 msg: M ohrrpgce.map
1023.0 msg: M ohrrpgce.t03
1023.0 msg: M ohrrpgce.p03
1023.0 msg: M ohrrpgce.e03
1023.0 msg: M ohrrpgce.z03
1023.0 msg: M ohrrpgce.l03
1023.0 msg: M ohrrpgce.n03
1023.0 msg: M ohrrpgce.dox
1023.0 msg: M ohrrpgce.d03
1023.0 msg: M ohrrpgce.mn
1023.0 did not reload ohrrpgce.d03
1027.3 msg: M ohrrpgce.n03
1028.6 msg: M ohrrpgce.map
1028.6 msg: M ohrrpgce.t03
1028.6 msg: M ohrrpgce.p03
1028.6 msg: M ohrrpgce.e03
1028.6 msg: M ohrrpgce.z03
1028.6 msg: M ohrrpgce.l03
1028.6 msg: M ohrrpgce.n03
1028.6 msg: M ohrrpgce.dox
1028.6 msg: M ohrrpgce.d03
1028.6 msg: M ohrrpgce.mn
1028.6 did not reload ohrrpgce.d03
1032.1 msg: M ohrrpgce.n03
1038.5 msg: M ohrrpgce.map
1038.5 msg: M ohrrpgce.t03
1038.5 msg: M ohrrpgce.p03
1038.5 msg: M ohrrpgce.e03
1038.5 msg: M ohrrpgce.z03
1038.5 msg: M ohrrpgce.l03
1038.5 msg: M ohrrpgce.n03
1038.5 msg: M ohrrpgce.dox
1038.5 msg: M ohrrpgce.d03
1038.5 msg: M ohrrpgce.mn
1038.5 did not reload ohrrpgce.d03
1044.1 msg: M ohrrpgce.map
1044.1 msg: M ohrrpgce.t03
1044.1 msg: M ohrrpgce.p03
1044.1 msg: M ohrrpgce.e03
1044.1 msg: M ohrrpgce.z03
1044.1 msg: M ohrrpgce.l03
1044.1 msg: M ohrrpgce.n03
1044.1 msg: M ohrrpgce.dox
1044.1 msg: M ohrrpgce.d03
1044.1 msg: M ohrrpgce.mn
1044.1 did not reload ohrrpgce.d03
1044.5 msg: M ohrrpgce.gen
1044.5 msg: M general.reld
1155.1 msg: M ohrrpgce.gen
1155.1 msg: M general.reld
1238.7 msg: M ohrrpgce.map
1238.7 msg: M ohrrpgce.t03
1238.7 msg: M ohrrpgce.p03
1238.7 msg: M ohrrpgce.e03
1238.7 msg: M ohrrpgce.z03
1238.7 msg: M ohrrpgce.l03
1238.7 msg: M ohrrpgce.n03
1238.7 msg: M ohrrpgce.dox
1238.7 msg: M ohrrpgce.d03
1238.7 msg: M ohrrpgce.mn
1238.7 did not reload ohrrpgce.d03
1240.7 msg: M ohrrpgce.map
1240.7 msg: M ohrrpgce.t03
1240.7 msg: M ohrrpgce.p03
1240.7 msg: M ohrrpgce.e03
1240.8 msg: M ohrrpgce.z03
1240.8 msg: M ohrrpgce.l03
1240.8 msg: M ohrrpgce.n03
1240.8 msg: M ohrrpgce.dox
1240.8 msg: M ohrrpgce.d03
1240.8 msg: M ohrrpgce.mn
1240.8 did not reload ohrrpgce.d03
1241.4 msg: M ohrrpgce.gen
1241.4 msg: M general.reld
1245.7 msg: M ohrrpgce.say
1245.7 did not reload ohrrpgce.say
1266.2 msg: M ohrrpgce.say
1266.2 did not reload ohrrpgce.say
1269.2 msg: M ohrrpgce.say
1269.2 did not reload ohrrpgce.say
1285.5 msg: M ohrrpgce.say
1285.5 did not reload ohrrpgce.say
1364.4 msg: M ohrrpgce.say
1364.4 did not reload ohrrpgce.say
1367.1 msg: M ohrrpgce.say
1367.1 did not reload ohrrpgce.say
1412.0 msg: M ohrrpgce.say
1412.0 did not reload ohrrpgce.say
1418.4 msg: M ohrrpgce.say
1418.4 did not reload ohrrpgce.say
1422.7 msg: M ohrrpgce.say
1422.7 did not reload ohrrpgce.say
1425.4 msg: M ohrrpgce.say
1425.4 did not reload ohrrpgce.say
1458.5 msg: M ohrrpgce.say
1458.5 did not reload ohrrpgce.say
1460.4 msg: M ohrrpgce.say
1460.4 did not reload ohrrpgce.say
1524.9 msg: M ohrrpgce.say
1524.9 did not reload ohrrpgce.say
1528.0 msg: M ohrrpgce.say
1528.0 did not reload ohrrpgce.say
1532.4 msg: M ohrrpgce.say
1532.4 did not reload ohrrpgce.say
1535.1 msg: M ohrrpgce.say
1535.1 did not reload ohrrpgce.say
1559.8 msg: M ohrrpgce.say
1559.8 did not reload ohrrpgce.say
1561.7 msg: M ohrrpgce.say
1561.7 did not reload ohrrpgce.say
1571.7 msg: M ohrrpgce.say
1571.7 did not reload ohrrpgce.say
1590.1 msg: M ohrrpgce.say
1590.1 did not reload ohrrpgce.say
1626.9 msg: M ohrrpgce.gen
1626.9 msg: M general.reld
1630.3 msg: M ohrrpgce.gen
1630.3 msg: M general.reld
1630.6 msg: M ohrrpgce.gen
1634.1 msg: M ohrrpgce.hsp
1634.1 msg: M plotscr.lst
1634.1 msg: M plotscr.lst
1634.1 msg: M lookup1.bin
1634.3 plotscr.hsd version: 3U
1637.5 Loadgame requested; resetgame
1638.0 Loading save slot 1
1638.0 loadgame: 1 is a valid normal slot, updating lastsaveslot
1707.6 msg: M ohrrpgce.hsp
1707.6 msg: M plotscr.lst
1707.6 msg: M plotscr.lst
1707.6 msg: M lookup1.bin
1707.8 plotscr.hsd version: 3U
1707.8 not reloading script eventsattic because it's in use: refcount=1
1707.8 unlock_resolution(426,240)
1708.5 set_resolution 426*240
1708.5 lock_resolution()
1718.2 msg: M ohrrpgce.gen
1718.2 msg: M general.reld
1725.0 msg: M ohrrpgce.n03
1729.9 msg: M ohrrpgce.map
1729.9 msg: M ohrrpgce.t03
1729.9 msg: M ohrrpgce.p03
1729.9 msg: M ohrrpgce.e03
1729.9 msg: M ohrrpgce.z03
1729.9 msg: M ohrrpgce.l03
1729.9 msg: M ohrrpgce.n03
1729.9 msg: M ohrrpgce.dox
1729.9 msg: M ohrrpgce.d03
1729.9 msg: M ohrrpgce.mn
1729.9 did not reload ohrrpgce.d03
1783.0 msg: M ohrrpgce.map
1783.0 msg: M ohrrpgce.t03
1783.0 msg: M ohrrpgce.p03
1783.0 msg: M ohrrpgce.e03
1783.0 msg: M ohrrpgce.z03
1783.0 msg: M ohrrpgce.l03
1783.0 msg: M ohrrpgce.n03
1783.0 msg: M ohrrpgce.dox
1783.0 msg: M ohrrpgce.d03
1783.0 did not reload ohrrpgce.d03
1783.0 msg: M ohrrpgce.mn
1783.4 msg: M ohrrpgce.gen
1783.4 msg: M general.reld
1786.2 msg: M ohrrpgce.hsp
1786.2 msg: M plotscr.lst
1786.2 msg: M plotscr.lst
1786.2 msg: M lookup1.bin
1786.3 plotscr.hsd version: 3U
1789.0 Loadgame requested; resetgame
1789.5 Loading save slot 1
1789.5 loadgame: 1 is a valid normal slot, updating lastsaveslot
1815.3 msg: M ohrrpgce.hsp
1815.3 msg: M plotscr.lst
1815.3 msg: M plotscr.lst
1815.3 msg: M lookup1.bin
1815.5 plotscr.hsd version: 3U
1815.6 not reloading script eventsattic because it's in use: refcount=1
1815.6 unlock_resolution(426,240)
1816.4 set_resolution 426*240
1816.4 lock_resolution()
1817.0 plotscr.hsd version: 3U
1818.5 Loadgame requested; resetgame
1819.0 Loading save slot 1
1819.0 loadgame: 1 is a valid normal slot, updating lastsaveslot
1878.2 msg: M ohrrpgce.hsp
1878.2 msg: M plotscr.lst
1878.2 msg: M plotscr.lst
1878.2 msg: M lookup1.bin
1878.4 plotscr.hsd version: 3U
1878.4 not reloading script eventsattic because it's in use: refcount=1
1878.5 unlock_resolution(426,240)
1880.4 set_resolution 426*240
1880.4 lock_resolution()
1880.8 plotscr.hsd version: 3U
1882.0 Loadgame requested; resetgame
1882.6 Loading save slot 0
1882.6 loadgame: 0 is a valid normal slot, updating lastsaveslot
1884.6 Loadgame requested; resetgame
1885.1 Loading save slot 1
1885.1 loadgame: 1 is a valid normal slot, updating lastsaveslot
1939.1 msg: M ohrrpgce.gen
1939.1 msg: M general.reld
1946.3 msg: M ohrrpgce.n03
1948.5 msg: M ohrrpgce.map
1948.5 msg: M ohrrpgce.t03
1948.5 msg: M ohrrpgce.p03
1948.5 msg: M ohrrpgce.e03
1948.5 msg: M ohrrpgce.z03
1948.5 msg: M ohrrpgce.l03
1948.5 msg: M ohrrpgce.n03
1948.5 msg: M ohrrpgce.dox
1948.5 msg: M ohrrpgce.d03
1948.5 msg: M ohrrpgce.mn
1948.5 did not reload ohrrpgce.d03
2053.8 msg: M ohrrpgce.map
2053.8 msg: M ohrrpgce.t03
2053.8 msg: M ohrrpgce.p03
2053.8 msg: M ohrrpgce.e03
2053.8 msg: M ohrrpgce.z03
2053.8 msg: M ohrrpgce.l03
2053.8 msg: M ohrrpgce.n03
2053.8 msg: M ohrrpgce.dox
2053.8 msg: M ohrrpgce.d03
2053.8 msg: M ohrrpgce.mn
2053.8 did not reload ohrrpgce.d03
2054.3 msg: M ohrrpgce.gen
2054.3 msg: M general.reld
2057.1 msg: M ohrrpgce.hsp
2057.1 msg: M plotscr.lst
2057.1 msg: M plotscr.lst
2057.1 msg: M lookup1.bin
2057.3 plotscr.hsd version: 3U
2059.2 Loadgame requested; resetgame
2059.7 Loading save slot 1
2059.7 loadgame: 1 is a valid normal slot, updating lastsaveslot
2108.2 Loadgame requested; resetgame
2108.7 Loading save slot 1
2108.7 loadgame: 1 is a valid normal slot, updating lastsaveslot
2216.9 msg: M ohrrpgce.hsp
2216.9 msg: M plotscr.lst
2216.9 msg: M plotscr.lst
2216.9 msg: M lookup1.bin
2217.1 plotscr.hsd version: 3U
2218.5 Loadgame requested; resetgame
2219.0 Loading save slot 1
2219.0 loadgame: 1 is a valid normal slot, updating lastsaveslot
2312.0 Loadgame requested; resetgame
2312.5 Loading save slot 1
2312.5 loadgame: 1 is a valid normal slot, updating lastsaveslot
2505.1 msg: M ohrrpgce.gen
2505.1 msg: M general.reld
2528.1 msg: M ohrrpgce.dt1
2539.5 msg: M ohrrpgce.dt1
2543.9 msg: M ohrrpgce.dt1
2544.1 msg: M ohrrpgce.gen
2544.1 msg: M general.reld
2553.4 msg: M heroform.reld
2553.4 did not reload heroform.reld
2559.0 msg: M ohrrpgce.efs
2561.7 msg: M ohrrpgce.efs
2563.9 msg: M ohrrpgce.efs
2575.3 msg: M ohrrpgce.efs
2580.0 msg: M ohrrpgce.for
2580.8 msg: M ohrrpgce.for
2581.0 msg: M ohrrpgce.for
2582.7 msg: M ohrrpgce.for
2584.3 msg: M ohrrpgce.for
2585.1 msg: M ohrrpgce.for
2587.8 msg: M ohrrpgce.for
2591.1 msg: M ohrrpgce.efs
2597.0 msg: M ohrrpgce.for
2600.6 msg: M ohrrpgce.for
2603.6 msg: M ohrrpgce.for
2606.8 msg: M ohrrpgce.for
2611.5 msg: M ohrrpgce.for
2616.0 msg: M ohrrpgce.for
2619.9 msg: M ohrrpgce.for
2623.7 msg: M ohrrpgce.for
2628.2 msg: M ohrrpgce.for
2632.9 msg: M ohrrpgce.for
2636.3 msg: M ohrrpgce.for
2640.5 msg: M ohrrpgce.for
2649.3 msg: M ohrrpgce.efs
2674.7 msg: M ohrrpgce.efs
2675.3 msg: M ohrrpgce.gen
2675.3 msg: M general.reld
2891.6 msg: M ohrrpgce.map
2891.6 msg: M ohrrpgce.t03
2891.6 msg: M ohrrpgce.p03
2891.6 msg: M ohrrpgce.e03
2891.6 msg: M ohrrpgce.z03
2891.6 msg: M ohrrpgce.l03
2891.6 msg: M ohrrpgce.n03
2891.6 msg: M ohrrpgce.dox
2891.6 msg: M ohrrpgce.d03
2891.6 msg: M ohrrpgce.mn
2891.6 RELOADMAP_FOEMAP foemap.dirty=0 foemap.changed=-1 foemap.mode=1
2891.6 did not reload ohrrpgce.d03
2911.3 msg: M ohrrpgce.map
2911.3 msg: M ohrrpgce.t03
2911.3 msg: M ohrrpgce.p03
2911.3 msg: M ohrrpgce.e03
2911.3 msg: M ohrrpgce.z03
2911.3 msg: M ohrrpgce.l03
2911.3 msg: M ohrrpgce.n03
2911.3 msg: M ohrrpgce.dox
2911.3 msg: M ohrrpgce.d03
2911.3 msg: M ohrrpgce.mn
2911.3 did not reload ohrrpgce.d03
2911.5 msg: M ohrrpgce.map
2911.5 msg: M ohrrpgce.t03
2911.5 msg: M ohrrpgce.p03
2911.5 msg: M ohrrpgce.e03
2911.5 msg: M ohrrpgce.z03
2911.5 msg: M ohrrpgce.l03
2911.5 msg: M ohrrpgce.n03
2911.5 msg: M ohrrpgce.dox
2911.5 msg: M ohrrpgce.d03
2911.5 msg: M ohrrpgce.mn
2911.5 did not reload ohrrpgce.d03
2940.4 msg: M ohrrpgce.map
2940.4 msg: M ohrrpgce.t03
2940.4 msg: M ohrrpgce.p03
2940.4 msg: M ohrrpgce.e03
2940.4 msg: M ohrrpgce.z03
2940.4 msg: M ohrrpgce.l03
2940.4 msg: M ohrrpgce.n03
2940.4 msg: M ohrrpgce.dox
2940.4 msg: M ohrrpgce.d03
2940.4 msg: M ohrrpgce.mn
2940.4 did not reload ohrrpgce.d03
2941.4 msg: M ohrrpgce.gen
2941.4 msg: M general.reld
2957.2 msg: M ohrrpgce.dt1
2960.7 msg: M ohrrpgce.dt1
2966.7 msg: M ohrrpgce.dt1
3329.5 msg: M ohrrpgce.dt1
3330.5 msg: M ohrrpgce.gen
3330.5 msg: M general.reld
3335.0 msg: M ohrrpgce.dt0
3335.0 msg: M heroes.reld
3335.2 msg: M ohrrpgce.dt0
3335.3 msg: M heroes.reld
3335.7 msg: M ohrrpgce.gen
3335.8 msg: M general.reld
3434.8 msg: M ohrrpgce.dt1
3443.9 msg: M ohrrpgce.dt1
3446.6 msg: M ohrrpgce.dt1
3447.1 msg: M ohrrpgce.dt1
3447.4 msg: M ohrrpgce.dt1
3447.6 msg: M ohrrpgce.dt1
3447.9 msg: M ohrrpgce.dt1
3448.1 msg: M ohrrpgce.dt1
3448.9 msg: M ohrrpgce.dt1
3449.1 msg: M ohrrpgce.dt1
3449.2 msg: M ohrrpgce.dt1
3449.4 msg: M ohrrpgce.dt1
3449.6 msg: M ohrrpgce.dt1
3449.8 msg: M ohrrpgce.dt1
3455.0 msg: M ohrrpgce.dt1
3459.7 msg: M ohrrpgce.dt1
3468.8 msg: M ohrrpgce.dt1
3469.1 msg: M ohrrpgce.gen
3469.1 msg: M general.reld
3469.5 msg: M ohrrpgce.gen
3470.4 msg: M ohrrpgce.gen
3471.2 msg: M ohrrpgce.gen
3471.2 msg: M general.reld
3518.3 msg: M ohrrpgce.dt1
3541.5 msg: M ohrrpgce.dt1
3544.4 msg: M ohrrpgce.dt1
3571.0 ! Scripterr(4): battle -> battleaction -> playerlogic -> battleattack -> battlewin: getitem: invalid item ID 58
3586.1 Loadgame requested; resetgame
3586.6 Loading save slot 0
3586.6 loadgame: 0 is a valid normal slot, updating lastsaveslot
3600.3 msg: M ohrrpgce.dt1
3600.7 msg: M ohrrpgce.gen
3600.7 msg: M general.reld
3642.7 msg: M ohrrpgce.gen
3642.7 msg: M general.reld
3648.1 msg: M ohrrpgce.hsp
3648.1 msg: M plotscr.lst
3648.1 msg: M plotscr.lst
3648.1 msg: M lookup1.bin
3648.3 plotscr.hsd version: 3U
3648.3 Loadgame requested; resetgame
3648.8 Loading save slot 0
3648.8 loadgame: 0 is a valid normal slot, updating lastsaveslot
3714.5 msg: M ohrrpgce.gen
3714.5 msg: M general.reld
3728.5 msg: M ohrrpgce.hsp
3728.5 msg: M plotscr.lst
3728.5 msg: M plotscr.lst
3728.5 msg: M lookup1.bin
3728.7 plotscr.hsd version: 3U
3732.2 msg: M ohrrpgce.gen
3732.2 msg: M general.reld
3746.4 msg: M ohrrpgce.dt1
3761.6 msg: M ohrrpgce.dt1
3762.5 msg: M ohrrpgce.gen
3762.5 msg: M general.reld
3823.8 msg: M ohrrpgce.gen
3823.8 msg: M general.reld
3877.1 msg: M ohrrpgce.dt6
3877.1 msg: M attack.bin
3877.1 did not reload ohrrpgce.dt6
3877.1 did not reload attack.bin
3877.5 msg: M ohrrpgce.gen
3877.5 msg: M general.reld
3888.1 msg: M ohrrpgce.hsp
3888.1 msg: M plotscr.lst
3888.1 msg: M plotscr.lst
3888.1 msg: M lookup1.bin
3888.3 plotscr.hsd version: 3U
3892.0 Loadgame requested; resetgame
3892.5 Loading save slot 0
3892.5 loadgame: 0 is a valid normal slot, updating lastsaveslot
4109.3 msg: M ohrrpgce.hsp
4109.3 msg: M plotscr.lst
4109.3 msg: M plotscr.lst
4109.3 msg: M lookup1.bin
4109.5 plotscr.hsd version: 3U
4109.5 not reloading script enemyattack because it's in use: refcount=1
4109.5 unlock_resolution(426,240)
4111.1 set_resolution 426*240
4111.1 lock_resolution()
4111.5 plotscr.hsd version: 3U
4128.5 msg: M ohrrpgce.hsp
4128.5 msg: M plotscr.lst
4128.5 msg: M plotscr.lst
4128.5 msg: M lookup1.bin
4128.7 plotscr.hsd version: 3U
4128.7 not reloading script init because it's in use: refcount=1
4128.7 unlock_resolution(426,240)
4130.3 set_resolution 426*240
4130.3 lock_resolution()
4130.7 plotscr.hsd version: 3U
4133.2 Loadgame requested; resetgame
4133.7 Loading save slot 0
4133.7 loadgame: 0 is a valid normal slot, updating lastsaveslot
4138.9 Loadgame requested; resetgame
4139.5 Loading save slot 0
4139.5 loadgame: 0 is a valid normal slot, updating lastsaveslot
4188.6 Loadgame requested; resetgame
4189.1 Loading save slot 0
4189.1 loadgame: 0 is a valid normal slot, updating lastsaveslot
4194.6 Loadgame requested; resetgame
4195.1 Loading save slot 0
4195.1 loadgame: 0 is a valid normal slot, updating lastsaveslot
4252.8 msg: M ohrrpgce.hsp
4252.8 msg: M plotscr.lst
4252.8 msg: M plotscr.lst
4252.8 msg: M lookup1.bin
4253.0 plotscr.hsd version: 3U
4253.0 not reloading script defloadgame because it's in use: refcount=1
4253.0 unlock_resolution(426,240)
4255.0 set_resolution 426*240
4255.0 lock_resolution()
4255.4 plotscr.hsd version: 3U
4256.6 Loadgame requested; resetgame
4257.2 Loading save slot 0
4257.2 loadgame: 0 is a valid normal slot, updating lastsaveslot
4260.9 Loadgame requested; resetgame
4261.4 Loading save slot 0
4261.4 loadgame: 0 is a valid normal slot, updating lastsaveslot
4296.3 savegame: 1 is a valid normal slot, updating lastsaveslot
4296.3 Saving in slot 1
4475.9 msg: M ohrrpgce.hsp
4475.9 msg: M plotscr.lst
4475.9 msg: M plotscr.lst
4475.9 msg: M lookup1.bin
4476.1 plotscr.hsd version: 3U
4476.1 not reloading script battledefend because it's in use: refcount=1
4476.1 unlock_resolution(426,240)
4476.8 set_resolution 426*240
4476.8 lock_resolution()
4477.9 plotscr.hsd version: 3U
4479.6 Loadgame requested; resetgame
4480.1 Loading save slot 0
4480.1 loadgame: 0 is a valid normal slot, updating lastsaveslot
4485.3 Loadgame requested; resetgame
4485.8 Loading save slot 1
4485.8 loadgame: 1 is a valid normal slot, updating lastsaveslot
4594.9 msg: M ohrrpgce.hsp
4594.9 msg: M plotscr.lst
4594.9 msg: M plotscr.lst
4594.9 msg: M lookup1.bin
4595.1 plotscr.hsd version: 3U
4596.6 Loadgame requested; resetgame
4597.1 Loading save slot 1
4597.1 loadgame: 1 is a valid normal slot, updating lastsaveslot
4621.1 savegame: 1 is a valid normal slot, updating lastsaveslot
4621.1 Saving in slot 1
4635.5 Loadgame requested; resetgame
4636.0 Loading save slot 1
4636.0 loadgame: 1 is a valid normal slot, updating lastsaveslot
4705.0 savegame: 1 is a valid normal slot, updating lastsaveslot
4705.1 Saving in slot 1
4713.1 Loadgame requested; resetgame
4713.6 Loading save slot 1
4713.6 loadgame: 1 is a valid normal slot, updating lastsaveslot
4741.2 msg: M ohrrpgce.hsp
4741.2 msg: M plotscr.lst
4741.2 msg: M plotscr.lst
4741.2 msg: M lookup1.bin
4741.4 plotscr.hsd version: 3U
4741.4 not reloading script defloadgame because it's in use: refcount=1
4741.4 unlock_resolution(426,240)
4742.3 set_resolution 426*240
4742.3 lock_resolution()
4742.8 plotscr.hsd version: 3U
4744.5 Loadgame requested; resetgame
4745.0 Loading save slot 1
4745.0 loadgame: 1 is a valid normal slot, updating lastsaveslot
4757.4 savegame: 1 is a valid normal slot, updating lastsaveslot
4757.4 Saving in slot 1
4764.4 Loadgame requested; resetgame
4764.9 Loading save slot 1
4764.9 loadgame: 1 is a valid normal slot, updating lastsaveslot
4772.5 Loadgame requested; resetgame
4773.0 Loading save slot 1
4773.0 loadgame: 1 is a valid normal slot, updating lastsaveslot
4785.9 savegame: 1 is a valid normal slot, updating lastsaveslot
4785.9 Saving in slot 1