-
Notifications
You must be signed in to change notification settings - Fork 1
/
minebeard_main.lfm
4553 lines (4553 loc) · 273 KB
/
minebeard_main.lfm
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 Blackbeard: TBlackbeard
Left = 189
Height = 499
Top = 108
Width = 768
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Black Beard V0.8.0'
ClientHeight = 479
ClientWidth = 768
Color = clWhite
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
OnWindowStateChange = FormWindowStateChange
Position = poScreenCenter
LCLVersion = '2.2.6.0'
object StatusBar1: TStatusBar
Left = 0
Height = 23
Top = 456
Width = 768
Panels = <
item
Text = 'Ready.'
Width = 50
end>
ParentShowHint = False
SimpleText = 'Useful Tip: If any game client is crashes randomly; then you should start the game exe with the -dx11 parameter. DX12 is not ready yet.'
SimplePanel = False
ShowHint = True
end
object PageControl1: TPageControl
Left = 0
Height = 384
Top = 0
Width = 768
ActivePage = TabSheet1
HotTrack = True
TabIndex = 0
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'Services'
ClientHeight = 356
ClientWidth = 760
object GroupBox4: TGroupBox
Left = 0
Height = 104
Top = 256
Width = 461
Caption = 'Global Timer Daemon'
ClientHeight = 84
ClientWidth = 457
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 0
object Label1: TLabel
Left = 5
Height = 15
Top = 0
Width = 61
Caption = 'Deep Dives:'
ParentColor = False
end
object Deepdive_time: TProgressBar
Left = 70
Height = 15
Hint = 'Seconds Left from Deepdive events'
Top = 0
Width = 263
Max = 604800
ParentShowHint = False
Position = 604800
ShowHint = True
Smooth = True
Step = 1
TabOrder = 0
end
object Label6: TLabel
Left = 336
Height = 15
Top = 0
Width = 109
Caption = 'XXXXXX Seconds left'
ParentColor = False
end
object Label7: TLabel
Left = 0
Height = 15
Top = 16
Width = 66
Caption = 'Weekly jobs:'
ParentColor = False
end
object Weekly_time1: TProgressBar
Left = 70
Height = 15
Hint = 'Seconds Left from weekly assignments'
Top = 16
Width = 263
Max = 604800
ParentShowHint = False
Position = 604800
ShowHint = True
Smooth = True
Step = 1
TabOrder = 1
end
object Label10: TLabel
Left = 336
Height = 15
Top = 16
Width = 109
Caption = 'XXXXXX Seconds left'
ParentColor = False
end
object Label12: TLabel
Left = 29
Height = 15
Top = 32
Width = 37
Caption = 'Events:'
ParentColor = False
end
object Event_time: TProgressBar
Left = 70
Height = 15
Hint = 'Seconds Left from free beer / main events'
Top = 32
Width = 263
Max = 604800
ParentShowHint = False
Position = 604800
ShowHint = True
Smooth = True
Step = 1
TabOrder = 2
end
object Label13: TLabel
Left = 336
Height = 15
Top = 32
Width = 109
Caption = 'XXXXXX Seconds left'
ParentColor = False
end
object BitBtn3: TBitBtn
Left = 144
Height = 23
Top = 56
Width = 190
Caption = 'Set global time for every event'
OnClick = BitBtn3Click
TabOrder = 3
end
object Edit7: TEdit
Left = 72
Height = 23
Top = 56
Width = 72
NumbersOnly = True
OnChange = Edit7Change
OnKeyPress = Edit7KeyPress
TabOrder = 4
Text = '604800'
end
end
object CheckGroup1: TCheckGroup
Left = 0
Height = 208
Top = 0
Width = 251
AutoFill = True
Caption = 'System Status Checker - UNFINISHED'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 188
ClientWidth = 247
Enabled = False
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clNavy
Font.Pitch = fpVariable
Font.Quality = fqDraft
Items.Strings = (
'Is the XAMPP control panel running?'
'Is the webserver is Running at port 443?'
'Is the webserver is Running at port 8443?'
'Hosts file has the required entries?'
'Cert Files are installed?'
'Do you have admin access in Blackbeard?'
)
ParentFont = False
TabOrder = 1
Data = {
06000000020202020202
}
end
object GroupBox5: TGroupBox
Left = 256
Height = 208
Top = 0
Width = 205
Caption = 'Status Window'
ClientHeight = 188
ClientWidth = 201
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 2
object Label2: TLabel
Left = 9
Height = 21
Top = 0
Width = 69
Caption = 'TIMER IS:'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Segoe UI Semibold'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label14: TLabel
Left = 80
Height = 21
Top = 0
Width = 55
Caption = 'ACTIVE'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clGreen
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object CheckBox4: TCheckBox
Left = 8
Height = 19
Top = 43
Width = 141
Caption = 'Start / Minimize to tray'
OnChange = CheckBox4Change
TabOrder = 0
end
object CheckBox2: TCheckBox
Left = 8
Height = 19
Top = 24
Width = 102
Caption = 'Autostart Clock'
OnChange = CheckBox2Change
TabOrder = 1
end
object Bevel1: TBevel
Left = 5
Height = 21
Top = 0
Width = 187
end
object BitBtn5: TBitBtn
Left = 7
Height = 24
Top = 88
Width = 185
Caption = 'Start clock daemon'
OnClick = BitBtn5Click
TabOrder = 2
end
object BitBtn4: TBitBtn
Left = 7
Height = 24
Top = 112
Width = 185
Caption = 'Stop clock daemon'
OnClick = BitBtn4Click
TabOrder = 3
end
object BitBtn7: TBitBtn
Left = 7
Height = 24
Top = 136
Width = 185
Caption = 'Open XAMPP Control Panel'
OnClick = BitBtn7Click
TabOrder = 4
end
object BitBtn2: TBitBtn
Left = 7
Height = 24
Top = 160
Width = 185
Caption = 'Default Settings (Reset Program)'
OnClick = BitBtn2Click
TabOrder = 5
end
object CheckBox6: TCheckBox
Left = 8
Height = 19
Top = 64
Width = 140
Caption = 'Always Show Tray Icon'
TabOrder = 6
end
end
object Label20: TLabel
Left = 4
Height = 32
Top = 214
Width = 453
Caption = 'PLEASE, RESTART THE PROGRAM AS AN ADMINISTRATOR! OTHERWISE, YOU WONT '#13#10' BE ABLE TO USE THIS PROGRAM FUNCTIONS WITHOUT IT CORRECTLY!'
Color = clRed
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clYellow
Font.Height = -13
Font.Name = 'Arial Narrow'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
Transparent = False
end
end
object TabSheet2: TTabSheet
Caption = 'Deep Dives'
ClientHeight = 356
ClientWidth = 760
object GroupBox1: TGroupBox
Left = 0
Height = 352
Top = 0
Width = 752
Caption = 'Deep Dive Parameters'
ClientHeight = 332
ClientWidth = 748
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 0
object Edit1: TEdit
Left = 248
Height = 23
Top = 30
Width = 140
MaxLength = 10
NumbersOnly = True
OnChange = Edit1Change
OnKeyPress = Edit1KeyPress
TabOrder = 0
Text = '0000000000'
end
object Button1: TButton
Left = 388
Height = 25
Top = 30
Width = 59
Caption = 'Generate'
OnClick = Button1Click
TabOrder = 1
end
object Label3: TLabel
Left = 247
Height = 15
Top = 16
Width = 194
Caption = 'Version 1 Dive Seed (Max 10 digit):'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label8: TLabel
Left = 256
Height = 15
Top = 187
Width = 89
Caption = 'Set time to (Sec):'
ParentColor = False
end
object Edit4: TEdit
Left = 350
Height = 23
Top = 184
Width = 105
MaxLength = 10
NumbersOnly = True
OnChange = Edit4Change
OnKeyPress = Edit4KeyPress
TabOrder = 2
Text = '604800'
end
object Button4: TButton
Left = 350
Height = 25
Top = 231
Width = 105
Caption = 'Set time'
OnClick = Button4Click
TabOrder = 3
end
object DateEdit1: TDateEdit
Left = 350
Height = 23
Top = 207
Width = 105
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doYMd
ButtonWidth = 23
NumGlyphs = 1
Flat = True
MaxLength = 10
OnChange = DateEdit1Change
TabOrder = 4
Text = ' . . '
end
object Label25: TLabel
Left = 6
Height = 15
Top = 0
Width = 239
Caption = ' OFFICIAL DEEPDIVE SEEDS '
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clNavy
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold, fsUnderline]
ParentColor = False
ParentFont = False
end
object Button2: TButton
Left = 386
Height = 25
Top = 95
Width = 61
Caption = 'Generate'
OnClick = Button2Click
TabOrder = 5
end
object Label4: TLabel
Left = 247
Height = 15
Top = 80
Width = 194
Caption = 'Version 2 Dive Seed (Max 10 digit):'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Edit2: TEdit
Left = 247
Height = 23
Top = 96
Width = 139
MaxLength = 10
NumbersOnly = True
OnChange = Edit2Change
OnKeyPress = Edit2KeyPress
TabOrder = 6
Text = '0000000000'
end
object Label17: TLabel
Left = 258
Height = 15
Top = 208
Width = 84
Caption = 'Set an end date:'
ParentColor = False
end
object ListBox2: TListBox
Left = 0
Height = 312
Top = 16
Width = 248
Color = clWhite
Items.Strings = (
'000|0000-00-00|Use the Generated/Custom events.'
'180|2023-03-02|Naked Land/Forsaken Breach|'
'179|2023-02-23|Useless Overlook/Dreadful Rage|'
'178|2023-02-16|Tainted Jewel/Fearful Luck|'
'177|2023-02-09|Pale Carve/Morning Summit|'
'176|2023-02-02|Hideous Claw/Mad Covert|'
'175|2023-01-26|Scout''s Face/Pale Bed|'
'174|2023-01-19|Clouded Pearl/Corrosive Claw|'
'173|2023-01-13|Fathomless Point/Bloody Return|'
'173|2023-01-12|Glowing Comeback/Covetous End|'
'172|2023-01-05|Fearful Cemetery/Titanic Mouth|'
'171|2022-12-29|Deadly End/Brutal Wilderness|'
'170|2022-12-22|Outrageous Delight/Hunter''s Madness|'
'169|2022-12-15|Eternal Anvil/Brave Sleep|'
'168|2022-12-08|Buried Carcass/Ruptured Level|'
'167|2022-12-01|Bared Benefit/Weeping Blade|'
'166|2022-11-24|Rapid End/Fathomless Lair|'
'165|2022-11-17|Corroded Hell/Xehn''s Dusk|'
'164|2022-11-10|Feral Gate/Xehn''s Look|'
'163|2022-11-03|Absolute Clearance/Rocky Fissure|'
'162|2022-10-27|Loud Bed/Burning Hook|'
'161|2022-10-20|Stinking Border/Fragile Split|'
'160|2022-10-13|Driller''s Tunnel/Dead Carve|'
'159|2022-10-06|Unhealthy Tunnel/Mythic Keep|'
'158|2022-09-29|Bloodstained Arm/Frightened Reserve|'
'157|2022-09-22|Infernal Dump/Covetous Inland|'
'156|2022-09-15|Clean Reserve/Desperate Hollow|'
'155|2022-09-08|Wild Raid/Peeled Interest|'
'154|2022-09-01|Heavy Wasteland/Stinking Reserve|'
'153|2022-08-25|Noble Crib/Unrobed Legacy|'
'152|2022-08-18|Wild Abyss/Illuminated Breach|'
'151|2022-08-11|Bared Tomb/Calm Blackout|'
'150|2022-08-04|Natural Point/Whalepiper''s Eclipse|'
'149|2022-07-28|Brave Expanse/Exposed Caves|'
'148|2022-07-21|Everlasting Ditch/Calm Ceiling|'
'147|2022-07-14|Heavy Gorge/Shattered Hideout|'
'146|2022-07-07|Weak End/Shattered Position|'
'145|2022-06-30|Natural Avalanche/Great Crypt|'
'144|2022-06-23|First Gods/Gunner''s Enclosure|'
'143|2022-06-16|Devil''s Killing/Cruel Bedrock|'
'142|2022-06-09|Madmen''s Grave/Beginner''s Fort|'
'141|2022-06-02|Devil''s Shock/Fractured Sleep|'
'140|????-??-??|Natural Leverage/Tainted Fort|'
'139|????-??-??|Frozen Crater/Unknown Blade|'
'138|????-??-??|Barbarous Trick/Old Dump|'
'137|????-??-??|Covetous Position/Insane Derail|'
'136|????-??-??|Deadman''s Fence/Decayed Heart|'
'135|2022-04-21|Weeping Gods/Foggy Keep|'
'134|2022-04-14|Bedazzled Interest/Dirty Hell|'
'133|2022-04-07|Old Hell/Unknown Enclosure|'
'132|2022-03-31|Barbarous Carve/Fearless Land|'
'131|2022-03-24|Wide Edge/Bronze Goods|'
'130|2022-03-17|Carnal Void/Burning Strike|'
'129|2022-03-10|Absolute Pocket/Secure Dome|'
'128|2022-03-03|Dry Foot/Rotten Dream|'
'127|2022-02-24|Meek Carcass/Secret Killing|'
'126|2022-02-17|Purified Dusk/Engineer''s Hammer|'
'125|2022-02-10|Massive Let-Down/Fearless Drift|'
'124|2022-02-03|Peeled Sleep/Endless Walk|'
'123|2022-01-27|Dusty Shelter/Fast Slope|'
'122|2022-01-20|Bad Badland/Last Grin|'
'121|2022-01-13|Carnivorous Rock/Full Killing|'
'120|2022-01-06|Engineer''s Salute/Hard Reserve|'
'119|2021-12-30|Everlasting Retreat/Dirty Heart|'
'118|2021-12-23|Massive Keep/Deep Nightfall|'
'117|2021-12-16|Ranger''s Valley/Eternal Hook|'
'116|2021-12-09|Hunter''s Anvil/Pale Wealth|'
'115|2021-12-02|Sad Void/Gangrenous Gap|'
'114|2021-11-25|Silent Vault/Endless Hammer|'
'113|2021-11-18|Gangrenous Armpit/Driller''s Legacy|'
'112|2021-11-11|Scarred Reserve/Blue Comeback|'
'111|2021-11-04|Forsaken Dome/High Retreat|'
'110|2021-10-28|Rocky Gate/Sacred Look|'
'109|2021-10-21|Unveiled Field/Blunt Hand|'
'108|2021-10-14|Freak Arm/Driller''s Bluff|'
'107|2021-10-07|Corrosive Scream/Stony Fear|'
'106|2021-09-30|Rocky Barrens/Loud End|'
'105|2021-09-23|Blue Fort/Sacred Den|'
'104|2021-09-16|Sad Nightfall/Fearless Armpit|'
'103|2021-09-09|Endless Strike/Murderous Chance|'
'102|2021-09-02|Crazy Skull/Crying Nightfall|'
'101|2021-08-26|Abandoned Bottom/Cold Find|'
'100|2021-08-19|Crying Heart/Red Sorrow|'
'99|2021-08-12|Bedazzled Field/Frightened Badland|'
'98|2021-08-05|Unveiled Retreat/Gunner''s Impact|'
'97|2021-07-29|Bestial Mouth/Total Cemetery|'
'96|2021-07-22|Whalepiper''s Feast/Barbarous Border|'
'95|2021-07-15|Gutless Pass/Big Rock|'
'94|2021-07-08|Bitter Comeback/Carnal Bottom|'
'93|2021-07-01|Heavy Den/Jagged Hold|'
'92|2021-06-24|Corroded Ceiling/Stale Nest|'
'91|2021-06-17|Rapid Gate/Warrior''s Fissure|'
'90|2021-06-10|Unveiled Citadel/Shattered Armpit|'
'89|2021-06-03|Pure Leverage/Abyssal Death|'
'88|2021-05-27|High Wasteland/Foggy Edge|'
'87|2021-05-20|Ancient Drift/Raw Land|'
'86|2021-05-13|Foul End/Bitter Cell|'
'85|2021-05-06|Jagged Anvil/Eternal Death|'
'84|2021-04-29|Raging Overlook/Eternal End|'
'83|2021-04-22|Infested Soil/Fragile Pursuit|'
'82|2021-04-15|Hunter''s Haunt/Green Valley|'
'81|2021-04-08|Shattered Axe/Bitter Wrath|'
'80|2021-04-01|Corrosive Slope/Xehn''s Grave|'
'79|2021-03-25|Whalepiper''s Let-Down/Dry Caves|'
'78|2021-03-18|Last Pearl/Jagged Arm|'
'77|2021-03-11|Gangrenous Impact/Stony Downfall|'
'76|2021-03-04|Compact Sleep/Raging Carve|'
'75|2021-02-25|Noble Legacy/Cold Hammer|'
'74|2021-02-18|Stale Unfortune/Barbarous Avalanche|'
'73|2021-02-11|Fierce Summit/Fractured Ledge|'
'72|2021-02-04|Gunner''s Breach/Eternal Hulrum|'
'70|2021-01-21|Blue Inferno/Evil Eclipse|'
'64|2020-12-10|Carnal Drift/Massive Expanse|'
'44|2020-07-23|Shining Gate/Bad Cell|'
'34|2020-05-14|Sudden View/Naked Claw|'
'31|2020-04-23|Hunter''s Outpost/Gutless Burrow|'
)
ItemHeight = 15
OnClick = ListBox2Click
OnShowHint = ListBox2ShowHint
ParentShowHint = False
Style = lbOwnerDrawFixed
TabOrder = 7
end
object Label26: TLabel
Left = 279
Height = 15
Top = 0
Width = 147
Caption = 'MANUAL DEEPDIVE SEEDS'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clNavy
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold, fsUnderline]
ParentColor = False
ParentFont = False
end
object Label27: TLabel
Left = 258
Height = 30
Top = 144
Width = 184
Caption = ' ENDING DATE FOR DEEPDIVES'#13#10'(If it expires, it is adding +7 Days)'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clNavy
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold, fsUnderline]
ParentColor = False
ParentFont = False
end
end
end
object TabSheet3: TTabSheet
Caption = 'Weekly Assignments'
ClientHeight = 356
ClientWidth = 760
object GroupBox2: TGroupBox
Left = 8
Height = 176
Top = 8
Width = 208
Caption = 'Weekly Assignmens'
ClientHeight = 156
ClientWidth = 204
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 0
object Edit3: TEdit
Left = 8
Height = 23
Top = 16
Width = 120
MaxLength = 10
NumbersOnly = True
OnChange = Edit3Change
OnKeyPress = Edit3KeyPress
TabOrder = 0
Text = '0000000000'
end
object Label5: TLabel
Left = 8
Height = 15
Top = 0
Width = 182
Caption = 'Weekly jobs seed (Max 10 digit) :'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Button5: TButton
Left = 97
Height = 25
Top = 118
Width = 99
Caption = 'Set time'
OnClick = Button5Click
TabOrder = 1
end
object Edit5: TEdit
Left = 97
Height = 23
Top = 72
Width = 103
MaxLength = 10
NumbersOnly = True
OnChange = Edit5Change
OnKeyPress = Edit5KeyPress
TabOrder = 2
Text = '604800'
end
object Label9: TLabel
Left = 8
Height = 15
Top = 76
Width = 89
Caption = 'Set time to (Sec):'
ParentColor = False
end
object DateEdit2: TDateEdit
Left = 97
Height = 23
Top = 94
Width = 103
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doYMd
ButtonWidth = 23
NumGlyphs = 1
Flat = True
MaxLength = 10
OnChange = DateEdit2Change
TabOrder = 3
Text = ' . . '
end
object Button3: TButton
Left = 136
Height = 25
Top = 16
Width = 59
Caption = 'Generate'
OnClick = Button3Click
TabOrder = 4
end
object Label18: TLabel
Left = 9
Height = 15
Top = 102
Width = 84
Caption = 'Set an end date:'
ParentColor = False
end
object Label29: TLabel
Left = 8
Height = 15
Top = 48
Width = 191
Caption = 'ENDING DATE FOR ASSIGNMENTS'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clNavy
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold, fsUnderline]
ParentColor = False
ParentFont = False
end
end
end
object TabSheet4: TTabSheet
Caption = 'Events'
ClientHeight = 356
ClientWidth = 760
object GroupBox3: TGroupBox
Left = 32
Height = 328
Top = 16
Width = 209
Caption = 'Other Events'
ClientHeight = 308
ClientWidth = 205
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 0
object Label11: TLabel
Left = 3
Height = 15
Top = 226
Width = 89
Caption = 'Set time to (Sec):'
ParentColor = False
end
object Edit6: TEdit
Left = 95
Height = 23
Top = 222
Width = 89
MaxLength = 10
NumbersOnly = True
OnChange = Edit6Change
OnKeyPress = Edit6KeyPress
TabOrder = 0
Text = '604800'
end
object Button6: TButton
Left = 95
Height = 25
Top = 268
Width = 96
Caption = 'Set time'
OnClick = Button6Click
TabOrder = 1
end
object CheckBox3: TCheckBox
Left = 8
Height = 19
Top = 171
Width = 145
Caption = 'Random Freebeer event'
OnChange = CheckBox3Change
TabOrder = 2
end
object CheckBox1: TCheckBox
Left = 8
Height = 19
Top = 148
Width = 68
Caption = 'Free Beer'
OnChange = CheckBox1Change
TabOrder = 3
end
object Label15: TLabel
Left = 8
Height = 60
Top = 5
Width = 189
Caption = 'Events are not based on calendar'#13#10'It will always calculate in seconds.'#13#10'You can select date, but the value '#13#10'still gonna be in seconds.'
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clMaroon
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object DateEdit3: TDateEdit
Left = 95
Height = 23
Top = 245
Width = 95
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doYMd
ButtonWidth = 23
NumGlyphs = 1
Flat = True
MaxLength = 10
OnChange = DateEdit3Change
TabOrder = 4
Text = ' . . '
end
object Label19: TLabel
Left = 3
Height = 15
Top = 248
Width = 84
Caption = 'Set an end date:'
ParentColor = False
end
end
object GroupBox6: TGroupBox
Left = 248
Height = 328
Top = 16
Width = 192
Caption = 'Main Events (Max 1 enabled)'
ClientHeight = 308
ClientWidth = 188
Font.CharSet = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI Semibold'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 1
object ListBox1: TListBox
Left = 8
Height = 243
Top = 64
Width = 175
BorderStyle = bsNone
ExtendedSelect = False
Items.Strings = (
'No Events'
'Halloween 2021'
'Christmas 2021'
'Year 3 Kits 2021'
'Early Access Hats 2020'
'Steam Awards 2020'
'Halloween 2021'
'Christmas 2021'
'Year 05 Event 2023'
'Lunar Festival 2023'
'Christmas 2022'
'Halloween 2022'
'Oktoberfest 2022'
'Beach Party 2022'
'Great Egg Hunt 2022'
'Lunar Festival 2022'
)
ItemHeight = 15
OnClick = ListBox1Click
TabOrder = 0
end
object CheckBox5: TCheckBox
Left = 16
Height = 19
Top = 46
Width = 147
Caption = 'Randomize Main Events'
OnChange = CheckBox5Change
TabOrder = 1
end
object Label23: TLabel
Left = 8
Height = 45
Top = 0
Width = 175
Caption = 'SOME EVENTS WILL NEED YOU'#13#10'TO DOWNLOAD OTHER CLIENT'#13#10'VERSIONS TO MAKE IT WORK!'
ParentColor = False
end
end
end
object TabSheet5: TTabSheet
Caption = 'Manual'
end
object TabSheet7: TTabSheet
Caption = 'Console'
ClientHeight = 356
ClientWidth = 760
TabVisible = False
object Memo1: TMemo
Left = 0
Height = 186
Top = 8
Width = 536
Lines.Strings = (
'Memo1'
)
TabOrder = 0
Visible = False
WantReturns = False
end
object DateEdit4: TDateEdit
Left = 216
Height = 23
Top = 201
Width = 107
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doYMd
ButtonWidth = 23
NumGlyphs = 1
Flat = True
MaxLength = 10
OnChange = DateEdit1Change
TabOrder = 1
Text = ' . . '
end
object BitBtn6: TBitBtn
Left = 328
Height = 24
Top = 200