source: OniTrainer/current/Unit15.dfm@ 640

Last change on this file since 640 was 251, checked in by alloc, 17 years ago
File size: 4.7 KB
Line 
1object Form15: TForm15
2 Left = 0
3 Top = 0
4 BorderStyle = bsToolWindow
5 Caption = 'Character spawner'
6 ClientHeight = 582
7 ClientWidth = 234
8 Color = clBtnFace
9 Font.Charset = DEFAULT_CHARSET
10 Font.Color = clWindowText
11 Font.Height = -11
12 Font.Name = 'Tahoma'
13 Font.Style = []
14 OldCreateOrder = False
15 OnCloseQuery = FormCloseQuery
16 PixelsPerInch = 96
17 TextHeight = 13
18 object Label2: TLabel
19 Left = 8
20 Top = 344
21 Width = 73
22 Height = 17
23 AutoSize = False
24 Caption = 'Model:'
25 end
26 object list: TListBox
27 Left = 8
28 Top = 360
29 Width = 217
30 Height = 161
31 ItemHeight = 13
32 TabOrder = 0
33 end
34 object check_ai: TCheckBox
35 Left = 8
36 Top = 8
37 Width = 177
38 Height = 17
39 Caption = 'With &AI'
40 TabOrder = 1
41 end
42 object GroupBox1: TGroupBox
43 Left = 8
44 Top = 32
45 Width = 217
46 Height = 177
47 Caption = 'Create at:'
48 TabOrder = 2
49 object lbl_player_x: TLabel
50 Left = 24
51 Top = 32
52 Width = 97
53 Height = 17
54 AutoSize = False
55 Caption = 'x-offset to player:'
56 end
57 object lbl_player_y: TLabel
58 Left = 24
59 Top = 52
60 Width = 97
61 Height = 17
62 AutoSize = False
63 Caption = 'y-offset to player:'
64 end
65 object lbl_player_z: TLabel
66 Left = 24
67 Top = 72
68 Width = 97
69 Height = 17
70 AutoSize = False
71 Caption = 'z-offset to player:'
72 end
73 object lbl_coords_x: TLabel
74 Left = 24
75 Top = 112
76 Width = 97
77 Height = 17
78 AutoSize = False
79 Caption = 'x-position:'
80 Enabled = False
81 end
82 object lbl_coords_y: TLabel
83 Left = 24
84 Top = 132
85 Width = 97
86 Height = 17
87 AutoSize = False
88 Caption = 'y-position:'
89 Enabled = False
90 end
91 object lbl_coords_z: TLabel
92 Left = 24
93 Top = 152
94 Width = 97
95 Height = 17
96 AutoSize = False
97 Caption = 'z-position:'
98 Enabled = False
99 end
100 object check_atPlayer: TRadioButton
101 Left = 8
102 Top = 16
103 Width = 201
104 Height = 17
105 Caption = '&Player'
106 Checked = True
107 TabOrder = 0
108 TabStop = True
109 OnClick = check_atPlayerClick
110 end
111 object check_atCoords: TRadioButton
112 Left = 8
113 Top = 96
114 Width = 201
115 Height = 17
116 Caption = '&Coordinates'
117 TabOrder = 1
118 OnClick = check_atCoordsClick
119 end
120 object edit_player_x: TEdit
121 Left = 121
122 Top = 30
123 Width = 90
124 Height = 18
125 AutoSize = False
126 TabOrder = 2
127 Text = '0'
128 end
129 object edit_player_y: TEdit
130 Left = 121
131 Top = 50
132 Width = 90
133 Height = 18
134 AutoSize = False
135 TabOrder = 3
136 Text = '15'
137 end
138 object edit_player_z: TEdit
139 Left = 121
140 Top = 70
141 Width = 90
142 Height = 18
143 AutoSize = False
144 TabOrder = 4
145 Text = '0'
146 end
147 object edit_coords_x: TEdit
148 Left = 121
149 Top = 110
150 Width = 90
151 Height = 18
152 AutoSize = False
153 Enabled = False
154 TabOrder = 5
155 Text = '0'
156 end
157 object edit_coords_y: TEdit
158 Left = 121
159 Top = 130
160 Width = 90
161 Height = 18
162 AutoSize = False
163 Enabled = False
164 TabOrder = 6
165 Text = '0'
166 end
167 object edit_coords_z: TEdit
168 Left = 121
169 Top = 150
170 Width = 90
171 Height = 18
172 AutoSize = False
173 Enabled = False
174 TabOrder = 7
175 Text = '0'
176 end
177 end
178 object btn_create: TButton
179 Left = 8
180 Top = 552
181 Width = 97
182 Height = 25
183 Caption = 'Create character'
184 Default = True
185 TabOrder = 3
186 OnClick = btn_createClick
187 end
188 object check_multiple: TCheckBox
189 Left = 8
190 Top = 528
191 Width = 217
192 Height = 17
193 Caption = 'Create chars'
194 TabOrder = 4
195 OnClick = check_multipleClick
196 end
197 object edit_multiple: TEdit
198 Left = 64
199 Top = 528
200 Width = 33
201 Height = 17
202 AutoSize = False
203 Enabled = False
204 TabOrder = 5
205 Text = '2'
206 end
207 object GroupBox2: TGroupBox
208 Left = 8
209 Top = 216
210 Width = 217
211 Height = 121
212 Caption = 'Properties:'
213 TabOrder = 6
214 object Label1: TLabel
215 Left = 8
216 Top = 16
217 Width = 81
218 Height = 17
219 AutoSize = False
220 Caption = 'Health:'
221 end
222 object Label3: TLabel
223 Left = 8
224 Top = 32
225 Width = 70
226 Height = 17
227 AutoSize = False
228 Caption = 'Normal health:'
229 end
230 end
231 object tim_check: TTimer
232 OnTimer = tim_checkTimer
233 Left = 136
234 Top = 552
235 end
236end
Note: See TracBrowser for help on using the repository browser.