-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaveDoc.py
More file actions
1293 lines (1204 loc) · 72.1 KB
/
waveDoc.py
File metadata and controls
1293 lines (1204 loc) · 72.1 KB
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
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
#
# GUI module generated by PAGE version 8.0
# in conjunction with Tcl version 8.6
# Sep 10, 2025 09:07:01 PM CST platform: Windows NT
import sys
import tkinter as tk
import tkinter.ttk as ttk
from tkinter.constants import *
import os.path
_location = os.path.dirname(__file__)
import waveDoc_support
_bgcolor = '#d9d9d9'
_fgcolor = '#000000'
_tabfg1 = 'black'
_tabfg2 = 'white'
_bgmode = 'light'
_tabbg1 = '#d9d9d9'
_tabbg2 = 'gray40'
_style_code_ran = 0
def _style_code():
global _style_code_ran
if _style_code_ran: return
try: waveDoc_support.root.tk.call('source',
os.path.join(_location, 'themes', 'default.tcl'))
except: pass
style = ttk.Style()
style.theme_use('default')
style.configure('.', font = "TkDefaultFont")
if sys.platform == "win32":
style.theme_use('winnative')
_style_code_ran = 1
class Toplevel1:
def __init__(self, top=None):
'''This class configures and populates the toplevel window.
top is the toplevel containing window.'''
top.geometry("721x605+624+200")
top.minsize(120, 1)
top.maxsize(1924, 1061)
top.resizable(1, 1)
top.title("WaveDoc")
top.configure(relief="groove")
top.configure(background="#d9d9d9")
top.configure(highlightbackground="#d9d9d9")
top.configure(highlightcolor="#000000")
self.top = top
self.DateText = tk.StringVar()
self.MonthText = tk.StringVar()
self.MinuteText = tk.StringVar()
self.HourText = tk.StringVar()
self.WaveInfoAutoRefresh = tk.IntVar()
self.WaveRequestFinishMsgAutoReset = tk.IntVar()
self.menubar = tk.Menu(top,font="TkMenuFont",bg=_bgcolor,fg=_fgcolor)
top.configure(menu = self.menubar)
self.rawMsg = tk.Text(self.top)
self.rawMsg.place(relx=0.014, rely=0.066, relheight=0.304
, relwidth=0.318)
self.rawMsg.configure(background="white")
self.rawMsg.configure(font="TkTextFont")
self.rawMsg.configure(foreground="black")
self.rawMsg.configure(highlightbackground="#d9d9d9")
self.rawMsg.configure(highlightcolor="#000000")
self.rawMsg.configure(insertbackground="#000000")
self.rawMsg.configure(selectbackground="#d9d9d9")
self.rawMsg.configure(selectforeground="black")
self.rawMsg.configure(wrap="word")
self.rawMsg_tooltip = \
ToolTip(self.rawMsg, '''訊息貼這R先生 整個訊息 連名字那些一起''')
self.WaveRawMsgLabel = tk.Label(self.top)
self.WaveRawMsgLabel.place(relx=0.015, rely=0.017, height=32, width=88)
self.WaveRawMsgLabel.configure(activebackground="#d9d9d9")
self.WaveRawMsgLabel.configure(activeforeground="black")
self.WaveRawMsgLabel.configure(background="#d9d9d9")
self.WaveRawMsgLabel.configure(borderwidth="4")
self.WaveRawMsgLabel.configure(disabledforeground="#a3a3a3")
self.WaveRawMsgLabel.configure(font="-family {Segoe UI} -size 12")
self.WaveRawMsgLabel.configure(foreground="#000000")
self.WaveRawMsgLabel.configure(highlightbackground="#d9d9d9")
self.WaveRawMsgLabel.configure(highlightcolor="#000000")
self.WaveRawMsgLabel.configure(justify='right')
self.WaveRawMsgLabel.configure(relief="groove")
self.WaveRawMsgLabel.configure(text='''浪單訊息''')
self.WaveRawMsgLabel_tooltip = \
ToolTip(self.WaveRawMsgLabel, '''(點這來生成測試文本)''')
self.WaveMsg = tk.LabelFrame(self.top)
self.WaveMsg.place(relx=0.017, rely=0.38, relheight=0.587
, relwidth=0.963)
self.WaveMsg.configure(relief='groove')
self.WaveMsg.configure(font="-family {Segoe UI} -size 9")
self.WaveMsg.configure(foreground="#000000")
self.WaveMsg.configure(text='''訊息生成''')
self.WaveMsg.configure(background="#d9d9d9")
self.WaveMsg.configure(highlightbackground="#d9d9d9")
self.WaveMsg.configure(highlightcolor="#000000")
self.Label3_1_1_1_1 = tk.Label(self.WaveMsg)
self.Label3_1_1_1_1.place(relx=0.016, rely=0.462, height=16, width=113
, bordermode='ignore')
self.Label3_1_1_1_1.configure(activebackground="#d9d9d9")
self.Label3_1_1_1_1.configure(activeforeground="black")
self.Label3_1_1_1_1.configure(background="#d9d9d9")
self.Label3_1_1_1_1.configure(disabledforeground="#a3a3a3")
self.Label3_1_1_1_1.configure(font="-family {Segoe UI} -size 10 -weight bold")
self.Label3_1_1_1_1.configure(foreground="#000000")
self.Label3_1_1_1_1.configure(highlightbackground="#d9d9d9")
self.Label3_1_1_1_1.configure(highlightcolor="#000000")
self.Label3_1_1_1_1.configure(relief="ridge")
self.Label3_1_1_1_1.configure(text='''結單訊息''')
self.EwEnch = tk.LabelFrame(self.WaveMsg)
self.EwEnch.place(relx=0.533, rely=0.662, relheight=0.141, relwidth=0.452
, bordermode='ignore')
self.EwEnch.configure(relief='sunken')
self.EwEnch.configure(font="-family {Segoe UI} -size 9")
self.EwEnch.configure(foreground="#000000")
self.EwEnch.configure(relief="sunken")
self.EwEnch.configure(text='''Ew📉''')
self.EwEnch.configure(background="#d9d9d9")
self.EwEnch.configure(highlightbackground="#d9d9d9")
self.EwEnch.configure(highlightcolor="#000000")
self.VFX1Button = tk.Button(self.EwEnch)
self.VFX1Button.place(relx=0.035, rely=0.34, height=26, width=47
, bordermode='ignore')
self.VFX1Button.configure(activebackground="#d9d9d9")
self.VFX1Button.configure(activeforeground="black")
self.VFX1Button.configure(background="#d9d9d9")
self.VFX1Button.configure(command=lambda: waveDoc_support.addEnch(self.VFX1Button))
self.VFX1Button.configure(disabledforeground="#a3a3a3")
self.VFX1Button.configure(font="-family {Segoe UI} -size 9")
self.VFX1Button.configure(foreground="#000000")
self.VFX1Button.configure(highlightbackground="#d9d9d9")
self.VFX1Button.configure(highlightcolor="#000000")
self.VFX1Button.configure(text='''音效燈''')
self.VFX1Button_tooltip = \
ToolTip(self.VFX1Button, '''The voice of 紲(ㄒㄧㄝˋ)星燈 in a book!''')
self.VFX4Button = tk.Button(self.EwEnch)
self.VFX4Button.place(relx=0.771, rely=0.34, height=26, width=47
, bordermode='ignore')
self.VFX4Button.configure(activebackground="#d9d9d9")
self.VFX4Button.configure(activeforeground="black")
self.VFX4Button.configure(background="#d9d9d9")
self.VFX4Button.configure(command=lambda: waveDoc_support.addEnch(self.VFX4Button))
self.VFX4Button.configure(disabledforeground="#a3a3a3")
self.VFX4Button.configure(font="-family {Segoe UI} -size 9")
self.VFX4Button.configure(foreground="#000000")
self.VFX4Button.configure(highlightbackground="#d9d9d9")
self.VFX4Button.configure(highlightcolor="#000000")
self.VFX4Button.configure(text='''音效葵''')
self.VFX4Button_tooltip = \
ToolTip(self.VFX4Button, '''The voice of 琴葉葵 in a book!''')
self.VFX2Button = tk.Button(self.EwEnch)
self.VFX2Button.place(relx=0.232, rely=0.34, height=26, width=47
, bordermode='ignore')
self.VFX2Button.configure(activebackground="#d9d9d9")
self.VFX2Button.configure(activeforeground="black")
self.VFX2Button.configure(background="#d9d9d9")
self.VFX2Button.configure(command=lambda: waveDoc_support.addEnch(self.VFX2Button))
self.VFX2Button.configure(disabledforeground="#a3a3a3")
self.VFX2Button.configure(font="-family {Segoe UI} -size 9")
self.VFX2Button.configure(foreground="#000000")
self.VFX2Button.configure(highlightbackground="#d9d9d9")
self.VFX2Button.configure(highlightcolor="#000000")
self.VFX2Button.configure(text='''音效緣''')
self.VFX2Button_tooltip = \
ToolTip(self.VFX2Button, '''The voice of 結月緣 in a book!''')
self.VFX3Button = tk.Button(self.EwEnch)
self.VFX3Button.place(relx=0.43, rely=0.34, height=26, width=87
, bordermode='ignore')
self.VFX3Button.configure(activebackground="#d9d9d9")
self.VFX3Button.configure(activeforeground="black")
self.VFX3Button.configure(background="#d9d9d9")
self.VFX3Button.configure(command=lambda: waveDoc_support.addEnch(self.VFX3Button))
self.VFX3Button.configure(disabledforeground="#a3a3a3")
self.VFX3Button.configure(font="-family {Segoe UI} -size 9")
self.VFX3Button.configure(foreground="#000000")
self.VFX3Button.configure(highlightbackground="#d9d9d9")
self.VFX3Button.configure(highlightcolor="#000000")
self.VFX3Button.configure(text='''音效茜(ㄑㄧㄢˋ)''')
self.VFX3Button_tooltip = \
ToolTip(self.VFX3Button, '''The voice of 琴葉茜(ㄑㄧㄢˋ) in a book!''')
self.BruhEnch = tk.LabelFrame(self.WaveMsg)
self.BruhEnch.place(relx=0.533, rely=0.521, relheight=0.141
, relwidth=0.452, bordermode='ignore')
self.BruhEnch.configure(relief='sunken')
self.BruhEnch.configure(font="-family {Segoe UI} -size 9")
self.BruhEnch.configure(foreground="#000000")
self.BruhEnch.configure(relief="sunken")
self.BruhEnch.configure(text='''Bruh😩''')
self.BruhEnch.configure(background="#d9d9d9")
self.BruhEnch.configure(highlightbackground="#d9d9d9")
self.BruhEnch.configure(highlightcolor="#000000")
self.FloatieButton = tk.Button(self.BruhEnch)
self.FloatieButton.place(relx=0.217, rely=0.34, height=26, width=40
, bordermode='ignore')
self.FloatieButton.configure(activebackground="#d9d9d9")
self.FloatieButton.configure(activeforeground="black")
self.FloatieButton.configure(background="#d9d9d9")
self.FloatieButton.configure(command=lambda: waveDoc_support.addEnch(self.FloatieButton))
self.FloatieButton.configure(disabledforeground="#a3a3a3")
self.FloatieButton.configure(font="-family {Segoe UI} -size 9")
self.FloatieButton.configure(foreground="#000000")
self.FloatieButton.configure(highlightbackground="#d9d9d9")
self.FloatieButton.configure(highlightcolor="#000000")
self.FloatieButton.configure(text='''浮力''')
self.FloatieButton_tooltip = \
ToolTip(self.FloatieButton, '''You can make the tooltip of this red and I won't say a word against it''')
self.FastWindButton = tk.Button(self.BruhEnch)
self.FastWindButton.place(relx=0.035, rely=0.34, height=26, width=40
, bordermode='ignore')
self.FastWindButton.configure(activebackground="#d9d9d9")
self.FastWindButton.configure(activeforeground="black")
self.FastWindButton.configure(background="#d9d9d9")
self.FastWindButton.configure(command=lambda: waveDoc_support.addEnch(self.FastWindButton))
self.FastWindButton.configure(disabledforeground="#a3a3a3")
self.FastWindButton.configure(font="-family {Segoe UI} -size 9")
self.FastWindButton.configure(foreground="#000000")
self.FastWindButton.configure(highlightbackground="#d9d9d9")
self.FastWindButton.configure(highlightcolor="#000000")
self.FastWindButton.configure(text='''疾風''')
self.FastWindButton_tooltip = \
ToolTip(self.FastWindButton, '''Actually somewhat useful but the supply vastly outpace the demand''')
self.NimbleButton = tk.Button(self.BruhEnch)
self.NimbleButton.place(relx=0.392, rely=0.34, height=26, width=40
, bordermode='ignore')
self.NimbleButton.configure(activebackground="#d9d9d9")
self.NimbleButton.configure(activeforeground="black")
self.NimbleButton.configure(background="#d9d9d9")
self.NimbleButton.configure(command=lambda: waveDoc_support.addEnch(self.NimbleButton))
self.NimbleButton.configure(disabledforeground="#a3a3a3")
self.NimbleButton.configure(font="-family {Segoe UI} -size 9")
self.NimbleButton.configure(foreground="#000000")
self.NimbleButton.configure(highlightbackground="#d9d9d9")
self.NimbleButton.configure(highlightcolor="#000000")
self.NimbleButton.configure(text='''靈巧''')
self.NimbleButton_tooltip = \
ToolTip(self.NimbleButton, '''Actually somewhat useful but the supply vastly outpace the demand as well''')
self.OreSmeltButton = tk.Button(self.BruhEnch)
self.OreSmeltButton.place(relx=0.57, rely=0.34, height=26, width=60
, bordermode='ignore')
self.OreSmeltButton.configure(activebackground="#d9d9d9")
self.OreSmeltButton.configure(activeforeground="black")
self.OreSmeltButton.configure(background="#d9d9d9")
self.OreSmeltButton.configure(command=lambda: waveDoc_support.addEnch(self.OreSmeltButton))
self.OreSmeltButton.configure(disabledforeground="#a3a3a3")
self.OreSmeltButton.configure(font="-family {Segoe UI} -size 9")
self.OreSmeltButton.configure(foreground="#000000")
self.OreSmeltButton.configure(highlightbackground="#d9d9d9")
self.OreSmeltButton.configure(highlightcolor="#000000")
self.OreSmeltButton.configure(text='''礦石熔煉''')
self.OreSmeltButton_tooltip = \
ToolTip(self.OreSmeltButton, '''??? WHO EVEN WANTS THIS''')
self.WindHitButton = tk.Button(self.BruhEnch)
self.WindHitButton.place(relx=0.822, rely=0.34, height=26, width=40
, bordermode='ignore')
self.WindHitButton.configure(activebackground="#d9d9d9")
self.WindHitButton.configure(activeforeground="black")
self.WindHitButton.configure(background="#d9d9d9")
self.WindHitButton.configure(command=lambda: waveDoc_support.addEnch(self.WindHitButton))
self.WindHitButton.configure(disabledforeground="#a3a3a3")
self.WindHitButton.configure(font="-family {Segoe UI} -size 9")
self.WindHitButton.configure(foreground="#000000")
self.WindHitButton.configure(highlightbackground="#d9d9d9")
self.WindHitButton.configure(highlightcolor="#000000")
self.WindHitButton.configure(text='''風擊''')
self.WindHitButton_tooltip = \
ToolTip(self.WindHitButton, '''Pretty fun enchantment not gonna lie, \nbut fun ≠ useful''')
self.WaveCount = tk.Text(self.WaveMsg)
self.WaveCount.place(relx=0.533, rely=0.873, relheight=0.056
, relwidth=0.105, bordermode='ignore')
self.WaveCount.configure(background="white")
self.WaveCount.configure(font="TkTextFont")
self.WaveCount.configure(foreground="black")
self.WaveCount.configure(highlightbackground="#d9d9d9")
self.WaveCount.configure(highlightcolor="#000000")
self.WaveCount.configure(insertbackground="#000000")
self.WaveCount.configure(selectbackground="#d9d9d9")
self.WaveCount.configure(selectforeground="black")
self.WaveCount.configure(wrap="word")
self.WaveCount_tooltip = \
ToolTip(self.WaveCount, '''The wave your doing''')
self.Label3 = tk.Label(self.WaveMsg)
self.Label3.place(relx=0.533, rely=0.817, height=21, width=77
, bordermode='ignore')
self.Label3.configure(activebackground="#d9d9d9")
self.Label3.configure(activeforeground="black")
self.Label3.configure(anchor='w')
self.Label3.configure(background="#d9d9d9")
self.Label3.configure(compound='left')
self.Label3.configure(disabledforeground="#a3a3a3")
self.Label3.configure(font="-family {Segoe UI} -size 9")
self.Label3.configure(foreground="#000000")
self.Label3.configure(highlightbackground="#d9d9d9")
self.Label3.configure(highlightcolor="#000000")
self.Label3.configure(text='''進行中場次''')
self.WaveEndMsgCopyButton = tk.Button(self.WaveMsg)
self.WaveEndMsgCopyButton.place(relx=0.403, rely=0.206, height=26
, width=57, bordermode='ignore')
self.WaveEndMsgCopyButton.configure(activebackground="#d9d9d9")
self.WaveEndMsgCopyButton.configure(activeforeground="black")
self.WaveEndMsgCopyButton.configure(background="#cccccc")
self.WaveEndMsgCopyButton.configure(command=waveDoc_support.WaveEndMsgCopy)
self.WaveEndMsgCopyButton.configure(disabledforeground="#a3a3a3")
self.WaveEndMsgCopyButton.configure(font="-family {Segoe UI} -size 9")
self.WaveEndMsgCopyButton.configure(foreground="#000000")
self.WaveEndMsgCopyButton.configure(highlightbackground="#d9d9d9")
self.WaveEndMsgCopyButton.configure(highlightcolor="#000000")
self.WaveEndMsgCopyButton.configure(text='''複製訊息''')
self.WaveEndMsgCopyButton_tooltip = \
ToolTip(self.WaveEndMsgCopyButton, '''把浪單資訊以旁邊的格式複製到剪貼簿上''')
self.WaveVideoTitleCopyButton = tk.Button(self.WaveMsg)
self.WaveVideoTitleCopyButton.place(relx=0.403, rely=0.318, height=26
, width=57, bordermode='ignore')
self.WaveVideoTitleCopyButton.configure(activebackground="#d9d9d9")
self.WaveVideoTitleCopyButton.configure(activeforeground="black")
self.WaveVideoTitleCopyButton.configure(background="#cccccc")
self.WaveVideoTitleCopyButton.configure(command=waveDoc_support.WaveVideoTitleCopy)
self.WaveVideoTitleCopyButton.configure(disabledforeground="#a3a3a3")
self.WaveVideoTitleCopyButton.configure(font="-family {Segoe UI} -size 9")
self.WaveVideoTitleCopyButton.configure(foreground="#000000")
self.WaveVideoTitleCopyButton.configure(highlightbackground="#d9d9d9")
self.WaveVideoTitleCopyButton.configure(highlightcolor="#000000")
self.WaveVideoTitleCopyButton.configure(text='''複製訊息''')
self.WaveVideoTitleCopyButton_tooltip = \
ToolTip(self.WaveVideoTitleCopyButton, '''把浪單資訊以旁邊的格式複製到剪貼簿上''')
self.WaveStartMsgCopyButton = tk.Button(self.WaveMsg)
self.WaveStartMsgCopyButton.place(relx=0.403, rely=0.093, height=26
, width=57, bordermode='ignore')
self.WaveStartMsgCopyButton.configure(activebackground="#d9d9d9")
self.WaveStartMsgCopyButton.configure(activeforeground="black")
self.WaveStartMsgCopyButton.configure(background="#cccccc")
self.WaveStartMsgCopyButton.configure(command=waveDoc_support.WaveStartMsgCopy)
self.WaveStartMsgCopyButton.configure(disabledforeground="#a3a3a3")
self.WaveStartMsgCopyButton.configure(font="-family {Segoe UI} -size 9")
self.WaveStartMsgCopyButton.configure(foreground="#000000")
self.WaveStartMsgCopyButton.configure(highlightbackground="#d9d9d9")
self.WaveStartMsgCopyButton.configure(highlightcolor="#000000")
self.WaveStartMsgCopyButton.configure(text='''複製訊息''')
self.WaveStartMsgCopyButton_tooltip = \
ToolTip(self.WaveStartMsgCopyButton, '''把浪單資訊以旁邊的格式複製到剪貼簿上''')
self.WaveRequestFinishMsgTextElement = tk.Text(self.WaveMsg)
self.WaveRequestFinishMsgTextElement.place(relx=0.016, rely=0.507
, relheight=0.459, relwidth=0.501, bordermode='ignore')
self.WaveRequestFinishMsgTextElement.configure(background="white")
self.WaveRequestFinishMsgTextElement.configure(borderwidth="3")
self.WaveRequestFinishMsgTextElement.configure(font="TkTextFont")
self.WaveRequestFinishMsgTextElement.configure(foreground="#000000")
self.WaveRequestFinishMsgTextElement.configure(highlightbackground="#d9d9d9")
self.WaveRequestFinishMsgTextElement.configure(highlightcolor="#000000")
self.WaveRequestFinishMsgTextElement.configure(insertbackground="#000000")
self.WaveRequestFinishMsgTextElement.configure(selectbackground="#d9d9d9")
self.WaveRequestFinishMsgTextElement.configure(selectforeground="black")
self.WaveRequestFinishMsgTextElement.configure(wrap="word")
self.WaveRequestFinishMsgTextElement_tooltip = \
ToolTip(self.WaveRequestFinishMsgTextElement, '''你的結單訊息長這樣💥''')
self.WaveCounterResetButton_1 = tk.Button(self.WaveMsg)
self.WaveCounterResetButton_1.place(relx=0.539, rely=0.938, height=16
, width=65, bordermode='ignore')
self.WaveCounterResetButton_1.configure(activebackground="#d9d9d9")
self.WaveCounterResetButton_1.configure(activeforeground="black")
self.WaveCounterResetButton_1.configure(background="#d9d9d9")
self.WaveCounterResetButton_1.configure(command=waveDoc_support.WaveCounterReset)
self.WaveCounterResetButton_1.configure(disabledforeground="#a3a3a3")
self.WaveCounterResetButton_1.configure(font="-family {Segoe UI} -size 9")
self.WaveCounterResetButton_1.configure(foreground="#000000")
self.WaveCounterResetButton_1.configure(highlightbackground="#d9d9d9")
self.WaveCounterResetButton_1.configure(highlightcolor="#000000")
self.WaveCounterResetButton_1.configure(text='''重製場次''')
self.WaveCounterResetButton_1_tooltip = \
ToolTip(self.WaveCounterResetButton_1, '''進行中場次=1''')
self.WaveCounterPlusButton = tk.Button(self.WaveMsg)
self.WaveCounterPlusButton.place(relx=0.646, rely=0.901, height=31
, width=52, bordermode='ignore')
self.WaveCounterPlusButton.configure(activebackground="#d9d9d9")
self.WaveCounterPlusButton.configure(activeforeground="black")
self.WaveCounterPlusButton.configure(background="#cfcfcf")
self.WaveCounterPlusButton.configure(command=waveDoc_support.WaveCounterPlus)
self.WaveCounterPlusButton.configure(disabledforeground="#a3a3a3")
self.WaveCounterPlusButton.configure(font="-family {Segoe UI} -size 9")
self.WaveCounterPlusButton.configure(foreground="#000000")
self.WaveCounterPlusButton.configure(highlightbackground="#d9d9d9")
self.WaveCounterPlusButton.configure(highlightcolor="#000000")
self.WaveCounterPlusButton.configure(text='''下一場''')
self.WaveCounterPlusButton_tooltip = \
ToolTip(self.WaveCounterPlusButton, '''進行中場次+=1''')
self.WaveCounterMinusButton_1 = tk.Button(self.WaveMsg)
self.WaveCounterMinusButton_1.place(relx=0.646, rely=0.817, height=31
, width=52, bordermode='ignore')
self.WaveCounterMinusButton_1.configure(activebackground="#d9d9d9")
self.WaveCounterMinusButton_1.configure(activeforeground="black")
self.WaveCounterMinusButton_1.configure(background="#cfcfcf")
self.WaveCounterMinusButton_1.configure(command=waveDoc_support.WaveCounterMinus)
self.WaveCounterMinusButton_1.configure(disabledforeground="#a3a3a3")
self.WaveCounterMinusButton_1.configure(font="-family {Segoe UI} -size 9")
self.WaveCounterMinusButton_1.configure(foreground="#000000")
self.WaveCounterMinusButton_1.configure(highlightbackground="#d9d9d9")
self.WaveCounterMinusButton_1.configure(highlightcolor="#000000")
self.WaveCounterMinusButton_1.configure(text='''上一場''')
self.WaveCounterMinusButton_1_tooltip = \
ToolTip(self.WaveCounterMinusButton_1, '''進行中場次-=1''')
self.RemoveEnchButton = tk.Button(self.WaveMsg)
self.RemoveEnchButton.place(relx=0.735, rely=0.817, height=31, width=57
, bordermode='ignore')
self.RemoveEnchButton.configure(activebackground="#d9d9d9")
self.RemoveEnchButton.configure(activeforeground="black")
self.RemoveEnchButton.configure(background="#cfcfcf")
self.RemoveEnchButton.configure(command=waveDoc_support.RemoveEnch)
self.RemoveEnchButton.configure(disabledforeground="#a3a3a3")
self.RemoveEnchButton.configure(font="-family {Segoe UI} -size 9")
self.RemoveEnchButton.configure(foreground="#000000")
self.RemoveEnchButton.configure(highlightbackground="#d9d9d9")
self.RemoveEnchButton.configure(highlightcolor="#000000")
self.RemoveEnchButton.configure(text='''刪除附魔''')
self.RemoveEnchButton_tooltip = \
ToolTip(self.RemoveEnchButton, '''刪除那行最後面的附魔''')
self.WaveRequestFinishMsgButton = tk.Button(self.WaveMsg)
self.WaveRequestFinishMsgButton.place(relx=0.735, rely=0.901, height=31
, width=57, bordermode='ignore')
self.WaveRequestFinishMsgButton.configure(activebackground="#d9d9d9")
self.WaveRequestFinishMsgButton.configure(activeforeground="black")
self.WaveRequestFinishMsgButton.configure(background="#cfcfcf")
self.WaveRequestFinishMsgButton.configure(command=waveDoc_support.ResetWaveRequestFinishMsg)
self.WaveRequestFinishMsgButton.configure(disabledforeground="#a3a3a3")
self.WaveRequestFinishMsgButton.configure(font="-family {Segoe UI} -size 9")
self.WaveRequestFinishMsgButton.configure(foreground="#000000")
self.WaveRequestFinishMsgButton.configure(highlightbackground="#d9d9d9")
self.WaveRequestFinishMsgButton.configure(highlightcolor="#000000")
self.WaveRequestFinishMsgButton.configure(text='''重製訊息''')
self.WaveRequestFinishMsgButton_tooltip = \
ToolTip(self.WaveRequestFinishMsgButton, '''重製整個結單訊息''')
self.WaveRequestFinishMsgCopyButton = tk.Button(self.WaveMsg)
self.WaveRequestFinishMsgCopyButton.place(relx=0.831, rely=0.817
, height=61, width=97, bordermode='ignore')
self.WaveRequestFinishMsgCopyButton.configure(activebackground="#d9d9d9")
self.WaveRequestFinishMsgCopyButton.configure(activeforeground="black")
self.WaveRequestFinishMsgCopyButton.configure(background="#cccccc")
self.WaveRequestFinishMsgCopyButton.configure(command=waveDoc_support.WaveRequestFinishMsgCopy)
self.WaveRequestFinishMsgCopyButton.configure(disabledforeground="#a3a3a3")
self.WaveRequestFinishMsgCopyButton.configure(font="-family {Segoe UI} -size 9")
self.WaveRequestFinishMsgCopyButton.configure(foreground="#000000")
self.WaveRequestFinishMsgCopyButton.configure(highlightbackground="#d9d9d9")
self.WaveRequestFinishMsgCopyButton.configure(highlightcolor="#000000")
self.WaveRequestFinishMsgCopyButton.configure(text='''複製訊息''')
self.WaveRequestFinishMsgCopyButton_tooltip = \
ToolTip(self.WaveRequestFinishMsgCopyButton, '''把結單訊息複製到你的剪貼簿裡''')
self.Label3_1 = tk.Label(self.WaveMsg)
self.Label3_1.place(relx=0.016, rely=0.056, height=16, width=113
, bordermode='ignore')
self.Label3_1.configure(activebackground="#d9d9d9")
self.Label3_1.configure(activeforeground="black")
self.Label3_1.configure(anchor='w')
self.Label3_1.configure(background="#d9d9d9")
self.Label3_1.configure(compound='left')
self.Label3_1.configure(disabledforeground="#a3a3a3")
self.Label3_1.configure(font="-family {Segoe UI} -size 9")
self.Label3_1.configure(foreground="#000000")
self.Label3_1.configure(highlightbackground="#d9d9d9")
self.Label3_1.configure(highlightcolor="#000000")
self.Label3_1.configure(relief="ridge")
self.Label3_1.configure(text='''浪潮起始訊息格式''')
self.Label3_1_tooltip = \
ToolTip(self.Label3_1, '''%C = 當前波數, %Dif = 浪潮難度, %Mode = 訂單模式, %B = 買家ID
%Mon = 月份, %D = 日期, %H = 小時, %Min = 分鐘
%MonNow = 月份, %DNow = 日期, %HNow = 小時, %MinNow = 分鐘
文字太長可以使用滾輪查看其他行
換行符號會被當空格, 把欄位清空來回復預設值
(欄位只有在你取消聚焦時會被儲存到設定/回復預設)''')
self.WaveStartMsgFormat = tk.Text(self.WaveMsg)
self.WaveStartMsgFormat.place(relx=0.016, rely=0.099, relheight=0.056
, relwidth=0.382, bordermode='ignore')
self.WaveStartMsgFormat.configure(background="white")
self.WaveStartMsgFormat.configure(font="TkTextFont")
self.WaveStartMsgFormat.configure(foreground="#000000")
self.WaveStartMsgFormat.configure(highlightbackground="#d9d9d9")
self.WaveStartMsgFormat.configure(highlightcolor="#000000")
self.WaveStartMsgFormat.configure(insertbackground="#000000")
self.WaveStartMsgFormat.configure(selectbackground="#d9d9d9")
self.WaveStartMsgFormat.configure(selectforeground="black")
self.WaveStartMsgFormat.configure(wrap="word")
self.WaveStartMsgFormat_tooltip = \
ToolTip(self.WaveStartMsgFormat, '''%C = 當前波數, %Dif = 浪潮難度, %Mode = 訂單模式, %B = 買家ID
%Mon = 月份, %D = 日期, %H = 小時, %Min = 分鐘
%MonNow = 月份, %DNow = 日期, %HNow = 小時, %MinNow = 分鐘
文字太長可以使用滾輪查看其他行
換行符號會被當空格, 把欄位清空來回復預設值
(欄位只有在你取消聚焦時會被儲存到設定/回復預設)''')
self.Label3_1_1 = tk.Label(self.WaveMsg)
self.Label3_1_1.place(relx=0.016, rely=0.169, height=16, width=113
, bordermode='ignore')
self.Label3_1_1.configure(activebackground="#d9d9d9")
self.Label3_1_1.configure(activeforeground="black")
self.Label3_1_1.configure(anchor='w')
self.Label3_1_1.configure(background="#d9d9d9")
self.Label3_1_1.configure(compound='left')
self.Label3_1_1.configure(disabledforeground="#a3a3a3")
self.Label3_1_1.configure(font="-family {Segoe UI} -size 9")
self.Label3_1_1.configure(foreground="#000000")
self.Label3_1_1.configure(highlightbackground="#d9d9d9")
self.Label3_1_1.configure(highlightcolor="#000000")
self.Label3_1_1.configure(relief="ridge")
self.Label3_1_1.configure(text='''浪潮結束訊息格式''')
self.Label3_1_1_tooltip = \
ToolTip(self.Label3_1_1, '''%C = 當前波數, %Dif = 浪潮難度, %Mode = 訂單模式, %B = 買家ID
%Mon = 月份, %D = 日期, %H = 小時, %Min = 分鐘
%MonNow = 月份, %DNow = 日期, %HNow = 小時, %MinNow = 分鐘
文字太長可以使用滾輪查看其他行
換行符號會被當空格, 把欄位清空來回復預設值
(欄位只有在你取消聚焦時會被儲存到設定/回復預設)''')
self.WaveEndMsgFormat = tk.Text(self.WaveMsg)
self.WaveEndMsgFormat.place(relx=0.016, rely=0.211, relheight=0.056
, relwidth=0.382, bordermode='ignore')
self.WaveEndMsgFormat.configure(background="white")
self.WaveEndMsgFormat.configure(font="TkTextFont")
self.WaveEndMsgFormat.configure(foreground="#000000")
self.WaveEndMsgFormat.configure(highlightbackground="#d9d9d9")
self.WaveEndMsgFormat.configure(highlightcolor="#000000")
self.WaveEndMsgFormat.configure(insertbackground="#000000")
self.WaveEndMsgFormat.configure(selectbackground="#d9d9d9")
self.WaveEndMsgFormat.configure(selectforeground="black")
self.WaveEndMsgFormat.configure(wrap="word")
self.WaveEndMsgFormat_tooltip = \
ToolTip(self.WaveEndMsgFormat, '''%C = 當前波數, %Dif = 浪潮難度, %Mode = 訂單模式, %B = 買家ID
%Mon = 月份, %D = 日期, %H = 小時, %Min = 分鐘
%MonNow = 月份, %DNow = 日期, %HNow = 小時, %MinNow = 分鐘
文字太長可以使用滾輪查看其他行
換行符號會被當空格, 把欄位清空來回復預設值
(欄位只有在你取消聚焦時會被儲存到設定/回復預設)''')
self.Label3_1_1_1 = tk.Label(self.WaveMsg)
self.Label3_1_1_1.place(relx=0.016, rely=0.282, height=16, width=113
, bordermode='ignore')
self.Label3_1_1_1.configure(activebackground="#d9d9d9")
self.Label3_1_1_1.configure(activeforeground="black")
self.Label3_1_1_1.configure(anchor='w')
self.Label3_1_1_1.configure(background="#d9d9d9")
self.Label3_1_1_1.configure(compound='left')
self.Label3_1_1_1.configure(disabledforeground="#a3a3a3")
self.Label3_1_1_1.configure(font="-family {Segoe UI} -size 9")
self.Label3_1_1_1.configure(foreground="#000000")
self.Label3_1_1_1.configure(highlightbackground="#d9d9d9")
self.Label3_1_1_1.configure(highlightcolor="#000000")
self.Label3_1_1_1.configure(relief="ridge")
self.Label3_1_1_1.configure(text='''浪潮影片標題格式''')
self.Label3_1_1_1_tooltip = \
ToolTip(self.Label3_1_1_1, '''%C = 當前波數, %Dif = 浪潮難度, %Mode = 訂單模式, %B = 買家ID
%Mon = 月份, %D = 日期, %H = 小時, %Min = 分鐘
%MonNow = 月份, %DNow = 日期, %HNow = 小時, %MinNow = 分鐘
文字太長可以使用滾輪查看其他行
換行符號會被當空格, 把欄位清空來回復預設值
(欄位只有在你取消聚焦時會被儲存到設定/回復預設)''')
self.WaveVideoTitleFormat = tk.Text(self.WaveMsg)
self.WaveVideoTitleFormat.place(relx=0.016, rely=0.324, relheight=0.056
, relwidth=0.382, bordermode='ignore')
self.WaveVideoTitleFormat.configure(background="white")
self.WaveVideoTitleFormat.configure(font="TkTextFont")
self.WaveVideoTitleFormat.configure(foreground="#000000")
self.WaveVideoTitleFormat.configure(highlightbackground="#d9d9d9")
self.WaveVideoTitleFormat.configure(highlightcolor="#000000")
self.WaveVideoTitleFormat.configure(insertbackground="#000000")
self.WaveVideoTitleFormat.configure(selectbackground="#d9d9d9")
self.WaveVideoTitleFormat.configure(selectforeground="black")
self.WaveVideoTitleFormat.configure(wrap="word")
self.WaveVideoTitleFormat_tooltip = \
ToolTip(self.WaveVideoTitleFormat, '''%C = 當前波數, %Dif = 浪潮難度, %Mode = 訂單模式, %B = 買家ID
%Mon = 月份, %D = 日期, %H = 小時, %Min = 分鐘
%MonNow = 月份, %DNow = 日期, %HNow = 小時, %MinNow = 分鐘
文字太長可以使用滾輪查看其他行
換行符號會被當空格, 把欄位清空來回復預設值
(欄位只有在你取消聚焦時會被儲存到設定/回復預設)''')
self.MehEnch = tk.LabelFrame(self.WaveMsg)
self.MehEnch.place(relx=0.533, rely=0.211, relheight=0.31, relwidth=0.452
, bordermode='ignore')
self.MehEnch.configure(relief='sunken')
self.MehEnch.configure(font="-family {Segoe UI} -size 9")
self.MehEnch.configure(foreground="#000000")
self.MehEnch.configure(relief="sunken")
self.MehEnch.configure(text='''Meh👨''')
self.MehEnch.configure(background="#d9d9d9")
self.MehEnch.configure(highlightbackground="#d9d9d9")
self.MehEnch.configure(highlightcolor="#000000")
self.SmartButton = tk.Button(self.MehEnch)
self.SmartButton.place(relx=0.197, rely=0.182, height=26, width=40
, bordermode='ignore')
self.SmartButton.configure(activebackground="#d9d9d9")
self.SmartButton.configure(activeforeground="black")
self.SmartButton.configure(background="#d9d9d9")
self.SmartButton.configure(command=lambda: waveDoc_support.addEnch(self.SmartButton))
self.SmartButton.configure(disabledforeground="#a3a3a3")
self.SmartButton.configure(font="-family {Segoe UI} -size 9")
self.SmartButton.configure(foreground="#000000")
self.SmartButton.configure(highlightbackground="#d9d9d9")
self.SmartButton.configure(highlightcolor="#000000")
self.SmartButton.configure(text='''智慧''')
self.SmartButton_tooltip = \
ToolTip(self.SmartButton, '''I think 60$ is under valued, but it would be so expensive to get a Smart V otherwise''')
self.FrozenButton = tk.Button(self.MehEnch)
self.FrozenButton.place(relx=0.357, rely=0.182, height=26, width=40
, bordermode='ignore')
self.FrozenButton.configure(activebackground="#d9d9d9")
self.FrozenButton.configure(activeforeground="black")
self.FrozenButton.configure(background="#d9d9d9")
self.FrozenButton.configure(command=lambda: waveDoc_support.addEnch(self.FrozenButton))
self.FrozenButton.configure(disabledforeground="#a3a3a3")
self.FrozenButton.configure(font="-family {Segoe UI} -size 9")
self.FrozenButton.configure(foreground="#000000")
self.FrozenButton.configure(highlightbackground="#d9d9d9")
self.FrozenButton.configure(highlightcolor="#000000")
self.FrozenButton.configure(text='''冰凍''')
self.FrozenButton_tooltip = \
ToolTip(self.FrozenButton, '''Does this enchantment really matter?''')
self.SpearButton = tk.Button(self.MehEnch)
self.SpearButton.place(relx=0.519, rely=0.182, height=26, width=40
, bordermode='ignore')
self.SpearButton.configure(activebackground="#d9d9d9")
self.SpearButton.configure(activeforeground="black")
self.SpearButton.configure(background="#d9d9d9")
self.SpearButton.configure(command=lambda: waveDoc_support.addEnch(self.SpearButton))
self.SpearButton.configure(disabledforeground="#a3a3a3")
self.SpearButton.configure(font="-family {Segoe UI} -size 9")
self.SpearButton.configure(foreground="#000000")
self.SpearButton.configure(highlightbackground="#d9d9d9")
self.SpearButton.configure(highlightcolor="#000000")
self.SpearButton.configure(text='''長矛''')
self.SpearButton_tooltip = \
ToolTip(self.SpearButton, '''Now I can also have Reach!''')
self.CritButton = tk.Button(self.MehEnch)
self.CritButton.place(relx=0.035, rely=0.455, height=26, width=60
, bordermode='ignore')
self.CritButton.configure(activebackground="#d9d9d9")
self.CritButton.configure(activeforeground="black")
self.CritButton.configure(background="#d9d9d9")
self.CritButton.configure(command=lambda: waveDoc_support.addEnch(self.CritButton))
self.CritButton.configure(disabledforeground="#a3a3a3")
self.CritButton.configure(font="-family {Segoe UI} -size 9")
self.CritButton.configure(foreground="#000000")
self.CritButton.configure(highlightbackground="#d9d9d9")
self.CritButton.configure(highlightcolor="#000000")
self.CritButton.configure(text='''爆擊可能''')
self.CritButton_tooltip = \
ToolTip(self.CritButton, '''Even my damage is depend on RNG now bruhhhh''')
self.YummyButton = tk.Button(self.MehEnch)
self.YummyButton.place(relx=0.268, rely=0.455, height=26, width=40
, bordermode='ignore')
self.YummyButton.configure(activebackground="#d9d9d9")
self.YummyButton.configure(activeforeground="black")
self.YummyButton.configure(background="#d9d9d9")
self.YummyButton.configure(command=lambda: waveDoc_support.addEnch(self.YummyButton))
self.YummyButton.configure(disabledforeground="#a3a3a3")
self.YummyButton.configure(font="-family {Segoe UI} -size 9")
self.YummyButton.configure(foreground="#000000")
self.YummyButton.configure(highlightbackground="#d9d9d9")
self.YummyButton.configure(highlightcolor="#000000")
self.YummyButton.configure(text='''美食''')
self.YummyButton_tooltip = \
ToolTip(self.YummyButton, '''This makes garrot a lot more
convenient to use''')
self.HealthyButton = tk.Button(self.MehEnch)
self.HealthyButton.place(relx=0.43, rely=0.455, height=26, width=40
, bordermode='ignore')
self.HealthyButton.configure(activebackground="#d9d9d9")
self.HealthyButton.configure(activeforeground="black")
self.HealthyButton.configure(background="#d9d9d9")
self.HealthyButton.configure(command=lambda: waveDoc_support.addEnch(self.HealthyButton))
self.HealthyButton.configure(disabledforeground="#a3a3a3")
self.HealthyButton.configure(font="-family {Segoe UI} -size 9")
self.HealthyButton.configure(foreground="#000000")
self.HealthyButton.configure(highlightbackground="#d9d9d9")
self.HealthyButton.configure(highlightcolor="#000000")
self.HealthyButton.configure(text='''健康''')
self.HealthyButton_tooltip = \
ToolTip(self.HealthyButton, '''I wish this have V''')
self.StubbronButton = tk.Button(self.MehEnch)
self.StubbronButton.place(relx=0.592, rely=0.455, height=26, width=40
, bordermode='ignore')
self.StubbronButton.configure(activebackground="#d9d9d9")
self.StubbronButton.configure(activeforeground="black")
self.StubbronButton.configure(background="#d9d9d9")
self.StubbronButton.configure(command=lambda: waveDoc_support.addEnch(self.StubbronButton))
self.StubbronButton.configure(disabledforeground="#a3a3a3")
self.StubbronButton.configure(font="-family {Segoe UI} -size 9")
self.StubbronButton.configure(foreground="#000000")
self.StubbronButton.configure(highlightbackground="#d9d9d9")
self.StubbronButton.configure(highlightcolor="#000000")
self.StubbronButton.configure(text='''倔強''')
self.StubbronButton_tooltip = \
ToolTip(self.StubbronButton, '''God damn it we are always low on this one''')
self.MiniButton = tk.Button(self.MehEnch)
self.MiniButton.place(relx=0.752, rely=0.455, height=26, width=55
, bordermode='ignore')
self.MiniButton.configure(activebackground="#d9d9d9")
self.MiniButton.configure(activeforeground="black")
self.MiniButton.configure(background="#d9d9d9")
self.MiniButton.configure(command=lambda: waveDoc_support.addEnch(self.MiniButton))
self.MiniButton.configure(disabledforeground="#a3a3a3")
self.MiniButton.configure(font="-family {Segoe UI} -size 9")
self.MiniButton.configure(foreground="#000000")
self.MiniButton.configure(highlightbackground="#d9d9d9")
self.MiniButton.configure(highlightcolor="#000000")
self.MiniButton.configure(text='''迷你化''')
self.MiniButton_tooltip = \
ToolTip(self.MiniButton, '''400$? That is definitely overpriced''')
self.KBresButton = tk.Button(self.MehEnch)
self.KBresButton.place(relx=0.035, rely=0.727, height=26, width=60
, bordermode='ignore')
self.KBresButton.configure(activebackground="#d9d9d9")
self.KBresButton.configure(activeforeground="black")
self.KBresButton.configure(background="#d9d9d9")
self.KBresButton.configure(command=lambda: waveDoc_support.addEnch(self.KBresButton))
self.KBresButton.configure(disabledforeground="#a3a3a3")
self.KBresButton.configure(font="-family {Segoe UI} -size 9")
self.KBresButton.configure(foreground="#000000")
self.KBresButton.configure(highlightbackground="#d9d9d9")
self.KBresButton.configure(highlightcolor="#000000")
self.KBresButton.configure(text='''擊退保護''')
self.KBresButton_tooltip = \
ToolTip(self.KBresButton, '''The backbone of the SOB meta''')
self.ExpSacButton = tk.Button(self.MehEnch)
self.ExpSacButton.place(relx=0.268, rely=0.727, height=26, width=60
, bordermode='ignore')
self.ExpSacButton.configure(activebackground="#d9d9d9")
self.ExpSacButton.configure(activeforeground="black")
self.ExpSacButton.configure(background="#d9d9d9")
self.ExpSacButton.configure(command=lambda: waveDoc_support.addEnch(self.ExpSacButton))
self.ExpSacButton.configure(disabledforeground="#a3a3a3")
self.ExpSacButton.configure(font="-family {Segoe UI} -size 9")
self.ExpSacButton.configure(foreground="#000000")
self.ExpSacButton.configure(highlightbackground="#d9d9d9")
self.ExpSacButton.configure(highlightcolor="#000000")
self.ExpSacButton.configure(text='''獻祭經驗''')
self.ExpSacButton_tooltip = \
ToolTip(self.ExpSacButton, '''Free damage resistence! (until u die)''')
self.SteadySneakButton = tk.Button(self.MehEnch)
self.SteadySneakButton.place(relx=0.503, rely=0.727, height=26, width=60
, bordermode='ignore')
self.SteadySneakButton.configure(activebackground="#d9d9d9")
self.SteadySneakButton.configure(activeforeground="black")
self.SteadySneakButton.configure(background="#d9d9d9")
self.SteadySneakButton.configure(command=lambda: waveDoc_support.addEnch(self.SteadySneakButton))
self.SteadySneakButton.configure(disabledforeground="#a3a3a3")
self.SteadySneakButton.configure(font="-family {Segoe UI} -size 9")
self.SteadySneakButton.configure(foreground="#000000")
self.SteadySneakButton.configure(highlightbackground="#d9d9d9")
self.SteadySneakButton.configure(highlightcolor="#000000")
self.SteadySneakButton.configure(text='''穩重潛行''')
self.SteadySneakButton_tooltip = \
ToolTip(self.SteadySneakButton, '''Kinda hate this enchantment sometimes''')
self.AntiBreakButton = tk.Button(self.MehEnch)
self.AntiBreakButton.place(relx=0.736, rely=0.727, height=26, width=60
, bordermode='ignore')
self.AntiBreakButton.configure(activebackground="#d9d9d9")
self.AntiBreakButton.configure(activeforeground="black")
self.AntiBreakButton.configure(background="#d9d9d9")
self.AntiBreakButton.configure(command=lambda: waveDoc_support.addEnch(self.AntiBreakButton))
self.AntiBreakButton.configure(disabledforeground="#a3a3a3")
self.AntiBreakButton.configure(font="-family {Segoe UI} -size 9")
self.AntiBreakButton.configure(foreground="#000000")
self.AntiBreakButton.configure(highlightbackground="#d9d9d9")
self.AntiBreakButton.configure(highlightcolor="#000000")
self.AntiBreakButton.configure(text='''損毀救援''')
self.AntiBreakButton_tooltip = \
ToolTip(self.AntiBreakButton, '''I think this is actually useful, saves me a lot when Im not being careful''')
self.BloodSuckingButton = tk.Button(self.MehEnch)
self.BloodSuckingButton.place(relx=0.035, rely=0.182, height=26, width=40
, bordermode='ignore')
self.BloodSuckingButton.configure(activebackground="#d9d9d9")
self.BloodSuckingButton.configure(activeforeground="black")
self.BloodSuckingButton.configure(background="#d9d9d9")
self.BloodSuckingButton.configure(command=lambda: waveDoc_support.addEnch(self.BloodSuckingButton))
self.BloodSuckingButton.configure(disabledforeground="#a3a3a3")
self.BloodSuckingButton.configure(font="-family {Segoe UI} -size 9")
self.BloodSuckingButton.configure(foreground="#000000")
self.BloodSuckingButton.configure(highlightbackground="#d9d9d9")
self.BloodSuckingButton.configure(highlightcolor="#000000")
self.BloodSuckingButton.configure(text='''吸血''')
self.BloodSuckingButton_tooltip = \
ToolTip(self.BloodSuckingButton, '''Like other said, everyone think this book sucked until they used it''')
self.ExtendButton = tk.Button(self.MehEnch)
self.ExtendButton.place(relx=0.682, rely=0.182, height=26, width=40
, bordermode='ignore')
self.ExtendButton.configure(activebackground="#d9d9d9")
self.ExtendButton.configure(activeforeground="black")
self.ExtendButton.configure(background="#d9d9d9")
self.ExtendButton.configure(command=lambda: waveDoc_support.addEnch(self.ExtendButton))
self.ExtendButton.configure(disabledforeground="#a3a3a3")
self.ExtendButton.configure(font="-family {Segoe UI} -size 9")
self.ExtendButton.configure(foreground="#000000")
self.ExtendButton.configure(highlightbackground="#d9d9d9")
self.ExtendButton.configure(highlightcolor="#000000")
self.ExtendButton.configure(text='''延伸''')
self.ExtendButton_tooltip = \
ToolTip(self.ExtendButton, '''Not sure if this is actually useful outside of bed mining, \nwould be a god enchantment if combind with magnet touch tho :pepepray:''')
self.UnGoneAbleButton = tk.Button(self.MehEnch)
self.UnGoneAbleButton.place(relx=0.844, rely=0.182, height=26, width=40
, bordermode='ignore')
self.UnGoneAbleButton.configure(activebackground="#d9d9d9")
self.UnGoneAbleButton.configure(activeforeground="black")
self.UnGoneAbleButton.configure(background="#d9d9d9")
self.UnGoneAbleButton.configure(command=lambda: waveDoc_support.addEnch(self.UnGoneAbleButton))
self.UnGoneAbleButton.configure(disabledforeground="#a3a3a3")
self.UnGoneAbleButton.configure(font="-family {Segoe UI} -size 9")
self.UnGoneAbleButton.configure(foreground="#000000")
self.UnGoneAbleButton.configure(highlightbackground="#d9d9d9")
self.UnGoneAbleButton.configure(highlightcolor="#000000")
self.UnGoneAbleButton.configure(text='''不滅''')
self.UnGoneAbleButton_tooltip = \
ToolTip(self.UnGoneAbleButton, '''If only this enchantment can be put on more things...''')
self.PogEnch = tk.LabelFrame(self.WaveMsg)
self.PogEnch.place(relx=0.533, rely=0.07, relheight=0.141, relwidth=0.452
, bordermode='ignore')
self.PogEnch.configure(relief='sunken')
self.PogEnch.configure(font="-family {Segoe UI} -size 9")
self.PogEnch.configure(foreground="#000000")
self.PogEnch.configure(relief="sunken")
self.PogEnch.configure(text='''Pog🔥''')
self.PogEnch.configure(background="#d9d9d9")
self.PogEnch.configure(highlightbackground="#d9d9d9")
self.PogEnch.configure(highlightcolor="#000000")
self.MendButton = tk.Button(self.PogEnch)
self.MendButton.place(relx=0.035, rely=0.4, height=26, width=60
, bordermode='ignore')
self.MendButton.configure(activebackground="#d9d9d9")
self.MendButton.configure(activeforeground="black")
self.MendButton.configure(background="#d9d9d9")
self.MendButton.configure(command=lambda: waveDoc_support.addEnch(self.MendButton))
self.MendButton.configure(cursor="draped_box")
self.MendButton.configure(disabledforeground="#a3a3a3")
self.MendButton.configure(font="-family {Segoe UI} -size 9")
self.MendButton.configure(foreground="#000000")
self.MendButton.configure(highlightbackground="#d9d9d9")
self.MendButton.configure(highlightcolor="#000000")
self.MendButton.configure(text='''自動修補''')
self.MendButton_tooltip = \
ToolTip(self.MendButton, '''WHY YOU WANT MODDED MENDING ON YOUR SWORD?
IS NOT GOOD ENOUGH AS PROCURED FROM MOJANG STUDIO GAMES?
YOU THINK NEEDS IMPROVEMENT?
THEN MAYBE YOU FIND JOB WITH COMPANY OF SWEDEN! YOU HAVE DRINKS WITH MARKUS ALEXEJ PERSSON,
TRADE STORY OF MANY GAMES DESIGNED AND DETAILS OF SCHOOL FOR WEAPONMAKING!
OR MAYBE YOU NOT DO THIS. PROBABLY IS BECAUSE YOU NEVER MAKE GAME IN WHOLE LIFE.
YOU LOOK AT FINE MINECRAFT ITEMS, THINK IT NEED CRAZY SHIT STICK ON ALL SIDES OF WEAPON.
YOU HAVE DISEASE OF AMERICAN CAPITALIST,
CHANGE THING THAT IS FINE FOR NO REASON EXCEPT TO LOOK DIFFERENT FROM COMRADE.
YOU PUT CHEAP BOOK OF VAMPIRE SLAVE FACTORY ON ONE SIDE, YOU PUT BAD VERSION OF FIRE OF ASPECT ON OTHER SIDE,
YOU PUT THE BRAIN POWER ON BOTTOM SO YOU ARE LIKE AMERICAN SCIENCE GUY NEIL TYSON.
MAYBE YOU PUT SEX DILDO ON TOP TO FUCK YOURSELF IN ASSHOLE FOR MAKING SHAMEFUL TRAVESTY OF WEAPON OF MARKUS ALEXEJ PERSSON, NO?
VANILLA IS FINE.
YOU FUCK IT,
IT ONLY GET EXPENSIVE AND YOU STILL DIE WHEN PING HIGH.
GO TO HYPIXEL SKYWAR, PRACTICE WITH MANY MONTH OF YOUR LIFE.
THEN YOU NOT NEED DUMB SHIT PUT ON SIDE OF WEAPON.''')
self.WaveInfo = tk.LabelFrame(self.top)
self.WaveInfo.place(relx=0.35, rely=0.017, relheight=0.357
, relwidth=0.628)
self.WaveInfo.configure(relief='groove')
self.WaveInfo.configure(font="-family {Segoe UI} -size 9")
self.WaveInfo.configure(foreground="#000000")
self.WaveInfo.configure(text='''浪單資訊''')
self.WaveInfo.configure(background="#d9d9d9")
self.WaveInfo.configure(highlightbackground="#d9d9d9")
self.WaveInfo.configure(highlightcolor="#000000")
self.Label2_1_1_1_1 = tk.Label(self.WaveInfo)
self.Label2_1_1_1_1.place(relx=0.263, rely=0.685, height=22, width=72
, bordermode='ignore')
self.Label2_1_1_1_1.configure(activebackground="#d9d9d9")
self.Label2_1_1_1_1.configure(activeforeground="black")
self.Label2_1_1_1_1.configure(anchor='w')
self.Label2_1_1_1_1.configure(background="#d9d9d9")
self.Label2_1_1_1_1.configure(compound='left')
self.Label2_1_1_1_1.configure(disabledforeground="#a3a3a3")
self.Label2_1_1_1_1.configure(font="-family {Segoe UI} -size 9")
self.Label2_1_1_1_1.configure(foreground="#000000")
self.Label2_1_1_1_1.configure(highlightbackground="#d9d9d9")
self.Label2_1_1_1_1.configure(highlightcolor="#000000")
self.Label2_1_1_1_1.configure(text='''代打次數''')
self.Label2_1_1_1 = tk.Label(self.WaveInfo)
self.Label2_1_1_1.place(relx=0.029, rely=0.685, height=22, width=72
, bordermode='ignore')
self.Label2_1_1_1.configure(activebackground="#d9d9d9")
self.Label2_1_1_1.configure(activeforeground="black")
self.Label2_1_1_1.configure(anchor='w')
self.Label2_1_1_1.configure(background="#d9d9d9")
self.Label2_1_1_1.configure(compound='left')
self.Label2_1_1_1.configure(disabledforeground="#a3a3a3")
self.Label2_1_1_1.configure(font="-family {Segoe UI} -size 9")
self.Label2_1_1_1.configure(foreground="#000000")
self.Label2_1_1_1.configure(highlightbackground="#d9d9d9")
self.Label2_1_1_1.configure(highlightcolor="#000000")
self.Label2_1_1_1.configure(text='''訂單模式''')
self.Label2_1_1 = tk.Label(self.WaveInfo)
self.Label2_1_1.place(relx=0.029, rely=0.486, height=22, width=72
, bordermode='ignore')
self.Label2_1_1.configure(activebackground="#d9d9d9")
self.Label2_1_1.configure(activeforeground="black")
self.Label2_1_1.configure(anchor='w')
self.Label2_1_1.configure(background="#d9d9d9")
self.Label2_1_1.configure(compound='left')
self.Label2_1_1.configure(disabledforeground="#a3a3a3")
self.Label2_1_1.configure(font="-family {Segoe UI} -size 9")
self.Label2_1_1.configure(foreground="#000000")
self.Label2_1_1.configure(highlightbackground="#d9d9d9")
self.Label2_1_1.configure(highlightcolor="#000000")
self.Label2_1_1.configure(text='''浪潮模式''')
self.Label2_1 = tk.Label(self.WaveInfo)
self.Label2_1.place(relx=0.029, rely=0.292, height=22, width=72
, bordermode='ignore')
self.Label2_1.configure(activebackground="#d9d9d9")
self.Label2_1.configure(activeforeground="black")
self.Label2_1.configure(anchor='w')
self.Label2_1.configure(background="#d9d9d9")
self.Label2_1.configure(compound='left')
self.Label2_1.configure(disabledforeground="#a3a3a3")
self.Label2_1.configure(font="-family {Segoe UI} -size 9")
self.Label2_1.configure(foreground="#000000")
self.Label2_1.configure(highlightbackground="#d9d9d9")
self.Label2_1.configure(highlightcolor="#000000")
self.Label2_1.configure(text='''買家ID''')
self.RequestTimes = tk.Text(self.WaveInfo)
self.RequestTimes.place(relx=0.267, rely=0.778, relheight=0.088
, relwidth=0.159, bordermode='ignore')
self.RequestTimes.configure(background="white")
self.RequestTimes.configure(font="TkTextFont")
self.RequestTimes.configure(foreground="#000000")
self.RequestTimes.configure(highlightbackground="#d9d9d9")
self.RequestTimes.configure(highlightcolor="#000000")
self.RequestTimes.configure(insertbackground="#000000")
self.RequestTimes.configure(selectbackground="#d9d9d9")
self.RequestTimes.configure(selectforeground="black")
self.RequestTimes.configure(wrap="word")
self.RequestTimes_tooltip = \
ToolTip(self.RequestTimes, '''要打幾次都寫在這''')
self.WaveInfoAutoUpdateToggle = tk.Checkbutton(self.WaveInfo)
self.WaveInfoAutoUpdateToggle.place(relx=0.521, rely=0.787
, relheight=0.116, relwidth=0.311, bordermode='ignore')
self.WaveInfoAutoUpdateToggle.configure(activebackground="#d9d9d9")
self.WaveInfoAutoUpdateToggle.configure(activeforeground="black")