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 pathfrmAdvanced.frm
142 lines (139 loc) · 4.38 KB
/
frmAdvanced.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
VERSION 5.00
Begin VB.Form frmAdvanced
BorderStyle = 1 'Fixed Single
Caption = "NPC Event Triggers"
ClientHeight = 3930
ClientLeft = -15
ClientTop = 375
ClientWidth = 4350
Icon = "frmAdvanced.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3930
ScaleWidth = 4350
Begin VB.Frame Frame4
Caption = "Attach to Layer"
Height = 735
Left = 120
TabIndex = 10
Top = 3120
Width = 4095
Begin VB.ComboBox AttLayer
Height = 315
Left = 240
TabIndex = 11
Top = 240
Width = 3615
End
End
Begin VB.Frame Frame1
Caption = "Event Triggers"
Height = 3135
Left = 120
TabIndex = 1
Top = 0
Width = 4095
Begin VB.Frame Frame3
Caption = "No More Objects in Layer"
Height = 660
Index = 2
Left = 120
TabIndex = 8
Top = 2400
Width = 3855
Begin VB.ComboBox TriggerLast
Height = 315
Left = 120
TabIndex = 9
Text = "TriggerLast"
Top = 240
Width = 3615
End
End
Begin VB.Frame Frame3
Caption = "Activate"
Height = 660
Index = 1
Left = 120
TabIndex = 6
Top = 1680
Width = 3855
Begin VB.ComboBox TriggerActivate
Height = 315
Left = 120
TabIndex = 7
Text = "TriggerActivate"
Top = 240
Width = 3615
End
End
Begin VB.Frame Frame3
Caption = "Talk"
Height = 660
Index = 0
Left = 120
TabIndex = 3
Top = 960
Width = 3855
Begin VB.ComboBox TriggerTalk
Height = 315
Left = 120
TabIndex = 5
Text = "TriggerTalk"
Top = 240
Width = 3615
End
End
Begin VB.Frame Frame2
Caption = "Death"
Height = 660
Left = 120
TabIndex = 2
Top = 240
Width = 3855
Begin VB.ComboBox TriggerDeath
Height = 315
Left = 120
TabIndex = 4
Text = "TriggerDeath"
Top = 240
Width = 3615
End
End
End
Begin VB.PictureBox FocusNinja
Height = 375
Left = 8640
ScaleHeight = 315
ScaleWidth = 315
TabIndex = 0
Top = 7560
Width = 375
End
End
Attribute VB_Name = "frmAdvanced"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmbPara_Click()
If cmbPara.ListIndex = 3 Then
frmNPCs.frmDirection.Caption = "Direction"
frmNPCs.optNPCDirection(0).Caption = "Up"
frmNPCs.optNPCDirection(2).Caption = "Down"
Else
frmNPCs.frmDirection.Caption = "Direction"
frmNPCs.optNPCDirection(0).Caption = "Left"
frmNPCs.optNPCDirection(2).Caption = "Right"
End If
End Sub
Private Sub Form_Load()
frmNPCAdvanced.cmbPara.ListIndex = 1
frmNPCAdvanced.cmbCheep.ListIndex = 0
End Sub
Private Sub Form_Unload(Cancel As Integer)
Cancel = 1
Me.Hide
End Sub