-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3compact.inc
1704 lines (1551 loc) · 14.4 KB
/
3compact.inc
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
start32data
chip_list_sc3 dw 173
dw 111
dw 227
dw 202+disk_1
dw 203+disk_1
dw 204+disk_1
dw 205+disk_1
dw 206+disk_1
dw 207+disk_1
dw 208+disk_1
dw 212+disk_1
dw 216+disk_1+$8000
dw 215+disk_1
dw 209+$8000+disk_1
dw 210+$8000+disk_1
dw 217+disk_1
dw 214+disk_1
dw 225+disk_1
dw 218+disk_1+$8000
dw 169+disk_1+$8000
dw 0
s3_logic dw id_steve_spy
dw id_foster
dw id_low_lift
dw 4350
dw 4351
dw id_convey
dw id_furnace
dw id_low_barrel
dw id_joey_fly
dw id_joey
dw id_lights1
dw id_furnace_door
dw id_eye_ball
dw id_shades
dw id_eye_bolt
dw id_smoulder
dw 105
dw $ffff
dw id_menu_logic
s3_mouse dw id_furnace_door
dw id_steve_spy
dw id_joey
dw id_slot
dw id_smoulder
dw id_eye_ball
dw id_furnace
dw id_s3_floor
dw $ffff
dw id_text_mouse
s3_floor dw 0
dw st_mouse
dw 0
dw 3
dw NULL
dd r3_floor_table
dw 176
dw 240
dw 0
dw 0
dw 0
dw 0
dw advisor_188
dw 0
dw 0
dw 256
dw 79
dw floor_action
r3_floor_table dw id_s3_floor
dw return_ok
dw id_furnace_door
dw get_to_furnace_door
dw id_slot
dw get_to_slot
dw id_smoulder
dw get_to_body
dw id_eye_ball
dw get_to_eye
dw id_furnace
dw get_to_furnace
dw id_joey_park
dw get_to_jp2
dw -1
rs_low_lift dw c_xcood
dw 250
dw c_ycood
dw 268
dw c_frame
dw s202
dw c_base_sub+2
dw 0
dw c_logic
dw l_script
dw c_status
dw st_sort+st_logic+st_recreate+st_no_vmask
dw -1
rs_low_lift2 dw c_xcood
dw 292
dw c_ycood
dw 210
dw c_frame
dw s203
dw c_base_sub+2
dw 0
dw c_logic
dw l_script
dw c_status
dw st_sort+st_logic+st_recreate+st_no_vmask
dw -1
rs_low_lift3 dw c_xcood
dw 275
dw c_ycood
dw 286
dw c_frame
dw s204
dw c_base_sub+2
dw 0
dw c_logic
dw l_script
dw c_status
dw st_sort+st_logic+st_recreate+st_no_vmask
dw -1
rs_low_barrel dw c_xcood
dw 10
dw c_ycood
dw 10
dw c_frame
dw s202
dw c_status
dw st_logic+st_recreate+st_no_vmask
dw c_logic
dw l_script
dw c_base_sub+2
dw 0
dw -1
end32data
start32save_data
steve_watch dw l_script
dw st_logic
dw 0
dw 3
dw NULL
dd NULL
dw 244
dw 196
dw NULL
dw 0
dw 0
dw 0
dw 0
dw 0
dw 0
dw 1
dw 1
dw 0
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw steve_spy_logic
dw 0
low_barrel dw l_script
dw st_logic+st_recreate+st_no_vmask
dw 0
dw 3
dw NULL
dd NULL
dw 10
dw 10
dw s202
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw low_barrel_logic
dw 0
convey dw l_script
dw 0
dw 0
dw 3
dw NULL
dd NULL
dw 0
dw 0
dw 0
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw convey_logic
dw 0
joey_fly dw l_script
dw 0
dw 0
dw 3
dw NULL
dd NULL
dw 0
dw 0
dw s209
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw fly_logic
dw 0
furnace dw l_script
dw st_sort+st_logic+st_mouse+st_recreate
dw 0
dw 3
dw NULL
dd NULL
dw 226
dw 240
dw s211
dw 4221
dw std_on
dw std_off
dw advisor_188
dw NULL
dw NULL
dw 10
dw 40
dw furnace_action
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw furnace_logic
dw 0
lights1 dw l_script
dw st_background+st_logic
dw 0
dw 3
dw 0
dd 0
dw 10
dw 10
dw s212
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw lights1_logic
dw 0
eye_ball dw l_script
dw st_foreground+st_recreate+st_logic+st_no_vmask+st_mouse
dw 0
dw 3
dw NULL
dd NULL
dw 201
dw 165
dw s213
dw 4218
dw std_on
dw std_off
dw advisor_188
dw NULL
dw NULL
dw 25
dw 70
dw eye_action
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw eye_ball_logic
dw NULL
dd NULL
dd NULL
dd NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw 0
furnace_door dw l_script
dw st_background+st_recreate+st_logic+st_mouse
dw 0
dw 3
dw NULL
dd NULL
dw $18e
dw $de
dw s215
dw 181
dw furnace_exit_on
dw std_off
dw advisor_188
dw NULL
dw NULL
dw 16
dw 60
dw furnace_d_action
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw furnace_door_logic
dw 0
slot dw 0
dw st_mouse
dw 0
dw 3
dw NULL
dd NULL
dw 385
dw 233
dw 0
dw 4219
dw std_on
dw std_off
dw advisor_188
dw NULL
dw NULL
dw 5
dw 15
dw slot_action
sh dd 0 dup (0)
shades dw l_script
dw st_grid_plot+st_logic
dw 0
dw 3
dw id_s3_floor
dd 0
dw 424
dw 280
dw s217
dw 0
dw 0
dw 0
dw 0
dw 0
dw 0
dw 0
dw 0
dw mega_action
dw 0
dw 0
dw 0
dw 0
dw 0
dd 0
dw 0
dw 0
dw shades_logic
dw 0
dd 0
dd 0
dd 0
dw 0
dw std_mega_stop
dw std_mini_bump
dw 0
dw 0
dw 0
dw 0
dw 0
dw 96
dw sp_col_shades
dw 0
dw 0
dw 0
dd 0
dw 0
dw 0
dw 0
dd shades_auto
dw 0
dw 0
dw 0
dw 8
dw 8
dd shades_up
dd shades_down
dd shades_left
dd shades_right
dd shades_st_up
dd shades_st_down
dd shades_st_left
dd shades_st_right
dd shades_st_talk
dd 0
dd shades_u_to_d
dd shades_u_to_l
dd shades_u_to_r
dd 0
dd shades_d_to_u
dd 0
dd shades_d_to_l
dd shades_d_to_r
dd 0
dd shades_l_to_u
dd shades_l_to_d
dd 0
dd shades_l_to_r
dd 0
dd shades_r_to_u
dd shades_r_to_d
dd shades_r_to_l
dd 0
dd 0
dd 0
dd 0
dd 0
dd 0
dd 0
shades_auto db 64 dup (0)
end32save_data
start32data
shades_left dw 4
dw 16+s217
dw -4
dw 0
dw 4
dw 17+s217
dw -4
dw 0
dw 4
dw 18+s217
dw -4
dw 0
dw 4
dw 19+s217
dw -4
dw 0
dw 4
dw 20+s217
dw -4
dw 0
dw 4
dw 21+s217
dw -4
dw 0
dw 4
dw 22+s217
dw -4
dw 0
dw 4
dw 23+s217
dw -4
dw 0
dw 0
shades_right dw 4
dw 24+s217
dw 4
dw 0
dw 4
dw 25+s217
dw 4
dw 0
dw 4
dw 26+s217
dw 4
dw 0
dw 4
dw 27+s217
dw 4
dw 0
dw 4
dw 28+s217
dw 4
dw 0
dw 4
dw 29+s217
dw 4
dw 0
dw 4
dw 30+s217
dw 4
dw 0
dw 4
dw 31+s217
dw 4
dw 0
dw 0
shades_up dw 2
dw 0+s217
dw 0
dw -2
dw 2
dw 1+s217
dw 0
dw -2
dw 2
dw 2+s217
dw 0
dw -2
dw 2
dw 3+s217
dw 0
dw -2
dw 2
dw 4+s217
dw 0
dw -2
dw 2
dw 5+s217
dw 0
dw -2
dw 2
dw 6+s217
dw 0
dw -2
dw 2
dw 7+s217
dw 0
dw -2
dw 0
shades_down dw 2
dw 8+s217
dw 0
dw 2
dw 2
dw 9+s217
dw 0
dw 2
dw 2
dw 10+s217
dw 0
dw 2
dw 2
dw 11+s217
dw 0
dw 2
dw 2
dw 12+s217
dw 0
dw 2
dw 2
dw 13+s217
dw 0
dw 2
dw 2
dw 14+s217
dw 0
dw 2
dw 2
dw 15+s217
dw 0
dw 2
dw 0
shades_st_up dw s217
dw 1
dw 1
dw 36
dw 0
shades_st_down dw s217
dw 1
dw 1
dw 32
dw 0
shades_st_left dw s217
dw 1
dw 1
dw 34
dw 0
shades_st_right dw s217
dw 1
dw 1
dw 38
dw 0
shades_st_talk dw s43
dw 1
dw 1
dw 0
dw 0
shades_r_to_u dw 45-8+s217
dw 0
shades_r_to_d dw 47-8+s217
dw 0
shades_r_to_l dw 45-8+s217
dw 44-8+s217
dw 43-8+s217
dw 0
shades_u_to_d dw 43-8+s217
dw 42-8+s217
dw 41-8+s217
dw 0
shades_u_to_l dw 43-8+s217
dw 0
shades_u_to_r dw 45-8+s217
dw 0
shades_d_to_u dw 47-8+s217
dw 46-8+s217
dw 45-8+s217
dw 0
shades_d_to_l dw 41-8+s217
dw 0
shades_d_to_r dw 47-8+s217
dw 0
shades_l_to_u dw 43-8+s217
dw 0
shades_l_to_d dw 41-8+s217
dw 0
shades_l_to_r dw 41-8+s217
dw 40-8+s217
dw 47-8+s217
dw 0
end32data
start32save_data
eye_bolt dw l_script
dw st_recreate+st_logic+st_no_vmask
dw 0
dw 3
dw NULL
dd NULL
dw null
dw null
dw 0
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw eye_bolt_logic
dw 0
smoulder dw l_script
dw st_recreate+st_logic
dw 0
dw 3
dw 0
dd 0
dw 373+24
dw 289
dw 0
dw 4220
dw std_on
dw std_off
dw advisor_188
dw -24
dw -4
dw 60
dw 10
dw smoulder_action
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw smoulder_logic
dw 0
dd NULL
dd NULL
dd NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dw NULL
dd NULL
dw NULL
dw NULL
dw NULL
dd NULL
dw NULL
dw 7
end32save_data
start32data
smoulder_seq dw s225
dw 373
dw 269
dw 0
dw 373
dw 269
dw 1
dw 373
dw 269
dw 1
dw 373
dw 269
dw 2
dw 373
dw 269
dw 2
dw 373
dw 269
dw 3
dw 373
dw 269
dw 3
dw 373
dw 269
dw 4
dw 373
dw 269
dw 4
dw 373
dw 269
dw 0
dw 0
joey_list_s3 dw 296
dw 360
dw 248
dw 321
dw 1
dw 0
rs_start_joey_fly dw c_status
dw st_sort+st_logic+st_recreate
dw -1
rs_joey_to_furnace dw c_xcood
dw 344
dw c_ycood
dw 264
dw c_status
dw st_sort+st_recreate+st_logic+st_grid_plot+st_collision+st_mouse
dw c_place
dw id_s3_floor
dw c_screen
dw 3
dw c_mode
dw 0
dw c_base_sub
dw joey_logic
dw c_base_sub+2
dw 0
dw c_dir
dw right
dw c_frame
dw s173+12
dw -1
end32data
start32save_data
low_lift dw l_script
dw st_sort+st_logic+st_recreate+st_no_vmask
dw 0
dw 3
dw NULL
dd NULL
dw 250
dw 268
dw s202
dw 19+t7
dw std_on
dw std_off
dw advisor_188
dw 0
dw 57
dw 48
dw 21
dw top_lift_action
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw low_lift_logic
dw 0
low_lift_2 dw l_script
dw st_sort+st_logic+st_recreate+st_no_vmask
dw 0
dw 3
dw NULL
dd NULL
dw 292
dw 210
dw s203
dw 19+t7
dw std_on
dw std_off
dw advisor_188
dw 0
dw 57
dw 48
dw 21
dw top_lift_action
dw 0
dw 0
dw 0
dw 0
dw NULL
dd 0
dw 0
dw c_base_mode
dw low_lift2_logic
dw 0