-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSettingsForm.dfm
1356 lines (1352 loc) · 37.1 KB
/
SettingsForm.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 Settings1: TSettings1
Left = 867
Top = 116
BorderStyle = bsDialog
Caption = 'Configuration of Localhost'
ClientHeight = 428
ClientWidth = 464
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnKeyDown = FormKeyDown
PixelsPerInch = 96
TextHeight = 13
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 464
Height = 428
ActivePage = TabSheet1
Align = alClient
Style = tsFlatButtons
TabOrder = 2
object TabSheet1: TTabSheet
Caption = 'General'
object LocalSettings: TGroupBox
Left = 0
Top = 153
Width = 457
Height = 201
Caption = 'Server-Specific Settings'
TabOrder = 0
object Label3: TLabel
Left = 272
Top = 113
Width = 43
Height = 13
Caption = 'seconds:'
end
object savepass: TCheckBox
Left = 8
Top = 16
Width = 129
Height = 17
Caption = 'save server password'
TabOrder = 0
end
object savelog: TCheckBox
Left = 8
Top = 32
Width = 361
Height = 17
Caption = 'save message log'
TabOrder = 1
end
object hideRegistered: TCheckBox
Left = 8
Top = 48
Width = 193
Height = 17
Caption = 'hide "Registering Server" messages'
TabOrder = 3
end
object hideKills: TCheckBox
Left = 8
Top = 64
Width = 113
Height = 17
Caption = 'hide kill messages'
TabOrder = 4
end
object autoswap: TCheckBox
Left = 8
Top = 80
Width = 265
Height = 17
Caption = 'automatically swap teams after every map change'
TabOrder = 5
end
object autobalance: TCheckBox
Left = 8
Top = 96
Width = 273
Height = 17
Caption = 'automatically balance teams if difference is more than'
TabOrder = 6
end
object balancediff: TEdit
Left = 280
Top = 92
Width = 20
Height = 21
TabOrder = 7
Text = '2'
end
object AutoMsgTime: TEdit
Left = 240
Top = 113
Width = 25
Height = 21
TabOrder = 9
Text = '60'
end
object autosay: TCheckBox
Left = 8
Top = 112
Width = 225
Height = 17
Caption = 'automatically send server message(s) every'
TabOrder = 8
end
object AutoMsgList: TMemo
Left = 32
Top = 136
Width = 393
Height = 49
ScrollBars = ssVertical
TabOrder = 10
OnKeyDown = FormKeyDown
end
object OpenLogs: TButton
Left = 312
Top = 32
Width = 131
Height = 17
Caption = 'open logs folder'
TabOrder = 2
OnClick = OpenLogsClick
end
end
object GlobalSettings: TGroupBox
Left = 0
Top = 0
Width = 457
Height = 150
Caption = 'Global Settings'
TabOrder = 1
object Label1: TLabel
Left = 196
Top = 18
Width = 43
Height = 13
Caption = 'seconds.'
end
object Label26: TLabel
Left = 8
Top = 99
Width = 85
Height = 13
Caption = 'Admin chat name:'
end
object Label29: TLabel
Left = 8
Top = 122
Width = 112
Height = 13
Caption = 'Admin-Message-Sound:'
end
object Auto: TCheckBox
Left = 8
Top = 16
Width = 153
Height = 17
Caption = 'automatically refresh every'
TabOrder = 0
end
object mintotray: TCheckBox
Left = 8
Top = 32
Width = 137
Height = 17
Caption = 'minimize to system tray'
TabOrder = 2
end
object sortrefresh: TCheckBox
Left = 8
Top = 64
Width = 161
Height = 17
Caption = 'automatically sort on refresh'
TabOrder = 4
end
object refresh: TEdit
Left = 160
Top = 16
Width = 33
Height = 21
TabOrder = 1
OnKeyDown = FormKeyDown
end
object autoupdate: TCheckBox
Left = 8
Top = 80
Width = 201
Height = 17
Caption = 'automatically check for updates every'
TabOrder = 5
end
object ManualUpdate: TButton
Left = 312
Top = 80
Width = 131
Height = 17
Caption = 'check updates now'
TabOrder = 7
end
object updatefreq: TComboBox
Left = 216
Top = 77
Width = 73
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 0
TabOrder = 6
Text = 'month'
Items.Strings = (
'month'
'week'
'day')
end
object PlayersOnTab: TCheckBox
Left = 8
Top = 48
Width = 249
Height = 17
Caption = 'show player numbers on tabs while connected'
TabOrder = 3
end
object AdminName: TEdit
Left = 96
Top = 96
Width = 113
Height = 21
TabOrder = 8
OnKeyDown = FormKeyDown
end
object SoundfileName: TEdit
Left = 124
Top = 119
Width = 285
Height = 21
TabOrder = 9
end
object ButtonOpenSound: TButton
Left = 408
Top = 119
Width = 35
Height = 21
Caption = '...'
TabOrder = 10
OnClick = ButtonOpenSoundClick
end
end
end
object TabSheet4: TTabSheet
Caption = 'IRC'
ImageIndex = 3
object Label11: TLabel
Left = 47
Top = 4
Width = 55
Height = 13
Caption = 'IRC Server:'
end
object Label12: TLabel
Left = 272
Top = 4
Width = 22
Height = 13
Caption = 'Port:'
end
object Label13: TLabel
Left = 48
Top = 29
Width = 51
Height = 13
Caption = 'Nickname:'
end
object Label14: TLabel
Left = 56
Top = 101
Width = 42
Height = 13
Caption = 'Channel:'
end
object Label15: TLabel
Left = 34
Top = 125
Width = 63
Height = 13
Caption = 'Channel Key:'
end
object Label17: TLabel
Left = 16
Top = 245
Width = 82
Height = 13
Caption = 'AUTH Password:'
end
object Label16: TLabel
Left = 16
Top = 221
Width = 84
Height = 13
Caption = 'AUTH Username:'
end
object Label6: TLabel
Left = 48
Top = 53
Width = 53
Height = 13
Caption = 'Alternative:'
end
object Label7: TLabel
Left = 48
Top = 174
Width = 52
Height = 13
Caption = 'AUTH Bot:'
end
object Label19: TLabel
Left = 272
Top = 101
Width = 78
Height = 13
Caption = 'Command prefix:'
end
object Label8: TLabel
Left = 16
Top = 198
Width = 83
Height = 13
Caption = 'AUTH Command:'
end
object Label32: TLabel
Left = 49
Top = 77
Width = 51
Height = 13
Caption = 'Username:'
end
object IRCServer: TEdit
Left = 104
Top = 0
Width = 165
Height = 21
TabOrder = 0
OnKeyDown = FormKeyDown
end
object IRCPort: TEdit
Left = 301
Top = 0
Width = 35
Height = 21
TabOrder = 1
Text = '6667'
OnKeyDown = FormKeyDown
end
object IRCNick: TEdit
Left = 104
Top = 25
Width = 165
Height = 21
TabOrder = 2
OnKeyDown = FormKeyDown
end
object IRCChannel: TEdit
Left = 104
Top = 97
Width = 165
Height = 21
TabOrder = 5
OnKeyDown = FormKeyDown
end
object IRCKey: TEdit
Left = 104
Top = 121
Width = 165
Height = 21
PasswordChar = '*'
TabOrder = 7
OnKeyDown = FormKeyDown
end
object QNetPass: TEdit
Left = 104
Top = 242
Width = 165
Height = 21
PasswordChar = '*'
TabOrder = 12
OnKeyDown = FormKeyDown
end
object QNetUser: TEdit
Left = 104
Top = 218
Width = 165
Height = 21
TabOrder = 11
OnKeyDown = FormKeyDown
end
object QNetAuth: TCheckBox
Left = 18
Top = 149
Width = 119
Height = 17
Caption = 'enable AUTH/Login'
TabOrder = 8
end
object IRCAltNick: TEdit
Left = 104
Top = 49
Width = 165
Height = 21
TabOrder = 3
OnKeyDown = FormKeyDown
end
object QNetBot: TEdit
Left = 104
Top = 170
Width = 165
Height = 21
TabOrder = 9
OnKeyDown = FormKeyDown
end
object prefix: TEdit
Left = 352
Top = 98
Width = 17
Height = 21
TabOrder = 6
Text = '!'
OnKeyDown = FormKeyDown
end
object QNetCmd: TEdit
Left = 104
Top = 194
Width = 165
Height = 21
TabOrder = 10
OnKeyDown = FormKeyDown
end
object IRCUsername: TEdit
Left = 104
Top = 73
Width = 165
Height = 21
TabOrder = 4
OnKeyDown = FormKeyDown
end
end
object TabSheet2: TTabSheet
Caption = 'Events'
ImageIndex = 1
object EventList: TListView
Left = 0
Top = 0
Width = 457
Height = 313
Checkboxes = True
Columns = <
item
Caption = 'Event'
Width = 145
end
item
Caption = 'Script file'
Width = 289
end>
FlatScrollBars = True
FullDrag = True
GridLines = True
Items.Data = {
A20200001200000000000000FFFFFFFFFFFFFFFF0100000000000000064F6E4C
6F61640000000000FFFFFFFFFFFFFFFF0100000000000000064F6E4578697400
00000000FFFFFFFFFFFFFFFF0100000000000000094F6E436F6E6E6563740000
000000FFFFFFFFFFFFFFFF01000000000000000C4F6E446973636F6E6E656374
0000000000FFFFFFFFFFFFFFFF01000000000000000D4F6E4A6F696E52657175
6573740000000000FFFFFFFFFFFFFFFF01000000000000000C4F6E506C617965
724A6F696E0000000000FFFFFFFFFFFFFFFF01000000000000000D4F6E506C61
7965724C656176650000000000FFFFFFFFFFFFFFFF01000000000000000D4F6E
506C61796572537065616B187363726970745C4F6E506C61796572537065616B
2E74787400000000FFFFFFFFFFFFFFFF01000000000000000E4F6E41646D696E
436F6E6E6563740000000000FFFFFFFFFFFFFFFF0100000000000000114F6E41
646D696E446973636F6E6E6563740000000000FFFFFFFFFFFFFFFF0100000000
0000000A4F6E54696D654C6566740000000000FFFFFFFFFFFFFFFF0100000000
000000064F6E44617461117363726970745C4F6E446174612E74787400000000
FFFFFFFFFFFFFFFF0100000000000000094F6E526566726573680000000000FF
FFFFFFFFFFFFFF0100000000000000084F6E4952434D73670000000000FFFFFF
FFFFFFFFFF0100000000000000094F6E4952434A6F696E0000000000FFFFFFFF
FFFFFFFF0100000000000000094F6E495243506172740000000000FFFFFFFFFF
FFFFFF01000000000000000C4F6E495243436F6E6E6563740000000000FFFFFF
FFFFFFFFFF01000000000000000F4F6E495243446973636F6E6E65637400FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFF}
ReadOnly = True
RowSelect = True
PopupMenu = EventPopup
TabOrder = 0
ViewStyle = vsReport
OnDblClick = EventListDblClick
OnMouseDown = EventListMouseDown
OnSelectItem = EventListSelectItem
end
object EventDesc: TMemo
Left = 1
Top = 318
Width = 448
Height = 44
BevelInner = bvLowered
BevelKind = bkFlat
BevelOuter = bvRaised
BorderStyle = bsNone
Color = clBtnFace
ReadOnly = True
TabOrder = 1
end
object ScriptFileEdit: TEdit
Left = 262
Top = 54
Width = 121
Height = 18
BevelInner = bvLowered
BevelKind = bkFlat
BevelOuter = bvRaised
BorderStyle = bsNone
TabOrder = 2
Text = 'ScriptFileEdit'
Visible = False
OnChange = ScriptFileEditChange
OnExit = ScriptFileEditExit
OnKeyDown = FormKeyDown
OnKeyPress = ScriptFileEditKeyPress
end
end
object TabSheet6: TTabSheet
Caption = 'Timers'
ImageIndex = 5
object TimerList: TListView
Left = 0
Top = 0
Width = 457
Height = 329
Checkboxes = True
Columns = <
item
Caption = 'Timer'
MinWidth = 145
Width = 145
end
item
Caption = 'Repeat'
MinWidth = 47
Width = 47
end
item
Caption = 'Interval'
MinWidth = 47
Width = 47
end
item
Caption = 'Script File'
MinWidth = 180
Width = 180
end>
FlatScrollBars = True
GridLines = True
ReadOnly = True
RowSelect = True
PopupMenu = TimerPopup
TabOrder = 0
ViewStyle = vsReport
OnDblClick = TimerListDblClick
OnMouseDown = TimerListMouseDown
end
object AddTimer: TButton
Left = 0
Top = 332
Width = 89
Height = 21
Caption = 'Add Timer'
TabOrder = 1
OnClick = AddTimerClick
end
object EditTimer: TButton
Left = 200
Top = 332
Width = 75
Height = 21
Caption = 'Edit Timer'
TabOrder = 3
OnClick = EditTimerClick
end
object DeleteTimer: TButton
Left = 104
Top = 332
Width = 81
Height = 21
Caption = 'Delete Timer'
TabOrder = 2
OnClick = DeleteTimerClick
end
object TimerEdit: TEdit
Left = 248
Top = 48
Width = 121
Height = 21
BevelInner = bvLowered
BevelKind = bkFlat
BevelOuter = bvRaised
BorderStyle = bsNone
TabOrder = 4
Text = 'TimerEdit'
Visible = False
OnExit = TimerEditExit
OnKeyDown = FormKeyDown
OnKeyPress = TimerEditKeyPress
end
end
object TabSheet3: TTabSheet
Caption = 'Script Editor'
ImageIndex = 2
object Label2: TLabel
Left = 0
Top = 0
Width = 49
Height = 13
Caption = 'Script File:'
end
object Label4: TLabel
Left = 0
Top = 40
Width = 70
Height = 13
Caption = 'Script Content:'
end
object Label5: TLabel
Left = 240
Top = 0
Width = 122
Height = 13
Caption = 'Commands and Variables:'
end
object ScriptFile: TEdit
Left = 0
Top = 16
Width = 233
Height = 21
TabOrder = 0
OnKeyDown = FormKeyDown
end
object ScriptEditor: TRichEdit
Left = 0
Top = 56
Width = 455
Height = 287
PlainText = True
ScrollBars = ssBoth
TabOrder = 3
WantTabs = True
WordWrap = False
OnKeyDown = FormKeyDown
end
object CommandList: TComboBox
Left = 240
Top = 16
Width = 177
Height = 21
AutoComplete = False
DropDownCount = 25
ItemHeight = 13
TabOrder = 1
Text = '/say'
OnKeyDown = FormKeyDown
Items.Strings = (
'/say'
'/shutdown'
'/addbot'
'/kick'
'/kicklast'
'/kickall '
'/ban'
'/banip'
'/banname'
'/unbanip'
'/unbanname'
'/map'
'/nextmap'
'/restart'
'/adm'
'/admip'
'/unadm'
'/respawntime'
'/maxrespawntime'
'/limit'
'/timelimit'
'/password'
'/setteam'
'/setteamall'
'/spectall'
'/swapteams'
'/friendlyfire'
'/vote%'
'/bonus'
'/maxplayers'
'/load'
'/loadwep '
'/loadconf'
'/kill'
'/advance'
'/realistic'
'/survival'
'/gamemode'
''
'if '
'endif'
'else'
' = '
' <> '
'write '
'IRCmsg '
'ADMINmsg '
''
'$PLAYER_NAME'
'$PLAYER_IP'
'$PLAYER_NUM'
'$PLAYER_SCORE'
'$PLAYER_DEATHS'
'$PLAYER_RATE'
'$PLAYER_PING'
'$PLAYER_IP'
'$PLAYER_PORT'
'$PLAYER_TEAM'
'$SERVER_IP'
'$SERVER_PORT'
'$SERVER_NAME'
'$SERVER_NUM'
'$SERVER_COUNT'
'$MESSAGE'
'$TEAMCHAT'
'$TIME_LEFT'
'$DATA'
'$ADMIN_IP'
'$CLOCK'
'$DATE'
'$VERSION'
'$LOGIN_SUCCESS'
'$ALPHA_PLAYERS'
'$BRAVO_PLAYERS'
'$CHARLIE_PLAYERS'
'$DELTA_PLAYERS'
'$ALPHA_SCORE'
'$BRAVO_SCORE'
'$CHARLIE_SCORE'
'$DELTA_SCORE'
'$MAXPLAYERS'
'$MAP'
'$NEXTMAP')
end
object LoadScript: TButton
Left = 83
Top = 344
Width = 86
Height = 21
Caption = 'Load Script'
TabOrder = 5
OnClick = LoadScriptClick
end
object InsertCmd: TButton
Left = 419
Top = 16
Width = 36
Height = 21
Caption = 'Insert'
TabOrder = 2
OnClick = InsertCmdClick
end
object SaveScript: TButton
Left = 0
Top = 344
Width = 75
Height = 21
Caption = 'Save Script'
TabOrder = 4
OnClick = SaveScriptClick
end
object NewScript: TButton
Left = 176
Top = 344
Width = 75
Height = 21
Caption = 'New Script'
TabOrder = 6
OnClick = NewScriptClick
end
object ScriptHelp: TButton
Left = 352
Top = 344
Width = 99
Height = 21
Caption = 'Documentation'
TabOrder = 7
OnClick = ScriptHelpClick
end
end
object Colors: TTabSheet
Caption = 'Colors'
ImageIndex = 6
object ItemColors: TGroupBox
Left = 0
Top = 0
Width = 457
Height = 209
Caption = 'Colors of main console'
TabOrder = 0
object Label10: TLabel
Left = 20
Top = 20
Width = 67
Height = 13
Caption = 'Main Console:'
end
object Label18: TLabel
Left = 31
Top = 44
Width = 56
Height = 13
Caption = 'Normal text:'
end
object Label20: TLabel
Left = 61
Top = 68
Width = 25
Height = 13
Caption = 'Chat:'
end
object Label21: TLabel
Left = 33
Top = 92
Width = 54
Height = 13
Caption = 'Team chat:'
end
object Label22: TLabel
Left = 33
Top = 140
Width = 53
Height = 13
Caption = 'Admin Say:'
end
object Label23: TLabel
Left = 29
Top = 116
Width = 57
Height = 13
Caption = 'Muted chat:'
end
object Label24: TLabel
Left = 4
Top = 188
Width = 82
Height = 13
Caption = 'Private Message:'
end
object Label25: TLabel
Left = 29
Top = 164
Width = 56
Height = 13
Caption = 'Admin chat:'
end
object Label28: TLabel
Left = 272
Top = 20
Width = 24
Height = 13
Caption = 'Font:'
end
object Label30: TLabel
Left = 260
Top = 44
Width = 41
Height = 13
Caption = 'Clientlist:'
end
object mainConsole: TColorBox
Left = 92
Top = 16
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 0
end
object normalText: TColorBox
Left = 92
Top = 40
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 2
end
object Chat: TColorBox
Left = 92
Top = 64
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 3
end
object teamChat: TColorBox
Left = 92
Top = 88
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 4
end
object Say: TColorBox
Left = 92
Top = 136
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 6
end
object mutedChat: TColorBox
Left = 92
Top = 112
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 5
end
object PM: TColorBox
Left = 92
Top = 184
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 8
end
object AdminChat: TColorBox
Left = 92
Top = 160
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 7
end
object FontButton: TButton
Left = 304
Top = 16
Width = 145
Height = 22
Caption = 'Font: '
TabOrder = 1
OnClick = FontButtonClick
end
object clientlist: TColorBox
Left = 306
Top = 40
Width = 145
Height = 22
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbCustomColor, cbPrettyNames]
ItemHeight = 16
TabOrder = 9
end
end
object CustomColorList: TListView
Left = 0
Top = 210
Width = 457
Height = 133
Columns = <
item
Caption = 'Message'
Width = 294
end
item
Caption = 'Color'
Width = 145
end>
ColumnClick = False
FlatScrollBars = True
GridLines = True
ReadOnly = True
RowSelect = True