This repository was archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathfrmNPCs.frm
4232 lines (4213 loc) · 149 KB
/
frmNPCs.frm
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
VERSION 5.00
Begin VB.Form frmNPCs
BorderStyle = 1 'Fixed Single
Caption = "Non-Player Characters"
ClientHeight = 4050
ClientLeft = 1.00050e5
ClientTop = 330
ClientWidth = 16155
Icon = "frmNPCs.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 4050
ScaleWidth = 16155
Visible = 0 'False
Begin VB.Frame Frame
Caption = "Lakitu"
Height = 550
Index = 28
Left = 120
TabIndex = 358
Top = 3420
Width = 1095
Begin VB.CommandButton Lakitu
Caption = "No"
Height = 255
Left = 120
TabIndex = 359
Top = 220
Width = 855
End
End
Begin VB.Frame Frame
Caption = "Bubble"
Height = 550
Index = 1
Left = 120
TabIndex = 356
Top = 2830
Width = 1095
Begin VB.CommandButton Bubble
Caption = "No"
Height = 255
Left = 120
TabIndex = 357
Top = 220
Width = 855
End
End
Begin VB.Frame Frame19
Caption = "Events"
Height = 615
Left = 14400
TabIndex = 287
Top = 0
Width = 1095
Begin VB.CommandButton cmdEvents
Caption = "Show"
Height = 255
Left = 120
TabIndex = 288
Top = 240
Width = 855
End
End
Begin VB.Frame Frame18
Caption = "Generator"
Height = 615
Left = 13200
TabIndex = 285
Top = 0
Width = 1095
Begin VB.CommandButton cmdGenerator
Caption = "Show"
Height = 255
Left = 120
TabIndex = 286
Top = 240
Width = 855
End
End
Begin VB.Frame Game
Caption = "Misc."
Height = 2775
Index = 4
Left = -360
TabIndex = 132
Top = 9960
Visible = 0 'False
Width = 8055
Begin VB.Frame Frame4
Caption = "Switch"
Height = 855
Left = 3480
TabIndex = 309
Top = 1800
Width = 2535
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 65
Left = 1920
Picture = "frmNPCs.frx":628A
Style = 1 'Graphical
TabIndex = 313
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 63
Left = 1320
Picture = "frmNPCs.frx":66CA
Style = 1 'Graphical
TabIndex = 312
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 61
Left = 720
Picture = "frmNPCs.frx":6B0A
Style = 1 'Graphical
TabIndex = 311
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 555
Index = 59
Left = 120
Picture = "frmNPCs.frx":6F4A
Style = 1 'Graphical
TabIndex = 310
Top = 240
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Boss"
Height = 1575
Index = 27
Left = 7080
TabIndex = 260
Top = 240
Width = 855
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 209
Left = 120
Picture = "frmNPCs.frx":738A
Style = 1 'Graphical
TabIndex = 262
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 208
Left = 120
Picture = "frmNPCs.frx":7857
Style = 1 'Graphical
TabIndex = 261
Top = 240
Width = 540
End
End
Begin VB.Frame Frame7
Caption = "Items"
Height = 1575
Left = 3480
TabIndex = 193
Top = 240
Width = 2535
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 255
Left = 1920
Picture = "frmNPCs.frx":7C97
Style = 1 'Graphical
TabIndex = 326
Top = 840
Value = -1 'True
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 254
Left = 1920
Picture = "frmNPCs.frx":80C7
Style = 1 'Graphical
TabIndex = 325
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 253
Left = 1320
Picture = "frmNPCs.frx":84EB
Style = 1 'Graphical
TabIndex = 324
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 252
Left = 1320
Picture = "frmNPCs.frx":88A3
Style = 1 'Graphical
TabIndex = 323
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 251
Left = 720
Picture = "frmNPCs.frx":8C5B
Style = 1 'Graphical
TabIndex = 322
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 250
Left = 720
Picture = "frmNPCs.frx":9013
Style = 1 'Graphical
TabIndex = 321
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 158
Left = 120
Picture = "frmNPCs.frx":9432
Style = 1 'Graphical
TabIndex = 201
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 152
Left = 120
Picture = "frmNPCs.frx":981C
Style = 1 'Graphical
TabIndex = 194
Top = 240
Width = 540
End
End
Begin VB.Frame Frame6
Caption = "Enemies"
Height = 2055
Left = 120
TabIndex = 160
Top = 240
Width = 3255
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 257
Left = 1320
Picture = "frmNPCs.frx":9C30
Style = 1 'Graphical
TabIndex = 328
Top = 1440
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 256
Left = 720
Picture = "frmNPCs.frx":A105
Style = 1 'Graphical
TabIndex = 327
Top = 1440
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 243
Left = 720
Picture = "frmNPCs.frx":A5D7
Style = 1 'Graphical
TabIndex = 308
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 242
Left = 120
Picture = "frmNPCs.frx":AAD0
Style = 1 'Graphical
TabIndex = 307
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 211
Left = 2520
Picture = "frmNPCs.frx":AF0C
Style = 1 'Graphical
TabIndex = 264
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 205
Left = 2520
Picture = "frmNPCs.frx":B35A
Style = 1 'Graphical
TabIndex = 257
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 204
Left = 1920
Picture = "frmNPCs.frx":B7CD
Style = 1 'Graphical
TabIndex = 256
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 203
Left = 1320
Picture = "frmNPCs.frx":BC30
Style = 1 'Graphical
TabIndex = 255
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 168
Left = 120
Picture = "frmNPCs.frx":C16F
Style = 1 'Graphical
TabIndex = 210
Top = 1440
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 128
Left = 1320
Picture = "frmNPCs.frx":C547
Style = 1 'Graphical
TabIndex = 164
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 127
Left = 120
Picture = "frmNPCs.frx":C956
Style = 1 'Graphical
TabIndex = 163
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 126
Left = 720
Picture = "frmNPCs.frx":CD65
Style = 1 'Graphical
TabIndex = 162
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 125
Left = 1920
Picture = "frmNPCs.frx":D174
Style = 1 'Graphical
TabIndex = 161
Top = 240
Width = 540
End
End
Begin VB.Frame Frame
Caption = "People"
Height = 1575
Index = 26
Left = 6120
TabIndex = 133
Top = 240
Width = 855
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 107
Left = 120
Picture = "frmNPCs.frx":D57B
Style = 1 'Graphical
TabIndex = 141
Top = 840
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 102
Left = 120
Picture = "frmNPCs.frx":D9A6
Style = 1 'Graphical
TabIndex = 134
Top = 240
Width = 540
End
End
End
Begin VB.Frame Frame1
Caption = "Advanced"
Height = 615
Left = 12000
TabIndex = 128
Top = 0
Width = 1095
Begin VB.CommandButton cmdAdvanced
Caption = "Show"
Height = 255
Left = 120
TabIndex = 129
Top = 240
Width = 855
End
End
Begin VB.Frame Lak
Caption = "The Lakitus are throwing Lakitus!"
Height = 1575
Left = 1320
TabIndex = 92
Top = 7560
Visible = 0 'False
Width = 9255
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 292
Left = 1320
Picture = "frmNPCs.frx":DDB3
Style = 1 'Graphical
TabIndex = 371
Top = 960
Value = -1 'True
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 291
Left = 1320
Picture = "frmNPCs.frx":E1AA
Style = 1 'Graphical
TabIndex = 370
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 290
Left = 8520
Picture = "frmNPCs.frx":E58A
Style = 1 'Graphical
TabIndex = 369
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 284
Left = 7320
Picture = "frmNPCs.frx":E98C
Style = 1 'Graphical
TabIndex = 361
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 283
Left = 3120
Picture = "frmNPCs.frx":ED8D
Style = 1 'Graphical
TabIndex = 360
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 282
Left = 4320
Picture = "frmNPCs.frx":F181
Style = 1 'Graphical
TabIndex = 355
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 281
Left = 7920
Picture = "frmNPCs.frx":F566
Style = 1 'Graphical
TabIndex = 354
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 276
Left = 4920
Picture = "frmNPCs.frx":F96B
Style = 1 'Graphical
TabIndex = 347
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 269
Left = 5520
Picture = "frmNPCs.frx":FD0E
Style = 1 'Graphical
TabIndex = 339
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 268
Left = 7920
Picture = "frmNPCs.frx":100E5
Style = 1 'Graphical
TabIndex = 338
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 265
Left = 120
Picture = "frmNPCs.frx":10544
Style = 1 'Graphical
TabIndex = 337
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 266
Left = 720
Picture = "frmNPCs.frx":108FC
Style = 1 'Graphical
TabIndex = 336
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 263
Left = 2520
Picture = "frmNPCs.frx":10C81
Style = 1 'Graphical
TabIndex = 334
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 246
Left = 4920
Picture = "frmNPCs.frx":1128A
Style = 1 'Graphical
TabIndex = 316
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 237
Left = 1920
Picture = "frmNPCs.frx":11640
Style = 1 'Graphical
TabIndex = 302
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 210
Left = 5520
Picture = "frmNPCs.frx":11A85
Style = 1 'Graphical
TabIndex = 263
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 202
Left = 6120
Picture = "frmNPCs.frx":11ECF
Style = 1 'Graphical
TabIndex = 254
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 171
Left = 720
Picture = "frmNPCs.frx":122DE
Style = 1 'Graphical
TabIndex = 227
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 159
Left = 3720
Picture = "frmNPCs.frx":126C4
Style = 1 'Graphical
TabIndex = 212
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 108
Left = 1920
Picture = "frmNPCs.frx":12B22
Style = 1 'Graphical
TabIndex = 192
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 133
Left = 6720
Picture = "frmNPCs.frx":12F25
Style = 1 'Graphical
TabIndex = 169
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 55
Left = 7320
Picture = "frmNPCs.frx":132B1
Style = 1 'Graphical
TabIndex = 155
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 30
Left = 6120
Picture = "frmNPCs.frx":136C3
Style = 1 'Graphical
TabIndex = 99
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 40
Left = 6720
Picture = "frmNPCs.frx":13AAF
Style = 1 'Graphical
TabIndex = 98
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 50
Left = 2520
Picture = "frmNPCs.frx":13E8E
Style = 1 'Graphical
TabIndex = 97
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 85
Left = 4320
Picture = "frmNPCs.frx":142D0
Style = 1 'Graphical
TabIndex = 96
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 87
Left = 3720
Picture = "frmNPCs.frx":146C1
Style = 1 'Graphical
TabIndex = 95
Top = 360
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 91
Left = 3120
Picture = "frmNPCs.frx":14AC4
Style = 1 'Graphical
TabIndex = 94
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 13
Left = 120
Picture = "frmNPCs.frx":14EA0
Style = 1 'Graphical
TabIndex = 93
Top = 360
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Egg"
Height = 550
Index = 4
Left = 120
TabIndex = 89
Top = 2280
Width = 1095
Begin VB.CommandButton Egg
Caption = "No"
Height = 255
Left = 120
TabIndex = 90
Top = 220
Width = 855
End
End
Begin VB.Frame Frame
Caption = "Don't Move"
Height = 550
Index = 6
Left = 120
TabIndex = 87
Top = 600
Width = 1095
Begin VB.CommandButton DontMove
Caption = "No"
Height = 255
Left = 120
TabIndex = 88
Top = 220
Width = 855
End
End
Begin VB.Frame Frame
Caption = "Friendly"
Height = 550
Index = 5
Left = 120
TabIndex = 85
Top = 1150
Width = 1095
Begin VB.CommandButton Friendly
Caption = "No"
Height = 255
Left = 120
TabIndex = 86
Top = 220
Width = 855
End
End
Begin VB.Frame Frame
Caption = "Message"
Height = 615
Index = 7
Left = 7680
TabIndex = 83
Top = 0
Width = 4215
Begin VB.CheckBox chkMessage
Caption = "Test"
Height = 255
Left = 3600
Style = 1 'Graphical
TabIndex = 364
Top = 240
Width = 495
End
Begin VB.TextBox NPCText
Height = 285
Left = 120
TabIndex = 84
Top = 240
Width = 3375
End
End
Begin VB.Frame Frame
Caption = "Buried"
Height = 550
Index = 3
Left = 120
TabIndex = 79
Top = 1700
Width = 1095
Begin VB.CommandButton Buried
Caption = "No"
Height = 255
Left = 120
TabIndex = 80
Top = 220
Width = 855
End
End
Begin VB.PictureBox FocusNinja
Height = 375
Left = 0
ScaleHeight = 315
ScaleWidth = 315
TabIndex = 0
Top = 12480
Width = 375
End
Begin VB.Frame Game
Caption = "Super Mario Bros."
Height = 3015
Index = 3
Left = 8760
TabIndex = 31
Top = 10920
Visible = 0 'False
Width = 7455
Begin VB.Frame Frame22
Caption = "Sushi"
Height = 2295
Left = 6120
TabIndex = 297
Top = 240
Width = 855
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 555
Index = 28
Left = 120
Picture = "frmNPCs.frx":15256
Style = 1 'Graphical
TabIndex = 300
Top = 1560
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 233
Left = 120
Picture = "frmNPCs.frx":15E98
Style = 1 'Graphical
TabIndex = 299
Top = 960
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 235
Left = 120
Picture = "frmNPCs.frx":162E2
Style = 1 'Graphical
TabIndex = 298
Top = 240
Width = 540
End
End
Begin VB.Frame Frame16
Caption = "Vines"
Height = 1695
Left = 4440
TabIndex = 270
Top = 1200
Width = 855
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 223
Left = 120
Picture = "frmNPCs.frx":166F0
Style = 1 'Graphical
TabIndex = 280
Top = 240
Width = 540
End
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 222
Left = 120
Picture = "frmNPCs.frx":16AC6
Style = 1 'Graphical
TabIndex = 279
Top = 960
Value = -1 'True
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Boss"
Height = 975
Index = 0
Left = 4440
TabIndex = 251
Top = 240
Width = 855
Begin VB.OptionButton NPC
BackColor = &H00000000&
Height = 540
Index = 200
Left = 120
Picture = "frmNPCs.frx":16EDF
Style = 1 'Graphical
TabIndex = 252
Top = 240
Width = 540