-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUnit1.dfm
1345 lines (1345 loc) · 34.6 KB
/
Unit1.dfm
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
object Form1: TForm1
Left = 298
Top = 131
Width = 722
Height = 541
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
Caption = 'Advanced Remote Soldat Server Enchanter'
Color = clBtnFace
Constraints.MinHeight = 424
Constraints.MinWidth = 722
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
ScreenSnap = True
OnClose = FormClose
OnConstrainedResize = FormConstrainedResize
OnCreate = FormCreate
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
OnMouseUp = ServerTabMouseUp
OnMouseWheelDown = FormMouseWheelDown
OnMouseWheelUp = FormMouseWheelUp
OnShortCut = FormShortCut
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object ServerTab: TTabControl
Left = 20
Top = 0
Width = 589
Height = 25
Align = alCustom
BiDiMode = bdLeftToRight
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OwnerDraw = True
ParentBiDiMode = False
ParentFont = False
PopupMenu = TabPopup
TabOrder = 6
TabStop = False
OnChange = ServerTabChange
OnChanging = ServerTabChanging
OnDrawTab = ServerTabDrawTab
OnEnter = ServerTabEnter
OnMouseDown = ServerTabMouseDown
OnMouseUp = ServerTabMouseUp
object ServerName: TEdit
Left = 128
Top = 0
Width = 89
Height = 21
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
Text = 'ServerName'
Visible = False
OnExit = ServerNameExit
OnKeyDown = HotKeyDown
OnKeyPress = ServerNameKeyPress
end
end
object AddServer: TButton
Left = 672
Top = 3
Width = 33
Height = 17
Caption = 'Add'
TabOrder = 0
TabStop = False
OnClick = AddServerClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
end
object RemoveServer: TButton
Left = 616
Top = 3
Width = 51
Height = 17
Caption = 'Remove'
TabOrder = 1
TabStop = False
OnClick = RemoveServerClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
end
object PageControl: TPageControl
Left = 0
Top = 20
Width = 713
Height = 500
ActivePage = ServerConsole
BiDiMode = bdLeftToRight
MultiLine = True
ParentBiDiMode = False
TabOrder = 2
TabPosition = tpLeft
TabStop = False
object ServerConsole: TTabSheet
Caption = 'Soldat Server Console'
OnEnter = SetFocusToCmd
DesignSize = (
686
492)
object Label1: TLabel
Left = 0
Top = 448
Width = 69
Height = 13
Caption = 'Command line:'
end
object Label6: TLabel
Left = 0
Top = 36
Width = 67
Height = 13
Caption = 'Average Ping:'
end
object AvgPing: TLabel
Left = 72
Top = 36
Width = 6
Height = 13
Caption = '?'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label7: TLabel
Left = 152
Top = 36
Width = 103
Height = 13
Caption = 'Average/Total Score:'
end
object TotalScore: TLabel
Left = 261
Top = 36
Width = 6
Height = 13
Caption = '?'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label8: TLabel
Left = 360
Top = 36
Width = 109
Height = 13
Caption = 'Average/Total Deaths:'
end
object TotalDeaths: TLabel
Left = 472
Top = 36
Width = 6
Height = 13
Caption = '?'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Cmd: TComboBox
Left = 0
Top = 461
Width = 545
Height = 21
AutoComplete = False
Enabled = False
ItemHeight = 13
TabOrder = 9
OnChange = CmdChange
OnEnter = CmdEnter
OnKeyDown = CmdKeyDown
OnKeyPress = CmdKeyPress
end
object PlayerList: TListView
Left = 0
Top = 51
Width = 545
Height = 177
Columns = <
item
Caption = '#'
MinWidth = 20
Width = 20
end
item
Caption = 'Player Name'
MinWidth = 160
Tag = 1
Width = 160
end
item
Caption = 'Hardware ID'
MinWidth = 102
Tag = 2
Width = 102
end
item
Caption = 'Score'
MinWidth = 40
Tag = 3
Width = 40
end
item
Caption = 'Caps'
MinWidth = 40
Tag = 4
Width = 40
end
item
Caption = 'Deaths'
MinWidth = 46
Tag = 5
Width = 46
end
item
Caption = 'Ratio'
MinWidth = 38
Tag = 6
Width = 38
end
item
Caption = 'Ping'
MinWidth = 35
Tag = 7
Width = 35
end
item
Caption = 'Team'
MinWidth = 58
Tag = 8
Width = 58
end
item
Caption = 'IP'
MinWidth = 93
Tag = 9
Width = 93
end>
Constraints.MinHeight = 100
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FlatScrollBars = True
FullDrag = True
GridLines = True
HideSelection = False
IconOptions.Arrangement = iaLeft
ReadOnly = True
RowSelect = True
ParentFont = False
ParentShowHint = False
PopupMenu = PlayerPopup
ShowHint = True
TabOrder = 2
ViewStyle = vsReport
OnColumnClick = PlayerListColumnClick
OnCompare = PlayerListCompare
OnCustomDrawItem = PlayerListCustomDrawItem
OnCustomDrawSubItem = PlayerListCustomDrawSubItem
OnInfoTip = PlayerListInfoTip
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
OnMouseDown = PlayerListMouseDown
OnMouseMove = Panel1MouseMove
OnMouseUp = Panel1MouseUp
end
object Memo: TRichEdit
Left = 0
Top = 232
Width = 545
Height = 217
TabStop = False
Color = clBlack
Font.Charset = DEFAULT_CHARSET
Font.Color = clLime
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
HideSelection = False
HideScrollBars = False
ImeMode = imDisable
Constraints.MinHeight = 84
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 6
Visible = False
OnChange = MemoChange
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
OnMouseDown = MemoMouseDown
OnMouseUp = MemoMouseUp
end
object Panel1: TPanel
Left = 0
Top = 225
Width = 544
Height = 3
Cursor = crSizeNS
TabOrder = 3
OnMouseDown = Panel1MouseDown
OnMouseMove = Panel1MouseMove
OnMouseUp = Panel1MouseUp
end
object GroupBox2: TGroupBox
Left = 0
Top = -2
Width = 686
Height = 35
TabOrder = 0
object Label3: TLabel
Left = 8
Top = 13
Width = 25
Height = 13
Caption = 'Host:'
end
object Label4: TLabel
Left = 152
Top = 13
Width = 22
Height = 13
Caption = 'Port:'
end
object Label2: TLabel
Left = 224
Top = 13
Width = 49
Height = 13
Caption = 'Password:'
end
object SpeedButton: TSpeedButton
Left = 410
Top = 9
Width = 10
Height = 21
BiDiMode = bdLeftToRight
Caption = #187
Layout = blGlyphTop
Margin = 0
ParentShowHint = False
ParentBiDiMode = False
ShowHint = True
Spacing = 0
OnClick = SpeedButtonClick
end
object Port: TEdit
Left = 176
Top = 9
Width = 41
Height = 21
TabOrder = 1
Text = '23073'
OnChange = PortChange
OnKeyDown = HotKeyDown
OnKeyPress = ConnectIt
end
object Pass: TEdit
Left = 280
Top = 9
Width = 65
Height = 21
PasswordChar = '*'
TabOrder = 2
OnChange = PassChange
OnExit = PassExit
OnKeyDown = PassKeyDown
OnKeyPress = ConnectIt
OnKeyUp = PassKeyDown
end
object Host: TComboBox
Left = 40
Top = 9
Width = 105
Height = 21
AutoComplete = False
ItemHeight = 13
TabOrder = 0
Text = '127.0.0.1'
OnChange = HostChange
OnKeyDown = HotKeyDown
OnKeyPress = ConnectIt
OnSelect = HostSelect
end
object AddFavServ: TButton
Left = 423
Top = 9
Width = 105
Height = 21
Caption = 'Manage Favourites'
PopupMenu = FavoritesPopup
TabOrder = 4
TabStop = False
OnClick = SetFocusToCmd
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
OnMouseDown = AddFavServMouseDown
end
object Refresh: TBitBtn
Left = 610
Top = 9
Width = 21
Height = 21
Enabled = False
TabOrder = 6
TabStop = False
OnClick = RefreshClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
Kind = bkRetry
Layout = blGlyphBottom
Margin = 1
end
object Settings: TButton
Left = 531
Top = 9
Width = 76
Height = 21
Caption = 'Configuration'
ModalResult = 8
TabOrder = 5
TabStop = False
OnClick = SettingsClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
end
object Connect: TButton
Left = 347
Top = 9
Width = 63
Height = 21
Caption = 'Connect'
TabOrder = 3
TabStop = False
OnClick = ConnectClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
OnMouseDown = ConnectMouseDown
end
end
object Action: TGroupBox
Left = 549
Top = 256
Width = 136
Height = 228
Caption = 'Command Box'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 11
object PerformAction: TButton
Left = 8
Top = 237
Width = 121
Height = 20
Hint = 'Who the hell uses this button anyways?'
Caption = 'Perform Command'
Enabled = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
TabStop = False
OnClick = PerformActionClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
end
end
object InfoBox: TGroupBox
Left = 549
Top = 145
Width = 136
Height = 111
TabOrder = 5
object GameMode: TLabel
Left = 40
Top = 26
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object TimeLeft: TLabel
Left = 58
Top = 74
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Limit: TLabel
Left = 68
Top = 42
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object MapName: TLabel
Left = 38
Top = 10
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Time: TLabel
Left = 58
Top = 58
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object TimeLabel: TLabel
Left = 6
Top = 58
Width = 46
Height = 13
Caption = 'Time limit:'
end
object MapNameLabel: TLabel
Left = 6
Top = 10
Width = 24
Height = 13
Caption = 'Map:'
end
object TimeLeftLabel: TLabel
Left = 6
Top = 74
Width = 43
Height = 13
Caption = 'Time left:'
end
object LimitLabel: TLabel
Left = 6
Top = 42
Width = 55
Height = 13
Caption = 'Score Limit:'
end
object GameModeLabel: TLabel
Left = 6
Top = 26
Width = 30
Height = 13
Caption = 'Mode:'
end
object PlayerCountLabel: TLabel
Left = 6
Top = 90
Width = 37
Height = 13
Caption = 'Players:'
end
object PlayerCount: TLabel
Left = 53
Top = 90
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object MoreInfo: TLabel
Left = 104
Top = 96
Width = 29
Height = 13
Cursor = crHandPoint
Caption = 'more..'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
OnClick = MoreInfoClick
OnMouseEnter = MoreInfoMouseEnter
OnMouseLeave = MoreInfoMouseLeave
end
object botsCountLabel: TLabel
Left = 6
Top = 114
Width = 24
Height = 13
Caption = 'Bots:'
end
object botsCount: TLabel
Left = 38
Top = 114
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object SpectCountLabel: TLabel
Left = 6
Top = 130
Width = 54
Height = 13
Caption = 'Spectators:'
end
object SpectCount: TLabel
Left = 70
Top = 130
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object RespawnLabel: TLabel
Left = 6
Top = 154
Width = 70
Height = 13
Caption = 'Respawn time:'
end
object Respawn: TLabel
Left = 81
Top = 154
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object FFLabel: TLabel
Left = 6
Top = 170
Width = 59
Height = 13
Caption = 'Friendly Fire:'
end
object FF: TLabel
Left = 70
Top = 170
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object BonusLabel: TLabel
Left = 6
Top = 186
Width = 83
Height = 13
Caption = 'Bonus frequency:'
end
object Bonus: TLabel
Left = 94
Top = 186
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object VotingLabel: TLabel
Left = 6
Top = 202
Width = 72
Height = 13
Caption = 'Voting percent:'
end
object Voting: TLabel
Left = 86
Top = 202
Width = 3
Height = 13
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
end
object TeamList: TListView
Left = 549
Top = 35
Width = 135
Height = 110
BevelInner = bvLowered
BevelOuter = bvRaised
BevelKind = bkFlat
BorderStyle = bsNone
Color = clBtnFace
Columns = <
item
Caption = 'Team'
MaxWidth = 43
MinWidth = 43
Width = 43
end
item
Caption = 'Score'
MaxWidth = 42
MinWidth = 42
Width = 42
end
item
Caption = 'Players'
MaxWidth = 50
MinWidth = 50
end>
ColumnClick = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FlatScrollBars = True
FullDrag = True
Items.Data = {
C90000000600000000000000FFFFFFFFFFFFFFFF020000000000000005416C70
6861000000000000FFFFFFFFFFFFFFFF020000000000000005427261766F0000
00000000FFFFFFFFFFFFFFFF020000000000000007436861726C696500000000
0000FFFFFFFFFFFFFFFF02000000000000000544656C7461000000000000FFFF
FFFFFFFFFFFF02000000000000000453706563000000000000FFFFFFFFFFFFFF
FF020000000000000005546F74616C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFF}
ReadOnly = True
RowSelect = True
ParentFont = False
TabOrder = 4
TabStop = False
ViewStyle = vsReport
OnClick = SetFocusToCmd
OnCustomDrawItem = TeamListCustomDrawItem
OnCustomDrawSubItem = TeamListCustomDrawSubItem
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
end
object ClearConsole: TButton
Left = 634
Top = 7
Width = 21
Height = 21
Cursor = crArrow
HelpType = htKeyword
HelpKeyword = 'Disable autoscorll'
Caption = 'cls'
TabOrder = 1
TabStop = False
Visible = False
OnClick = ClearConsoleClick
end
object SayBox: TCheckBox
Left = 472
Top = 447
Width = 71
Height = 14
TabStop = False
Anchors = [akRight, akBottom]
Caption = 'Chat mode'
Enabled = False
TabOrder = 8
OnClick = SayBoxClick
end
object AdminBox: TCheckBox
Left = 256
Top = 447
Width = 105
Height = 14
TabStop = False
Anchors = [akRight, akBottom]
Caption = 'Admin Chat mode'
Enabled = False
TabOrder = 7
OnClick = AdminBoxClick
end
object ActionList: TListBox
Left = 560
Top = 272
Width = 121
Height = 209
Hint = 'command box'
Style = lbOwnerDrawFixed
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ItemHeight = 13
Items.Strings = (
'Make Private'
'Send server message'
'Shutdown server'
'Add bot'
'Kick last player'
'Ban IP'
'Unban IP'
'Ban Name'
'Unban Name'
'Ban last player'
'Unban last player'
'Change map'
'Load next map'
'Restart Match'
'Add remote admin'
'Remove remote admin'
'Set respawn time'
'Set max respawn time'
'Set time limit'
'Set kill/point/cap limit'
'Set game password'
'Set friendly fire'
'Set vote percentage'
'Set bonus frequency'
'Set maximum players'
'Change Game Mode'
'Set Advance Mode'
'Set Realistic Mode'
'Set Survival Mode'
'Load Settings File'
'Load Weapons Mod'
'Load Maplist File'
'Register in Lobby')
ParentFont = False
PopupMenu = CommandPopup
TabOrder = 10
OnDblClick = PerformActionClick
OnDrawItem = ActionListDrawItem
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
OnMouseDown = ActionListMouseDown
end
object NickSayBox: TCheckBox
Left = 368
Top = 447
Width = 97
Height = 14
TabStop = False
Anchors = [akRight, akBottom]
Caption = 'Nick Chat mode'
Enabled = False
TabOrder = 12
OnClick = NickSayBoxClick
end
end
object BotConsole: TTabSheet
Caption = 'IRC Bot Console'
ImageIndex = 1
DesignSize = (
686
492)
object Label10: TLabel
Left = 0
Top = 448
Width = 69
Height = 13
Caption = 'Command line:'
end
object Label18: TLabel
Left = 0
Top = 36
Width = 62
Height = 13
Caption = 'IRC Console:'
end
object IRCConsole: TRichEdit
Left = 0
Top = 51
Width = 545
Height = 398
TabStop = False
Color = clBlack
Font.Charset = DEFAULT_CHARSET
Font.Color = clLime
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
OnChange = IRCConsoleChange
OnKeyDown = IRCConsoleKeyDown
OnMouseDown = IRCConsoleMouseDown
OnMouseUp = IRCConsoleMouseUp
end
object IRCCmd: TComboBox
Left = 0
Top = 461
Width = 545
Height = 21
AutoComplete = False
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 1
TabStop = False
OnKeyDown = HotKeyDown
OnKeyPress = IRCCmdKeyPress
end
object UserBox: TListBox
Left = 546
Top = 51
Width = 131
Height = 398
ItemHeight = 13
Sorted = True
TabOrder = 2
OnKeyDown = HotKeyDown
end
object IRCConnect: TButton
Left = 3
Top = 3
Width = 83
Height = 25
Caption = 'Connect'
TabOrder = 3
OnClick = IRCConnectClick
OnKeyDown = HotKeyDown
end
object IrcSettings: TBitBtn
Left = 93
Top = 3
Width = 75
Height = 25
Caption = 'Settings'
ModalResult = 8
TabOrder = 4
OnClick = SettingsClick
OnKeyDown = HotKeyDown
OnKeyPress = HotKeyPress
Glyph.Data = {