-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathThioleLootFilter.filter
975 lines (807 loc) · 29.5 KB
/
ThioleLootFilter.filter
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
###BETA VERSION 1.0.0.1-8
#Please test and let me know via pm on reddit /u/brute_force or @Thiole in game if i am online
# Basic
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#------------------------------------------------------------------
#Fishing Rods First OFC
Show
Class Fishing Rods
SetTextColor 0 0 0
SetBorderColor 0 0 0
SetBackgroundColor 255 255 255
Show
Class "Quest Items"
#####Shows better currency differently from lower currency for efficiency
##### skill gems
Show
Class "Active Skill Gems" "Support Skill Gems"
Quality >= 1
SetFontSize 28
SetTextColor 0 200 200
SetBorderColor 0 200 200
Show
Class "Active Skill Gems" "Support Skill Gems"
SetFontSize 30
SetTextColor 0 200 200
################################ chance bases###############################
Show
BaseType "Lapis Amulet" "Amber Amulet"
SetFontSize 25
SetBorderColor 255 0 255
Show
SocketGroup RGB BGR
SetFontSize 30
SetBorderColor 0 255 0
#Chance Bases
Show
BaseType "Prophecy Wand" "Leather Belt" "Occultist's Vestment" "Agate Amulet" "Gavel"
SetFontSize 30
Rarity Normal
SetBorderColor 255 0 255
#################
#Worth Picking up always
Show
Class "Divination"
BaseType "The Dapper Prodigy" "House of Mirrors" "Avenger" "Time-Lost Relic" "Wealth and Power" "The Wind" "Celestial Justicar" "Dark Mage" "Doctor" "Fiend" "The King's Heart" "The Queen" "The Artist" "The Last One Standing""The Dragon's Heart" "The Brittle Emperor" "The Fletcher" "Hunter's Reward" "The Last One Standing" "The Thaumaturgist" "The Artist" "The Aesthete" "Bowyer's Dream" "The Ethereal" "The Vast" "The Warlord" "The Offering" "The Body" "Birth of the Three" "The Sigil" "The Trial" "Death" "Gift of the Gemling Queen" "The Conduit""The Siren" "The One With All" "The Flora's Gift" "Encroaching Darkness" "Doedre's Madness" "Humility" "Three Faces in the Dark" "The Sun" "The Summoner" "Vinia's Token" "The Cataclysm" "The Union""The Scarred Meadow" "Lucky Connections" "Jack in the Box" "The Inventor" "Hope" "The Hoarder" "Gemcutter's Promise" "The Explorer" "Coveted Possession" "Chaotic Disposition" "The Battle Born" "Anarchy's Price" "Assassin's Favour" "Audacity" "Blind Venture" "The Cartographer" "The Gentleman" "The Mercenary" "The Fox""Grave Knowledge" "The Doppelganger" "The Fox" "Hubris" "Scholar of the Seas" "The Tower" "Volatile Power" "The Traitor" "Lost Worlds"
SetFontSize 45
SetBorderColor 283 100 78
SetTextColor 283 100 78
Show
Class "Divination"
SetTextColor 200 200 130
SetBorderColor 200 200 130
SetBackgroundColor 0 0 0
SetFontSize 32
################currency highlighting
Show
BaseType "Mirror of Kalandra" "Exalted Orb" "Divine Orb" "Orb of Regret" "Eternal Orb" "Regal Orb"
SetTextColor 200 200 130
SetBorderColor 200 200 130
SetBackgroundColor 0 0 0
SetFontSize 32
PlayAlertSound 6 250
Show
BaseType "Gemcutter's Prism" "Chaos Orb" "Orb of Fusing" "Orb of Alchemy"
SetBorderColor 200 200 130
SetTextColor 200 200 130
SetFontSize 30
PlayAlertSound 6 250
Show
BaseType "Chromatic Orb"
SetBorderColor 0 255 0
SetTextColor 200 200 130
Show
BaseType "Cartographer's Chisel"
SetBorderColor 0 0 255
SetTextColor 200 200 130
Show
Class Currency
SetTextColor 200 200 130
SetFontSize 30
SetBackgroundColor 0 0 0
#############################
#unique Weapon slot start
#staves / wands
Show
BaseType "Judgement Staff" "Long Staff" "Vile Staff" "Imperial Staff" "Prophecy Wand" "Spiraled Wand"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
Show
Class "Staves"
Rarity Unique
DropLevel = 48
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#Claws / Daggers
Show
BaseType "Slaughter Knife" "Imperial Skean" "Thresher Claw"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#Maces / Sceptres / Mauls / Axes
Show
BaseType "Void Sceptre" "Siege Axe" "Gavel"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#Swords
#Bows
Show
BaseType "Spine Bow" "Imperial Bow"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#Body Armor
Show
BaseType "Simple Robe" "Full Wyrmscale" "Varnished Coat" "Occultist's Vestment" "Glorious Plate" "Sacrificial Garb"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#boots
Show
BaseType "Conjurer Boots"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#gloves
Show
BaseType "Vaal Gauntlets" "Strapped Mitts" "Conjurer Gloves" "Deerskin Gloves" "Murder Mitts"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#helm
Show
BaseType "Sinner Tricorne" "Ursine Pelt" "Ezomyte Burgonet" "Great Crown"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#######shields
Show
BaseType "Champion Kite Shield" "Archon Kite Shield" "Titanium Spirit Shield" "Mosaic Kite Shield" "Branded Kite Shield"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 1 250
#######Amulet / Ring/ Belt
Show
BaseType "Amber Amulet" "Onyx Amulet" "Agate Amulet" "Chain Belt"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 3 250
Show
BaseType "Gold Ring" "Sapphire Ring" "Prismatic Ring" "Amethyst Ring" "Paua Ring"
Rarity Unique
SetTextColor 175 100 40
SetBorderColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 3 250
#Utility
Show
Class Jewel "Utility Flask"
Rarity Unique
SetTextColor 175 100 40
SetBackgroundColor 0 0 0
PlayAlertSound 3 250
Show
Class Jewel
SetBorderColor 255 0 255
################### LEVEL BASED UNIQUE HIGHLIGHTING #############################
Show
BaseType "Steelscale Gauntlets" "Prophet Crown" "Leather Cap" "Pine Buckler"
Rarity Unique
ItemLevel < 70
SetTextColor 175 100 40
SetBorderColor 0 0 0
SetBackgroundColor 175 100 40
####
Show
Rarity Unique
SetFontSize 30
SetTextColor 175 100 40
SetBackgroundColor 0 0 0
###########RARES#####
#Global Rules
Show
Class Amulets Rings Belt
Rarity Rare
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 60 0 200
PlayAlertSound 1 250
Show
Class "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Itemlevel >=84
SetBackgroundColor 100 40 40 125
PlayAlertSound 3 250
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield"
Itemlevel >= 83
SetBackgroundColor 100 40 40 125
PlayAlertSound 3 250
Show
BaseType "Sai" "Moon Staff" "Maraketh Bow" "Tiger Hook" "Morning Star" "Tornado Wand" "Prophecy Wand" "Imbued Wand" "Infernal Sword" "Void Axe" "Jewelled Foil" "Harpy Rapier" "Judgement Staff" "Void Sceptre" "Midnight Blade" "Eternal Sword" "Harbinger Bow" "Imperial Claw" "Ambusher" "Platinum Kris" "Terror Claw" "Imperial Skean" "Demon Dagger" "Infernal Axe"
Rarity Rare
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
##Level Scaling Rules
##low 60 bases###############################
Show
BaseType "Terror Maul" "Vaal Rapier" "Imperial Staff" "Carnal Sceptre" "Imperial Bow" "Vaal Claw" "Thicket Bow" "Vaal Hatchet" "Royal Axe" "Nightmare Mace" "Vaal Blade" "Vaal Sceptre"
Rarity Rare
ItemLevel <= 70
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
Show
BaseType "Terror Maul" "Vaal Rapier" "Imperial Staff" "Carnal Sceptre" "Imperial Bow" "Vaal Claw" "Thicket Bow" "Vaal Hatchet" "Royal Axe" "Nightmare Mace" "Vaal Blade" "Vaal Sceptre"
Rarity Rare
ItemLevel <= 75
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
#####
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 75
DropLevel >= 67
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
DropLevel >= 68
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
#######65-68 bases
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 73
DropLevel > 65
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
DropLevel > 65
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
########## 60-65 bases
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 68
DropLevel > 60
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 73
DropLevel > 60
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
##### 55-60 bases
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 64
DropLevel > 55
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 70
DropLevel > 55
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
## 50-55 bases
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 58
DropLevel > 50
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 65
DropLevel > 50
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
#####46-50 bases
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 54
DropLevel > 46
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 60
DropLevel > 46
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
####42 - 48 bases
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 48
DropLevel > 42
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 51
DropLevel > 42
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
###38-42
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 42
DropLevel > 38
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 48
DropLevel > 38
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
####33-38
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 39
DropLevel > 33
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 42
DropLevel > 33
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
#### 27 - 32
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 32
DropLevel > 27
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 38
DropLevel > 27
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
##### 22- 27
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 27
DropLevel > 22
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 31
DropLevel > 22
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
########18-22
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 22
DropLevel > 18
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 27
DropLevel > 18
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
##12-18
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 18
DropLevel > 12
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 24
DropLevel > 12
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
###### 8-12
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 12
DropLevel > 8
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 16
DropLevel > 8
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
#####1-8
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 8
DropLevel >= 0
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 100 0 200
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
Rarity Rare
ItemLevel <= 12
DropLevel >= 0
SetFontSize 30
SetTextColor 255 255 0
SetBorderColor 255 255 0
SetBackgroundColor 0 0 0
###Rare highlighting
Show
Rarity Rare
SetFontSize 27
SetTextColor 255 255 0 170
SetBorderColor 255 255 0
SetBackgroundColor 100 40 40 200
#### Flask Highlighting
Show
Class Flask
Quality > 13
SetFontSize 25
SetBorderColor 255 255 255
Show
Class Flask
Quality > 5
SetFontSize 25
Show
Class "Utility Flask"
SetFontSize 30
###### RGB Highlighting
Show
SocketGroup RGB BGR
SetFontSize 30
SetTextColor 0 255 0
SetBorderColor 0 255 0
########Chisel Recipe Highlighting
Show
BaseType "Gavel" "Rock Breaker" "Stone Hammer"
Rarity Normal
SetFontSize 25
SetBorderColor 0 0 255
Show
BaseType "Gavel" "Rock Breaker" "Stone Hammer"
Rarity Magic
Quality > 15
SetFontSize 25
SetBorderColor 0 0 255
####### 6S/5L
Show
LinkedSockets >= 5
SetBorderColor 255 0 0
SetFontSize 30
Show
Sockets 6
SetBorderColor 255 0 0
SetFontSize 30
Show
LinkedSockets >= 3
ItemLevel < 20
########################### Normal Show Rules
Show
BaseType "Sai" "Moon Staff" "Maraketh Bow" "Tiger Hook" "Morning Star" "Tornado Wand" "Prophecy Wand" "Imbued Wand" "Infernal Sword" "Void Axe" "Jewelled Foil" "Harpy Rapier" "Judgement Staff" "Void Sceptre" "Midnight Blade" "Eternal Sword" "Harbinger Bow" "Imperial Claw" "Ambusher" "Platinum Kris" "Terror Claw" "Imperial Skean" "Demon Dagger" "Infernal Axe"
SetFontSize 30
### Show these whites up to 70
Show
BaseType "Terror Maul" "Vaal Rapier" "Imperial Staff" "Carnal Sceptre" "Imperial Bow" "Vaal Claw" "Thicket Bow" "Vaal Hatchet" "Royal Axe" "Nightmare Mace" "Vaal Blade" "Vaal Sceptre"
Rarity Normal
SetFontSize 30
ItemLevel <= 70
###### T1 Bases up to forever
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
DropLevel >= 68
Rarity Normal
SetFontSize 30
### T2 Bases up to 70
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 70
DropLevel > 64
Rarity Normal
SetFontSize 30
###### T3 Bases up to 65
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 65
DropLevel > 59
Rarity Normal
SetFontSize 30
#### t4 Bases up to 60
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 60
DropLevel > 53
Rarity Normal
SetFontSize 30
###### T5 up to 56
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 56
DropLevel > 49
Rarity Normal
SetFontSize 30
##### t6 up to 50
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 50
DropLevel > 44
Rarity Normal
SetFontSize 30
##### t7 up to 45
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 45
DropLevel > 39
Rarity Normal
SetFontSize 30
##### t8 up to 39
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 39
DropLevel > 33
Rarity Normal
SetFontSize 30
##### t9 up to 34
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 34
DropLevel > 28
Rarity Normal
SetFontSize 30
#### t10 up to 30
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 30
DropLevel > 27
Rarity Normal
SetFontSize 30
#t11 up to 29
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 29
DropLevel > 21
Rarity Normal
SetFontSize 30
#t12 bases up to 27
Show
Class "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 27
DropLevel > 20
Rarity Normal
SetFontSize 30
#T13 Bases up to 21
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 21
DropLevel > 15
Rarity Normal
SetFontSize 29
#### t14 up to 17
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 17
DropLevel > 10
Rarity Normal
SetFontSize 30
####t15 up to 15
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 14
DropLevel > 7
Rarity Normal
SetFontSize 29
###t16 up to 10
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 10
DropLevel > 5
Rarity Normal
SetFontSize 29
####t17 up to 7
Show
Class "Body Armour" "Gloves" "Boots" "Belt" "Helm" "Shield" "Quiver" "Bow" "Staves" "Two Hand Axes" "Claw" "One Hand Axe" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Mace" "Two Hand Mace" "Two Hand Sword" "Dagger" "Sceptre"
ItemLevel <= 7
DropLevel >= 1
Rarity Normal
SetFontSize 29
##################### WHITES RULES DONE
#### Show rings at all levels for progression
Show
Class Ring Amulet
ItemLevel < 70
Show
Class Boots Gloves Helmet Shield Belt
Rarity Magic
SetFontSize 25
ItemLevel < 20
#### Cant get map based level highlighting to work, DropLevel does not work for maps
Show
Class "Map Fragments" "Maps"
##### Flask based level visibility
### Small Flask to ~ End of A1N, REQ level 0
Show
BaseType "Small Life Flask" "Small Mana Flask"
ItemLevel < 12
SetFontSize 30
SetBorderColor 255 255 255
#### Medium Ends midway through a2, medium starts dropping around the same time as large, REQ LEVEL 4
Show
BaseType "Medium Life Flask" "Medium Mana Flask"
ItemLevel < 19
SetFontSize 30
SetBorderColor 255 255 255
#### Large Ends around the same time, these make mediums basically obsolete, i only keep mediums on because of 3x vendor recipe for another large REQ LEVEL 14
Show
BaseType "Large Life Flask" "Large Mana Flask"
ItemLevel < 20
SetFontSize 30
SetBorderColor 255 255 255
#### Greater ends near the end of a2/beginning of a3 REQ LEVEL 18
Show
BaseType "Greater Life Flask" "Greater Mana Flask"
ItemLevel < 24
SetFontSize 30
SetBorderColor 255 255 255
#### Hides Midway through A3N REQ LEVEL 26
Show
BaseType "Grand Life Flask" "Grand Mana Flask"
ItemLevel < 34
SetFontSize 30
SetBorderColor 255 255 255
####Hides Near the end of Normal difficulty REQ LEVEL 34
Show
BaseType "Giant Life Flask" "Giant Mana Flask"
ItemLevel < 38
SetFontSize 30
SetBorderColor 255 255 255
####Hides somewhere at the start of cruel REQ LEVEL 37
Show
BaseType "Colossal Life Flask" "Colossal Mana Flask"
ItemLevel < 45
SetFontSize 30
SetBorderColor 255 255 255
####### Hides Midway through cruel REQ LEVEL 45
Show
BaseType "Sacred Life Flask" "Sacred Mana Flask"
ItemLevel < 49
SetFontSize 30
SetBorderColor 255 255 255
### REQ LEVEL 53
Show
BaseType "Hallowed Life Flask" "Hallowed Mana Flask"
ItemLevel < 58
SetFontSize 30
SetBorderColor 255 255 255
##### REQ LEVEL 60
Show
BaseType "Sanctified Life Flask" "Sanctified Mana Flask"
ItemLevel < 70
SetFontSize 30
SetBorderColor 255 255 255
### REQ LEVEL 65 and 70 Respectively 2 best bases in game, always show
Show
BaseType "Divine Life Flask" "Eternal Life Flask" "Divine Mana Flask" "Eternal Mana Flask"
SetFontSize 30
SetBorderColor 255 255 255
Hide
SetFontSize 20
SetBackgroundColor 0 0 0 50