-
Notifications
You must be signed in to change notification settings - Fork 2
/
MENUDEF
3184 lines (2846 loc) · 170 KB
/
MENUDEF
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
OptionValue "FontColor" {
11,"Default"
0, "\c[Brick]Brick"
1, "\c[Tan]Tan"
2, "\c[Gray]Gray"
3, "\c[Green]Green"
4, "\c[Brown]Brown"
5, "\c[Gold]Gold"
6, "\c[Red]Red"
7, "\c[Blue]Blue"
8, "\c[Orange]Orange"
9, "\c[White]White"
10,"\c[Yellow]Yellow"
12,"\c[Black]Black"
13,"\c[LightBlue]Light Blue"
14,"\c[Cream]Cream"
15,"\c[Olive]Olive"
16,"\c[DarkGreen]Dark Green"
17,"\c[DarkRed]Dark Red"
18,"\c[DarkBrown]Dark Brown"
19,"\c[Purple]Purple"
20,"\c[DarkGray]Dark Gray"
21,"\c[Cyan]Cyan"
22,"\c[Ice]Ice"
23,"\c[Fire]Fire"
24,"\c[Sapphire]Sapphire"
25,"\c[Teal]Teal"
}
OptionValue "CounterStyle" {
0,"$HHXOPTIONVALUE_COUNTER_VALUE_ONLY"
1,"$HHXOPTIONVALUE_COUNTER_LABEL_WITH_VALUE"
2,"$HHXOPTIONVALUE_COUNTER_ICON_WITH_VALUE"
3,"$HHXOPTIONVALUE_COUNTER_DURABILITY_BAR"
4,"$HHXOPTIONVALUE_COUNTER_FADING_ICON"
}
OptionValue "BarDirection" {
0,"Horizontal"
1,"Horizontal (Reverse)"
2,"Vertical"
3,"Vertical (Reverse)"
}
OptionValue "EnergyUnit" {
0,"Food Calories"
1,"Kilocalories"
2,"Actual Calories"
3,"Joules"
}
OptionValue "FluidUnit" {
0,"Millilitres"
1,"Litres"
2,"Fluid Ounces"
3,"Gallons"
}
OptionValue "SpeedUnit" {
0,"Metres per Second"
1,"Kilometres per Hour"
2,"Miles per Hour"
}
OptionValue "StripUnit" {
0,"Tics"
1,"Seconds"
}
OptionValue "LevelInfoUnit" {
0,"Amount"
1,"Amount / Total"
2,"Amount%"
3,"Remaining"
4,"Remaining / Total"
5,"Remaining%"
}
OptionMenu "HHXOptions" {
Title "$HHXOptions"
StaticText ""
SubMenu "$HHXPresets", "HHXPresets"
StaticText ""
SubMenu "$HHXAdvanced", "HHXAdvanced"
}
OptionMenu "HHXAdvanced" {
Title "$HHXAdvanced"
StaticText ""
SubMenu "$HHXAmmoCounters", "HHXAmmoCounters"
SubMenu "$HHXArmour", "HHXArmour"
SubMenu "$HHXBackground", "HHXBackground"
SubMenu "$HHXCompass", "HHXCompass"
SubMenu "$HHXEKG", "HHXEKG"
SubMenu "$HHXEncumbrance", "HHXEncumbrance"
SubMenu "$HHXFullInventory", "HHXFullInventory"
SubMenu "$HHXHeartbeat", "HHXHeartbeat"
SubMenu "$HHXInventory", "HHXInventory"
// SubMenu "$HHXItemAdditions", "HHXItemAdditions"
SubMenu "$HHXKeys", "HHXKeys"
SubMenu "$HHXMugshot", "HHXMugshot"
SubMenu "$HHXObjectDescription", "HHXObjectDescription"
SubMenu "$HHXSquadStatus", "HHXSquadStatus"
SubMenu "$HHXWeaponHelp", "HHXWeaponHelp"
SubMenu "$HHXWeaponSprite", "HHXWeaponSprite"
SubMenu "$HHXWeaponStash", "HHXWeaponStash"
// SubMenu "$HHXWeaponStatus", "HHXWeaponStatus"
SubMenu "$HHXWoundCounter", "HHXWoundCounter"
StaticText ""
SubMenu "$HHXCounters", "HHXCounters"
StaticText ""
SubMenu "$HHXRadsuitOverride", "HHXRadsuitOverride"
SubMenu "$HHXRespiratorOverlay", "HHXRespiratorOverlay"
StaticText ""
StaticText ""
SafeCommand "$HHXEnableAll", "uz_hhx_enableAll"
SafeCommand "$HHXDisableAll", "uz_hhx_disableAll"
StaticText ""
SafeCommand "$HHXHLMRequiredAll", "uz_hhx_all_hlm_required"
SafeCommand "$HHXHLMOptionalAll", "uz_hhx_all_hlm_optional"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetNHM", "uz_hhx_options_reset_nhm"
SafeCommand "$HHXResetHLM", "uz_hhx_options_reset_hlm"
SafeCommand "$HHXResetAll", "uz_hhx_options_reset_all"
}
OptionMenu "HHXCounters" {
Title "$HHXCounters"
StaticText ""
SubMenu "$HHXAggroCounter", "HHXAggroCounter"
SubMenu "$HHXAirCounter", "HHXAirCounter"
SubMenu "$HHXAirToxicityCounter", "HHXAirToxicityCounter"
SubMenu "$HHXAlcoholCounter", "HHXAlcoholCounter"
SubMenu "$HHXBerserkCounter", "HHXBerserkCounter"
SubMenu "$HHXBerserkCooldownCounter", "HHXBerserkCooldownCounter"
SubMenu "$HHXBloodBagCounter", "HHXBloodBagCounter"
SubMenu "$HHXBloodLossCounter", "HHXBloodLossCounter"
SubMenu "$HHXBloodPressureCounter", "HHXBloodPressureCounter"
SubMenu "$HHXBluesCounter", "HHXBluesCounter"
SubMenu "$HHXBurnCounter", "HHXBurnCounter"
SubMenu "$HHXCurseCounter", "HHXCurseCounter"
SubMenu "$HHXEnergyCounter", "HHXEnergyCounter"
SubMenu "$HHXFatigueCounter", "HHXFatigueCounter"
SubMenu "$HHXFireDouseCounter", "HHXFireDouseCounter"
SubMenu "$HHXFragCounter", "HHXFragCounter"
SubMenu "$HHXHeartrateCounter", "HHXHeartrateCounter"
SubMenu "$HHXHeatCounter", "HHXHeatCounter"
SubMenu "$HHXHurtFloorCounter", "HHXHurtFloorCounter"
SubMenu "$HHXHydroCounter", "HHXHydroCounter"
SubMenu "$HHXIncapCounter", "HHXIncapCounter"
SubMenu "$HHXLevelKillsCounter", "HHXLevelKillsCounter"
SubMenu "$HHXLevelSecretsCounter", "HHXLevelSecretsCounter"
SubMenu "$HHXlivesCounter", "HHXlivesCounter"
SubMenu "$HHXMercBucksCounter", "HHXMercBucksCounter"
SubMenu "$HHXPlayerToxicityCounter", "HHXPlayerToxicityCounter"
SubMenu "$HHXSecondFleshCounter", "HHXSecondFleshCounter"
SubMenu "$HHXSickCounter", "HHXSickCounter"
SubMenu "$HHXSpeedCounter", "HHXSpeedCounter"
SubMenu "$HHXStimCounter", "HHXStimCounter"
SubMenu "$HHXStripCounter", "HHXStripCounter"
SubMenu "$HHXStunnedCounter", "HHXStunnedCounter"
SubMenu "$HHXTargetHeatCounter", "HHXTargetHeatCounter"
SubMenu "$HHXTargetShieldCounter", "HHXTargetShieldCounter"
SubMenu "$HHXTissueDamageCounter", "HHXTissueDamageCounter"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetStatCounters", "uz_hhx_options_reset_nhm_statCounters"
SafeCommand "$HHXHHResetStatCounters", "uz_hhx_options_reset_hlm_statCounters"
SafeCommand "$HHXResetAllStatCounters", "uz_hhx_options_reset_statCounters"
}
OptionMenu "HHXAggroCounter" {
Title "$HHXAggroCounter"
Option "$HHXEnabled", "uz_hhx_aggroCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_aggroCounter_alwaysVisible", "OnOff", "uz_hhx_aggroCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_aggroCounter_style", "CounterStyle", "uz_hhx_aggroCounter_enabled"
TextField "$HHXFont", "uz_hhx_aggroCounter_font", "uz_hhx_aggroCounter_enabled"
Option "$HHXFontColor", "uz_hhx_aggroCounter_fontColor", "FontColor", "uz_hhx_aggroCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_aggroCounter_fontScale", .01, 4., .05, 2, "uz_hhx_aggroCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_aggroCounter_barDirection", "BarDirection", "uz_hhx_aggroCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_aggroCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_aggroCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_aggroCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosX", "uz_hhx_aggroCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosY", "uz_hhx_aggroCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXScale", "uz_hhx_aggroCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_aggroCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_aggroCounter_bg_nhm_ref", "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosX", "uz_hhx_aggroCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosY", "uz_hhx_aggroCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXScale", "uz_hhx_aggroCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_aggroCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_aggroCounter_hlm_required", "OnOff", "uz_hhx_aggroCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_aggroCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosX", "uz_hhx_aggroCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosY", "uz_hhx_aggroCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXScale", "uz_hhx_aggroCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_aggroCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_aggroCounter_bg_hlm_ref", "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosX", "uz_hhx_aggroCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXPosY", "uz_hhx_aggroCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_aggroCounter_enabled"
Slider "$HHXScale", "uz_hhx_aggroCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_aggroCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetAggroCounter", "uz_hhx_options_reset_nhm_aggroCounter"
SafeCommand "$HHXHHResetAggroCounter", "uz_hhx_options_reset_hlm_aggroCounter"
}
OptionMenu "HHXAirCounter" {
Title "$HHXAirCounter"
Option "$HHXEnabled", "uz_hhx_airCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_airCounter_alwaysVisible", "OnOff", "uz_hhx_airCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_airCounter_style", "CounterStyle", "uz_hhx_airCounter_enabled"
TextField "$HHXFont", "uz_hhx_airCounter_font", "uz_hhx_airCounter_enabled"
Option "$HHXFontColor", "uz_hhx_airCounter_fontColor", "FontColor", "uz_hhx_airCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_airCounter_fontScale", .01, 4., .05, 2, "uz_hhx_airCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_airCounter_barDirection", "BarDirection", "uz_hhx_airCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_airCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_airCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_airCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXScale", "uz_hhx_airCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_airCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_airCounter_bg_nhm_ref", "uz_hhx_airCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXScale", "uz_hhx_airCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_airCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_airCounter_hlm_required", "OnOff", "uz_hhx_airCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_airCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXScale", "uz_hhx_airCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_airCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_airCounter_bg_hlm_ref", "uz_hhx_airCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_airCounter_enabled"
Slider "$HHXScale", "uz_hhx_airCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_airCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetAirCounter", "uz_hhx_options_reset_nhm_airCounter"
SafeCommand "$HHXHHResetAirCounter", "uz_hhx_options_reset_hlm_airCounter"
}
OptionMenu "HHXAirToxicityCounter" {
Title "$HHXAirToxicityCounter"
Option "$HHXEnabled", "uz_hhx_airToxicityCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_airToxicityCounter_alwaysVisible", "OnOff", "uz_hhx_airToxicityCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_airToxicityCounter_style", "CounterStyle", "uz_hhx_airToxicityCounter_enabled"
TextField "$HHXFont", "uz_hhx_airToxicityCounter_font", "uz_hhx_airToxicityCounter_enabled"
Option "$HHXFontColor", "uz_hhx_airToxicityCounter_fontColor", "FontColor", "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_airToxicityCounter_fontScale", .01, 4., .05, 2, "uz_hhx_airToxicityCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_airToxicityCounter_barDirection", "BarDirection", "uz_hhx_airToxicityCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_airToxicityCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_airToxicityCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_airToxicityCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airToxicityCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airToxicityCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXScale", "uz_hhx_airToxicityCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_airToxicityCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_airToxicityCounter_bg_nhm_ref", "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airToxicityCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airToxicityCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXScale", "uz_hhx_airToxicityCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_airToxicityCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_airToxicityCounter_hlm_required", "OnOff", "uz_hhx_airToxicityCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_airToxicityCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airToxicityCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airToxicityCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXScale", "uz_hhx_airToxicityCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_airToxicityCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_airToxicityCounter_bg_hlm_ref", "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosX", "uz_hhx_airToxicityCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXPosY", "uz_hhx_airToxicityCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_airToxicityCounter_enabled"
Slider "$HHXScale", "uz_hhx_airToxicityCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_airToxicityCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetAirToxicityCounter", "uz_hhx_options_reset_nhm_airToxicityCounter"
SafeCommand "$HHXHHResetAirToxicityCounter", "uz_hhx_options_reset_hlm_airToxicityCounter"
}
OptionMenu "HHXAlcoholCounter" {
Title "$HHXAlcoholCounter"
Option "$HHXEnabled", "uz_hhx_alcoholCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_alcoholCounter_alwaysVisible", "OnOff", "uz_hhx_alcoholCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_alcoholCounter_style", "CounterStyle", "uz_hhx_alcoholCounter_enabled"
TextField "$HHXFont", "uz_hhx_alcoholCounter_font", "uz_hhx_alcoholCounter_enabled"
Option "$HHXFontColor", "uz_hhx_alcoholCounter_fontColor", "FontColor", "uz_hhx_alcoholCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_alcoholCounter_fontScale", .01, 4., .05, 2, "uz_hhx_alcoholCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_alcoholCounter_barDirection", "BarDirection", "uz_hhx_alcoholCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_alcoholCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_alcoholCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_alcoholCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosX", "uz_hhx_alcoholCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosY", "uz_hhx_alcoholCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXScale", "uz_hhx_alcoholCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_alcoholCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_alcoholCounter_bg_nhm_ref", "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosX", "uz_hhx_alcoholCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosY", "uz_hhx_alcoholCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXScale", "uz_hhx_alcoholCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_alcoholCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_alcoholCounter_hlm_required", "OnOff", "uz_hhx_alcoholCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_alcoholCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosX", "uz_hhx_alcoholCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosY", "uz_hhx_alcoholCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXScale", "uz_hhx_alcoholCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_alcoholCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_alcoholCounter_bg_hlm_ref", "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosX", "uz_hhx_alcoholCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXPosY", "uz_hhx_alcoholCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_alcoholCounter_enabled"
Slider "$HHXScale", "uz_hhx_alcoholCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_alcoholCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetAlcoholCounter", "uz_hhx_options_reset_nhm_alcoholCounter"
SafeCommand "$HHXHHResetAlcoholCounter", "uz_hhx_options_reset_hlm_alcoholCounter"
}
OptionMenu "HHXAmmoCounters" {
Title "$HHXAmmoCounters"
Option "$HHXEnabled", "uz_hhx_ammoCounters_enabled", "OnOff"
StaticText ""
TextField "$HHXFont", "uz_hhx_ammoCounters_font", "uz_hhx_ammoCounters_enabled"
Option "$HHXFontColor", "uz_hhx_ammoCounters_fontColor", "FontColor", "uz_hhx_ammoCounters_enabled"
Slider "$HHXFontScale", "uz_hhx_ammoCounters_fontScale", .01, 4., .05, 2, "uz_hhx_ammoCounters_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_ammoCounters_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosX", "uz_hhx_ammoCounters_nhm_posX", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosY", "uz_hhx_ammoCounters_nhm_posY", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScale", "uz_hhx_ammoCounters_nhm_scale", .01, 4., .05, 2, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScaleX", "uz_hhx_ammoCounters_nhm_xScale", -2., 2., .05, 2, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScaleY", "uz_hhx_ammoCounters_nhm_yScale", -2., 2., .05, 2, "uz_hhx_ammoCounters_enabled"
ScaleSlider "$HHXWrapLength", "uz_hhx_ammoCounters_nhm_wrapLength", 0, 32, 1, "$HHXAuto"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_ammoCounters_bg_nhm_ref", "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosX", "uz_hhx_ammoCounters_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosY", "uz_hhx_ammoCounters_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScale", "uz_hhx_ammoCounters_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_ammoCounters_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_ammoCounters_hlm_required", "OnOff", "uz_hhx_ammoCounters_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_ammoCounters_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosX", "uz_hhx_ammoCounters_hlm_posX", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosY", "uz_hhx_ammoCounters_hlm_posY", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScale", "uz_hhx_ammoCounters_hlm_scale", .01, 4., .05, 2, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScaleX", "uz_hhx_ammoCounters_hlm_xScale", -2., 2., .05, 2, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScaleY", "uz_hhx_ammoCounters_hlm_yScale", -2., 2., .05, 2, "uz_hhx_ammoCounters_enabled"
ScaleSlider "$HHXWrapLength", "uz_hhx_ammoCounters_hlm_wrapLength", 0, 32, 1, "$HHXAuto"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_ammoCounters_bg_hlm_ref", "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosX", "uz_hhx_ammoCounters_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXPosY", "uz_hhx_ammoCounters_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_ammoCounters_enabled"
Slider "$HHXScale", "uz_hhx_ammoCounters_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_ammoCounters_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetAmmoCounters", "uz_hhx_options_reset_nhm_ammoCounters"
SafeCommand "$HHXHHResetAmmoCounters", "uz_hhx_options_reset_hlm_ammoCounters"
}
OptionMenu "HHXArmour" {
Title "$HHXArmour"
Option "$HHXEnabled", "uz_hhx_armour_enabled", "OnOff"
StaticText ""
TextField "$HHXFont", "uz_hhx_armour_font", "uz_hhx_armour_enabled"
Slider "$HHXFontScale", "uz_hhx_armour_fontScale", .01, 4., .05, 2, "uz_hhx_armour_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_armour_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosX", "uz_hhx_armour_nhm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_nhm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_nhm_scale", .01, 4., .05, 2, "uz_hhx_armour_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_armour_bg_nhm_ref", "uz_hhx_armour_enabled"
Slider "$HHXPosX", "uz_hhx_armour_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_armour_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_armour_hlm_required", "OnOff", "uz_hhx_armour_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_armour_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosX", "uz_hhx_armour_hlm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_hlm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_hlm_scale", .01, 4., .05, 2, "uz_hhx_armour_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_armour_bg_hlm_ref", "uz_hhx_armour_enabled"
Slider "$HHXPosX", "uz_hhx_armour_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_armour_enabled"
StaticText ""
SubMenu "$HHXAdvanced", "HHXArmourAdvanced"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetArmour", "uz_hhx_options_reset_nhm_armour"
SafeCommand "$HHXHHResetArmour", "uz_hhx_options_reset_hlm_armour"
}
OptionMenu "HHXArmourAdvanced" {
Title "$HHXAdvanced"
StaticText ""
StaticText "$HHXArmourHelmet", 1
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXPosX", "uz_hhx_armour_helmet_nhm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_helmet_nhm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_helmet_nhm_scale", .01, 4., .05, 2, "uz_hhx_disabled"
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Slider "$HHXPosX", "uz_hhx_armour_helmet_hlm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_helmet_hlm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_helmet_hlm_scale", .01, 4., .05, 2, "uz_hhx_disabled"
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetArmour", "uz_hhx_options_reset_nhm_armourHelmet"
SafeCommand "$HHXHHResetArmour", "uz_hhx_options_reset_hlm_armourHelmet"
StaticText ""
StaticText ""
StaticText "$HHXArmourBody", 1
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXPosX", "uz_hhx_armour_body_nhm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_body_nhm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_body_nhm_scale", .01, 4., .05, 2, "uz_hhx_disabled"
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Slider "$HHXPosX", "uz_hhx_armour_body_hlm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_body_hlm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_body_hlm_scale", .01, 4., .05, 2, "uz_hhx_disabled"
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetArmour", "uz_hhx_options_reset_nhm_armourBody"
SafeCommand "$HHXHHResetArmour", "uz_hhx_options_reset_hlm_armourBody"
StaticText ""
StaticText ""
StaticText "$HHXArmourBoots", 1
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXPosX", "uz_hhx_armour_boots_nhm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_boots_nhm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_boots_nhm_scale", .01, 4., .05, 2, "uz_hhx_disabled"
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Slider "$HHXPosX", "uz_hhx_armour_boots_hlm_posX", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXPosY", "uz_hhx_armour_boots_hlm_posY", -400, 400, 1, 0, "uz_hhx_armour_enabled"
Slider "$HHXScale", "uz_hhx_armour_boots_hlm_scale", .01, 4., .05, 2, "uz_hhx_disabled"
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetArmour", "uz_hhx_options_reset_nhm_armourBoots"
SafeCommand "$HHXHHResetArmour", "uz_hhx_options_reset_hlm_armourBoots"
}
OptionMenu "HHXBerserkCounter" {
Title "$HHXBerserkCounter"
Option "$HHXEnabled", "uz_hhx_berserkCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_berserkCounter_alwaysVisible", "OnOff", "uz_hhx_berserkCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_berserkCounter_style", "CounterStyle", "uz_hhx_berserkCounter_enabled"
TextField "$HHXFont", "uz_hhx_berserkCounter_font", "uz_hhx_berserkCounter_enabled"
Option "$HHXFontColor", "uz_hhx_berserkCounter_fontColor", "FontColor", "uz_hhx_berserkCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_berserkCounter_fontScale", .01, 4., .05, 2, "uz_hhx_berserkCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_berserkCounter_barDirection", "BarDirection", "uz_hhx_berserkCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_berserkCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_berserkCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_berserkCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_berserkCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_berserkCounter_bg_nhm_ref", "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_berserkCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_berserkCounter_hlm_required", "OnOff", "uz_hhx_berserkCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_berserkCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_berserkCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_berserkCounter_bg_hlm_ref", "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_berserkCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_berserkCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetBerserkCounter", "uz_hhx_options_reset_nhm_berserkCounter"
SafeCommand "$HHXHHResetBerserkCounter", "uz_hhx_options_reset_hlm_berserkCounter"
}
OptionMenu "HHXBerserkCooldownCounter" {
Title "$HHXBerserkCooldownCounter"
Option "$HHXEnabled", "uz_hhx_berserkCooldownCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_berserkCooldownCounter_alwaysVisible", "OnOff", "uz_hhx_berserkCooldownCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_berserkCooldownCounter_style", "CounterStyle", "uz_hhx_berserkCooldownCounter_enabled"
TextField "$HHXFont", "uz_hhx_berserkCooldownCounter_font", "uz_hhx_berserkCooldownCounter_enabled"
Option "$HHXFontColor", "uz_hhx_berserkCooldownCounter_fontColor", "FontColor", "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_berserkCooldownCounter_fontScale", .01, 4., .05, 2, "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_berserkCooldownCounter_barDirection", "BarDirection", "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_berserkCooldownCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_berserkCooldownCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCooldownCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCooldownCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCooldownCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_berserkCooldownCounter_bg_nhm_ref", "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCooldownCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCooldownCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCooldownCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_berserkCooldownCounter_hlm_required", "OnOff", "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_berserkCooldownCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCooldownCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCooldownCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCooldownCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_berserkCooldownCounter_bg_hlm_ref", "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosX", "uz_hhx_berserkCooldownCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXPosY", "uz_hhx_berserkCooldownCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_berserkCooldownCounter_enabled"
Slider "$HHXScale", "uz_hhx_berserkCooldownCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_berserkCooldownCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetBerserkCooldownCounter", "uz_hhx_options_reset_nhm_berserkCooldownCounter"
SafeCommand "$HHXHHResetBerserkCooldownCounter", "uz_hhx_options_reset_hlm_berserkCooldownCounter"
}
OptionMenu "HHXBloodBagCounter" {
Title "$HHXBloodBagCounter"
Option "$HHXEnabled", "uz_hhx_bloodBagCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_bloodBagCounter_alwaysVisible", "OnOff", "uz_hhx_bloodBagCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_bloodBagCounter_style", "CounterStyle", "uz_hhx_bloodBagCounter_enabled"
TextField "$HHXFont", "uz_hhx_bloodBagCounter_font", "uz_hhx_bloodBagCounter_enabled"
Option "$HHXFontColor", "uz_hhx_bloodBagCounter_fontColor", "FontColor", "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_bloodBagCounter_fontScale", .01, 4., .05, 2, "uz_hhx_bloodBagCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_bloodBagCounter_barDirection", "BarDirection", "uz_hhx_bloodBagCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_bloodBagCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_bloodBagCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bloodBagCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodBagCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodBagCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodBagCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_bloodBagCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bloodBagCounter_bg_nhm_ref", "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodBagCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodBagCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodBagCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_bloodBagCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_bloodBagCounter_hlm_required", "OnOff", "uz_hhx_bloodBagCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bloodBagCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodBagCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodBagCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodBagCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_bloodBagCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bloodBagCounter_bg_hlm_ref", "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodBagCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodBagCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_bloodBagCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodBagCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_bloodBagCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetbloodBagCounter", "uz_hhx_options_reset_nhm_bloodBagCounter"
SafeCommand "$HHXHHResetbloodBagCounter", "uz_hhx_options_reset_hlm_bloodBagCounter"
}
OptionMenu "HHXBloodLossCounter" {
Title "$HHXBloodLossCounter"
Option "$HHXEnabled", "uz_hhx_bloodLossCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_bloodLossCounter_alwaysVisible", "OnOff", "uz_hhx_bloodLossCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_bloodLossCounter_style", "CounterStyle", "uz_hhx_bloodLossCounter_enabled"
TextField "$HHXFont", "uz_hhx_bloodLossCounter_font", "uz_hhx_bloodLossCounter_enabled"
Option "$HHXFontColor", "uz_hhx_bloodLossCounter_fontColor", "FontColor", "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_bloodLossCounter_fontScale", .01, 4., .05, 2, "uz_hhx_bloodLossCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_bloodLossCounter_barDirection", "BarDirection", "uz_hhx_bloodLossCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_bloodLossCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_bloodLossCounter_enabled"
StaticText ""
Option "$HHXUnits", "uz_hhx_bloodLossCounter_units", "FluidUnit", "uz_hhx_bloodLossCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bloodLossCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodLossCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodLossCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodLossCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_bloodLossCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bloodLossCounter_bg_nhm_ref", "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodLossCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodLossCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodLossCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_bloodLossCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_bloodLossCounter_hlm_required", "OnOff", "uz_hhx_bloodLossCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bloodLossCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodLossCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodLossCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodLossCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_bloodLossCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bloodLossCounter_bg_hlm_ref", "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodLossCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodLossCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_bloodLossCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodLossCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_bloodLossCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetBloodLossCounter", "uz_hhx_options_reset_nhm_bloodLossCounter"
SafeCommand "$HHXHHResetBloodLossCounter", "uz_hhx_options_reset_hlm_bloodLossCounter"
}
OptionMenu "HHXBloodPressureCounter" {
Title "$HHXBloodPressureCounter"
Option "$HHXEnabled", "uz_hhx_bloodPressureCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_bloodPressureCounter_alwaysVisible", "OnOff", "uz_hhx_bloodPressureCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_bloodPressureCounter_style", "CounterStyle", "uz_hhx_bloodPressureCounter_enabled"
TextField "$HHXFont", "uz_hhx_bloodPressureCounter_font", "uz_hhx_bloodPressureCounter_enabled"
Option "$HHXFontColor", "uz_hhx_bloodPressureCounter_fontColor", "FontColor", "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_bloodPressureCounter_fontScale", .01, 4., .05, 2, "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_bloodPressureCounter_barDirection", "BarDirection", "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_bloodPressureCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bloodPressureCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodPressureCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodPressureCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodPressureCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bloodPressureCounter_bg_nhm_ref", "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodPressureCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodPressureCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodPressureCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_bloodPressureCounter_hlm_required", "OnOff", "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bloodPressureCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodPressureCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodPressureCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodPressureCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bloodPressureCounter_bg_hlm_ref", "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bloodPressureCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bloodPressureCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_bloodPressureCounter_enabled"
Slider "$HHXScale", "uz_hhx_bloodPressureCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_bloodPressureCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetBloodPressureCounter", "uz_hhx_options_reset_nhm_bloodPressureCounter"
SafeCommand "$HHXHHResetBloodPressureCounter", "uz_hhx_options_reset_hlm_bloodPressureCounter"
}
OptionMenu "HHXBluesCounter" {
Title "$HHXBluesCounter"
Option "$HHXEnabled", "uz_hhx_bluesCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_bluesCounter_alwaysVisible", "OnOff", "uz_hhx_bluesCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_bluesCounter_style", "CounterStyle", "uz_hhx_bluesCounter_enabled"
TextField "$HHXFont", "uz_hhx_bluesCounter_font", "uz_hhx_bluesCounter_enabled"
Option "$HHXFontColor", "uz_hhx_bluesCounter_fontColor", "FontColor", "uz_hhx_bluesCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_bluesCounter_fontScale", .01, 4., .05, 2, "uz_hhx_bluesCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_bluesCounter_barDirection", "BarDirection", "uz_hhx_bluesCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_bluesCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_bluesCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bluesCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bluesCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bluesCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXScale", "uz_hhx_bluesCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_bluesCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bluesCounter_bg_nhm_ref", "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bluesCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bluesCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXScale", "uz_hhx_bluesCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_bluesCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_bluesCounter_hlm_required", "OnOff", "uz_hhx_bluesCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_bluesCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bluesCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bluesCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXScale", "uz_hhx_bluesCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_bluesCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_bluesCounter_bg_hlm_ref", "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosX", "uz_hhx_bluesCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXPosY", "uz_hhx_bluesCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_bluesCounter_enabled"
Slider "$HHXScale", "uz_hhx_bluesCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_bluesCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetBluesCounter", "uz_hhx_options_reset_nhm_bluesCounter"
SafeCommand "$HHXHHResetBluesCounter", "uz_hhx_options_reset_hlm_bluesCounter"
}
OptionMenu "HHXBurnCounter" {
Title "$HHXBurnCounter"
Option "$HHXEnabled", "uz_hhx_burnCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_burnCounter_alwaysVisible", "OnOff", "uz_hhx_burnCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_burnCounter_style", "CounterStyle", "uz_hhx_burnCounter_enabled"
TextField "$HHXFont", "uz_hhx_burnCounter_font", "uz_hhx_burnCounter_enabled"
Option "$HHXFontColor", "uz_hhx_burnCounter_fontColor", "FontColor", "uz_hhx_burnCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_burnCounter_fontScale", .01, 4., .05, 2, "uz_hhx_burnCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_burnCounter_barDirection", "BarDirection", "uz_hhx_burnCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_burnCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_burnCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_burnCounter_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXPosX", "uz_hhx_burnCounter_nhm_posX", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXPosY", "uz_hhx_burnCounter_nhm_posY", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXScale", "uz_hhx_burnCounter_nhm_scale", .01, 4., .05, 2, "uz_hhx_burnCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_burnCounter_bg_nhm_ref", "uz_hhx_burnCounter_enabled"
Slider "$HHXPosX", "uz_hhx_burnCounter_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXPosY", "uz_hhx_burnCounter_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXScale", "uz_hhx_burnCounter_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_burnCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_burnCounter_hlm_required", "OnOff", "uz_hhx_burnCounter_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_burnCounter_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXPosX", "uz_hhx_burnCounter_hlm_posX", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXPosY", "uz_hhx_burnCounter_hlm_posY", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXScale", "uz_hhx_burnCounter_hlm_scale", .01, 4., .05, 2, "uz_hhx_burnCounter_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_burnCounter_bg_hlm_ref", "uz_hhx_burnCounter_enabled"
Slider "$HHXPosX", "uz_hhx_burnCounter_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXPosY", "uz_hhx_burnCounter_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_burnCounter_enabled"
Slider "$HHXScale", "uz_hhx_burnCounter_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_burnCounter_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetBurnCounter", "uz_hhx_options_reset_nhm_burnCounter"
SafeCommand "$HHXHHResetBurnCounter", "uz_hhx_options_reset_hlm_burnCounter"
}
OptionMenu "HHXCompass" {
Title "$HHXCompass"
Option "$HHXEnabled", "uz_hhx_compass_enabled", "OnOff"
StaticText ""
TextField "$HHXFont", "uz_hhx_compass_font", "uz_hhx_compass_enabled"
Slider "$HHXFontScale", "uz_hhx_compass_fontScale", .01, 4., .05, 2, "uz_hhx_compass_enabled"
StaticText ""
StaticText ""
StaticText "$HHXNHM", 1
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_compass_nhm_hudLevel", 0, 2, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXPosX", "uz_hhx_compass_nhm_posX", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXPosY", "uz_hhx_compass_nhm_posY", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXScale", "uz_hhx_compass_nhm_scale", .01, 4., .05, 2, "uz_hhx_compass_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_compass_bg_nhm_ref", "uz_hhx_compass_enabled"
Slider "$HHXPosX", "uz_hhx_compass_bg_nhm_posX", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXPosY", "uz_hhx_compass_bg_nhm_posY", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXScale", "uz_hhx_compass_bg_nhm_scale", .01, 4., .05, 2, "uz_hhx_compass_enabled"
StaticText ""
StaticText ""
StaticText "$HHXHLM", 1
StaticText "$HHXHHelmetRequired"
StaticText ""
Option "$HHXHelmetRequired", "uz_hhx_compass_hlm_required", "OnOff", "uz_hhx_compass_enabled"
StaticText ""
Slider "$HHXHUDLevel", "uz_hhx_compass_hlm_hudLevel", 0, 2, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXPosX", "uz_hhx_compass_hlm_posX", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXPosY", "uz_hhx_compass_hlm_posY", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXScale", "uz_hhx_compass_hlm_scale", .01, 4., .05, 2, "uz_hhx_compass_enabled"
StaticText ""
TextField "$HHXBgRef", "uz_hhx_compass_bg_hlm_ref", "uz_hhx_compass_enabled"
Slider "$HHXPosX", "uz_hhx_compass_bg_hlm_posX", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXPosY", "uz_hhx_compass_bg_hlm_posY", -400, 400, 1, 0, "uz_hhx_compass_enabled"
Slider "$HHXScale", "uz_hhx_compass_bg_hlm_scale", .01, 4., .05, 2, "uz_hhx_compass_enabled"
StaticText ""
StaticText ""
StaticText "$HHXDangerZone", "Red"
SafeCommand "$HHXResetCompass", "uz_hhx_options_reset_nhm_compass"
SafeCommand "$HHXHHResetCompass", "uz_hhx_options_reset_hlm_compass"
}
OptionMenu "HHXCurseCounter" {
Title "$HHXCurseCounter"
Option "$HHXEnabled", "uz_hhx_curseCounter_enabled", "OnOff"
StaticText ""
Option "$HHXAlwaysVisible", "uz_hhx_curseCounter_alwaysVisible", "OnOff", "uz_hhx_curseCounter_enabled"
Option "$HHXCounterStyle", "uz_hhx_curseCounter_style", "CounterStyle", "uz_hhx_curseCounter_enabled"
TextField "$HHXFont", "uz_hhx_curseCounter_font", "uz_hhx_curseCounter_enabled"
Option "$HHXFontColor", "uz_hhx_curseCounter_fontColor", "FontColor", "uz_hhx_curseCounter_enabled"
Slider "$HHXFontScale", "uz_hhx_curseCounter_fontScale", .01, 4., .05, 2, "uz_hhx_curseCounter_enabled"
StaticText ""
Option "$HHXBarDirection", "uz_hhx_curseCounter_barDirection", "BarDirection", "uz_hhx_curseCounter_enabled"
StaticText ""
Slider "$HHXMaxValue", "uz_hhx_curseCounter_maxValue", 0, 1000, 1, 0, "uz_hhx_curseCounter_enabled"