-
-
Notifications
You must be signed in to change notification settings - Fork 493
/
Copy pathNeverSink's filter - 4-VERY-STRICT (vaal) .filter
9713 lines (8685 loc) · 410 KB
/
NeverSink's filter - 4-VERY-STRICT (vaal) .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
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
#===============================================================================================================
# NeverSink's Indepth Loot Filter - for Path of Exile
#===============================================================================================================
# VERSION: 8.14.3
# TYPE: 4-VERY-STRICT
# STYLE: VAAL
# AUTHOR: NeverSink
# BUILDNOTES: Filter generated with NeverSink's FilterpolishZ and the domainlanguage Exo.
#
#------------------------------------
# LINKS TO LATEST VERSION AND FILTER EDITOR
#------------------------------------
#
# EDIT/CUSTOMIZE FILTER ON: https://www.FilterBlade.xyz
# GET THE LATEST VERSION ON: https://www.FilterBlade.xyz or https://github.com/NeverSinkDev/NeverSink-Filter
#
#------------------------------------
# INSTALLATION / UPDATE :
#------------------------------------
#
# 0) It's recommended to check for updates once a month or at least before new leagues, to receive economy finetuning and new features!
# 1) Paste this file into the following folder: %userprofile%/Documents/My Games/Path of Exile
# 2) INGAME: Escape -> Options -> UI -> Scroll down -> Select the filter from the Dropdown box
#
#------------------------------------
# AUTO-UPDATER SERVICE AND SUPPORT THE DEVELOPMENT
#------------------------------------
#
# Patreon supporters get access to the FilterBlade Auto-Updater that combines 100% automated updates with custom styles and your customizations!
# It's a great way to support us and get something in return and it helps us on our journey of making our own company and potentially game. Thank you
# Learn more about the feature here: https://www.youtube.com/watch?v=i8RJx0s0zsA
#
# PATREON: https://www.patreon.com/Neversink
# OTHER: https://www.filterblade.xyz/About
#
#------------------------------------
# CONTACT - if you want to get notifications about updates or just get in touch:
#------------------------------------
# For feedback, questions and suggestions please join our discord!
#
# DISCORD: https://discord.gg/mye6xhF
# TWITTER: @NeverSinkDev
# TWITCH: https://www.twitch.tv/neversink
# GITHUB: NeverSinkDev
# FORUM: https://goo.gl/oQn4EN
#===============================================================================================================
# [WELCOME] TABLE OF CONTENTS + QUICKJUMP TABLE
#===============================================================================================================
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
# [[0100]] Global overriding rules
# [[0200]] High tier influenced items
# [0201] Influenced Maps
# [0202] Common Tier - T1
# [0203] Specialised Tier - T1
# [0204] Common Tier - T2
# [0205] Specialised Tier - T2
# [0206] Remaining
# [[0300]] ELDRITCH ITEMS
# [[0400]] Exotic Bases
# [[0500]] IDENTIFIED MOD FILTERING - COMBINATIONS
# [0501] ID Mod exceptions - override id mod matching section
# [0502] Physical
# [0503] Elemental
# [0504] Blade Blast Daggers
# [0505] Gembased
# [0506] Caster
# [0507] Spellslinger
# [0508] Helmets
# [0509] Boots
# [0510] Gloves
# [0511] Shields
# [0512] Amulets
# [0513] Rings
# [0514] Quivers
# [0515] Body Armours
# [0516] Belts
# [0517] Jewels
# [[0600]] IDENTIFIED MOD FILTERING - SINGLE MODS
# [0601] Top Value
# [0602] Uncorrupted Mods
# [[0700]] IDENTIFIED MOD - CORRUPTED ITEMS
# [[0800]] Exotic Mods Filtering
# [0801] Veiled/Betrayal - low prio veiled items
# [0802] Incursion/Temple Mods
# [0803] Necropolis
# [0804] Bestiary
# [0805] Other
# [[0900]] Exotic Item Classes
# [0901] Voidstones
# [0902] Trinkets
# [0903] Secret Society Equipment
# [0904] Pieces
# [0905] Affliction
# [0906] Craftable Invitations
# [0907] Relics
# [[1000]] Exotic Item Variations
# [1001] Double Corruptions
# [1002] Specific Single Corruptions
# [1003] Abyss Jeweled Rares
# [1004] Synthesised
# [1005] Fractured
# [1006] Enchanted
# [1007] Crucible
# [[1100]] Recipes and 5links
# [1101] Link Based
# [[1200]] High Level Crafting Bases
# [1201] Expensive Atlas 86 Bases - matched by economy
# [1202] Perfection-Based-Filtering
# [1203] RGB Endgame
# [1204] ILVL 86
# [1205] ILVL 84
# [1206] ILVL ANY
# [1207] Early Endgame Crafting projects
# [1208] Chisel Recipes
# [[1300]] Chancing Bases
# [[1400]] Endgame Flasks
# [1401] Endgame Flasks
# [1402] Quality High
# [1403] Utility OR quality flasks
# [1404] Quality Low
# [1405] Early mapping life/mana/utility flasks
# [[1500]] Misc Rules
# [[1600]] Hide Layer 1 - Normal and Magic Endgame Gear
# [[1700]] Rare Item Decorators
# [[1800]] Endgame - Rare - Exotic Corrupted Items
# [[1900]] Endgame - Rare - Accessoires
# [[2000]] Endgame - Conditional Hide Layers
# [[2100]] Endgame - Rare - Accessoires
# [[2200]] Endgame - Rare - Gear - T1 - handpicked
# [[2300]] Endgame - Rare - Gear - T2 - handpicked
# [[2400]] Endgame - Rare - Gear - T2 - handpicked
# [[2500]] Endgame - Rare - Gear - T3 - subpar bases
# [[2600]] Endgame - Rare - Gear - T4 - rest
# [[2700]] Hide Layer 2 - Rare Gear
# [[2800]] Jewels
# [2801] Special Cases
# [2802] Leveling Exceptions
# [2803] Abyss Jewels
# [2804] Generic Jewels
# [2805] Cluster Jewels: Eco-Based-Large
# [2806] Cluster Jewels: Random
# [[2900]] Heist Gear
# [2901] Heist Cloak
# [2902] Heist Brooch
# [2903] Heist Gear
# [2904] Heist Tool
# [[3000]] Gem Tierlists
# [3001] Exceptional Gems - Awakened and AltQuality
# [3002] Exceptional Gems - Special gems
# [3003] High Quality and Leveled Gems
# [[3100]] REPLICA UNIQUES
# [[3200]] Special Maps
# [3201] Unique Maps
# [3202] T17 maps
# [3203] Blighted maps
# [3204] Delirium/Blight/Enchanted Maps!
# [[3300]] Normal Map Progression
# [3301] Generic Decorators
# [3302] Map progression
# [[3400]] Pseudo-Map-Items
# [[3500]] Fragments
# [3501] Exceptions
# [3502] Scarabs
# [3503] Regular Fragment Tiering
# [[3600]] Currency - Exceptions - Leveling Currencies
# [[3700]] Currency - Exceptions - Stacked Currency
# [3701] Supplies: High Stacking
# [3702] Supplies: Low Stacking
# [3703] Supplies: Portal Stacking
# [3704] Supplies: Wisdom Stacking
# [3705] Stacked Currencies: 6x
# [3706] Stacked Currencies: 3x
# [3707] Heist Coins
# [[3800]] Currency - Regular Currency Tiering
# [[3900]] Currency - SPECIAL
# [3901] Incursion - Vials
# [3902] Delirum Orbs
# [3903] Delve - Resonators
# [3904] Delve - Fossils
# [3905] Blight - Oils
# [3906] Essences
# [3907] Incubators
# [3908] Trial of the Ancestors
# [3909] Others
# [[4000]] Currency - Splinters
# [4001] Breach and Legion Splinters - stacked
# [4002] Breach and Legion Splinters - single
# [4003] Simulacrum Splinters
# [[4100]] Divination Cards
# [[4200]] Remaining Currency
# [[4300]] Questlike-Items1 (override uniques)
# [[4400]] Uniques
# [4401] Exceptions #1
# [4402] Tier 1 and 2 uniques
# [4403] Exceptions #2
# [4404] Multi-Unique bases.
# [4405] Low tier exceptions
# [4406] Tier 3 uniques
# [4407] Tier 4 uniques
# [[4500]] Misc Map Items
# [[4600]] Questlike-Items2
# [[4700]] Hide outdated leveling flasks
# [[4800]] Leveling - Flasks
# [4801] Utility Flasks
# [4802] Hybrid flasks
# [4803] Life flasks
# [4804] Mana flasks
# [[4900]] Leveling - Rules
# [4901] Links and Sockets
# [4902] Rares - Decorators
# [4903] Rares - Universal
# [4904] Rares - Caster
# [4905] Rares - Archer
# [4906] Rares - Melee
# [[5000]] Leveling - Useful magic and normal items
# [5001] Purpose Picked Items
# [5002] Normals
# [5003] Weapon Progression
# [5004] Remaining Magics
# [5005] Hide All known Section
# [5006] Show All unknown Section
#===============================================================================================================
# [[0100]] Global overriding rules
#===============================================================================================================
# !! Waypoint c0.alpha : "All Rules - Highest priority - DANGER ZONE"
Show # $type->6l $tier->hightier
Mirrored False
Corrupted False
LinkedSockets 6
ItemLevel >= 75
Rarity Normal Magic Rare
BaseType == "Apex Cleaver" "Assassin's Garb" "Astral Plate" "Banishing Blade" "Battery Staff" "Blood Raiment" "Carnal Armour" "Desert Brigandine" "Despot Axe" "Destiny Leather" "Dragonscale Doublet" "Eventuality Rod" "Exquisite Leather" "Full Dragonscale" "General's Brigandine" "Gladiator Plate" "Glorious Plate" "Grove Bow" "Harbinger Bow" "Impact Force Propagator" "Imperial Bow" "Ivory Bow" "Maraketh Bow" "Sadist Garb" "Saintly Chainmail" "Saint's Hauberk" "Short Bow" "Solarine Bow" "Spine Bow" "Thicket Bow" "Triumphant Lamellar" "Vaal Regalia" "Varnished Coat" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 200 0 0 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # %D5 $type->6l $tier->others
LinkedSockets 6
Rarity Normal Magic Rare
SetFontSize 45
SetTextColor 0 0 0 255
SetBorderColor 0 0 0 255
SetBackgroundColor 200 0 0 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 1 Red Diamond
#===============================================================================================================
# [[0200]] High tier influenced items
#===============================================================================================================
#------------------------------------
# [0201] Influenced Maps
#------------------------------------
Show # $type->maps->influenced $tier->infshaper
HasInfluence Shaper
Rarity Normal Magic Rare
Class == "Maps"
SetFontSize 45
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
Show # $type->maps->influenced $tier->infelder
HasInfluence Elder
Rarity Normal Magic Rare
Class == "Maps"
SetFontSize 45
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
Show # $type->maps->influenced $tier->infconquerors
HasInfluence Crusader Hunter Redeemer Warlord
Rarity Normal Magic Rare
Class == "Maps"
SetFontSize 45
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
# !! Waypoint c1.infl.all : "All rules - except 6links and influenced maps"
#------------------------------------
# [0202] Common Tier - T1
#------------------------------------
Show # $type->influenced->common $tier->t1_exo
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Rare
BaseType == "Accumulator Wand" "Aetherwind Gloves" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Archdemon Crown" "Astrolabe Amulet" "Atonement Mask" "Banishing Blade" "Basemetal Treads" "Battery Staff" "Blasting Blade" "Blizzard Crown" "Boom Mace" "Brimstone Treads" "Capricious Spiritblade" "Cloudwhisper Boots" "Cogwork Ring" "Cold-attuned Buckler" "Composite Ring" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Darksteel Treads" "Debilitation Gauntlets" "Demon Crown" "Disapprobation Axe" "Dreamquest Slippers" "Duskwalk Slippers" "Eventuality Rod" "Flashfire Blade" "Focused Amulet" "Foundry Bow" "Gale Crown" "Gauche Gloves" "Geodesic Ring" "Gruelling Gauntlets" "Heat-attuned Tower Shield" "Helical Ring" "Honed Cleaver" "Imp Crown" "Impact Force Propagator" "Infernal Blade" "Leyline Gloves" "Magmatic Tower Shield" "Malign Fangs" "Manifold Ring" "Mechalarm Belt" "Micro-Distillery Belt" "Nexus Gloves" "Nightwind Slippers" "Ornate Quiver" "Oscillating Sceptre" "Penitent Mask" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Psychotic Axe" "Ratcheting Ring" "Reciprocation Staff" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets" "Simplex Amulet" "Sinistral Gloves" "Solarine Bow" "Sorrow Mask" "Southswing Gloves" "Stabilising Sceptre" "Stormrider Boots" "Subsuming Spirit Shield" "Taxing Gauntlets" "Transfer-attuned Spirit Shield" "Void Fangs" "Windbreak Boots" "Winter Crown"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
#------------------------------------
# [0203] Specialised Tier - T1
#------------------------------------
Show # $type->rare->crusader $tier->t11
HasInfluence Crusader
ItemLevel >= 82
Rarity Rare
BaseType == "Crystal Belt" "Dusk Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->crusader $tier->t12
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType == "Blue Pearl Amulet" "Bone Helmet" "Cerulean Ring" "Fingerless Silk Gloves" "Steel Ring" "Stygian Vise" "Unset Ring" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->crusader $tier->t13
HasInfluence Crusader
ItemLevel >= 86
Rarity Rare
BaseType == "Broadhead Arrow Quiver" "Heathen Wand" "Moonstone Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->warlord $tier->t11
HasInfluence Warlord
ItemLevel >= 82
Rarity Rare
BaseType == "Amethyst Ring" "Blue Pearl Amulet" "Stygian Vise" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->warlord $tier->t12
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Dusk Ring" "Fleshripper" "Steel Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->warlord $tier->t13
HasInfluence Warlord
ItemLevel >= 86
Rarity Rare
BaseType == "Broadhead Arrow Quiver" "Crystal Belt" "Eternal Burgonet" "Fugitive Boots" "Gripped Gloves" "Marble Amulet" "Primal Arrow Quiver" "Royal Burgonet"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
#Show # $type->rare->redeemer $tier->t11
# HasInfluence Redeemer
# ItemLevel >= 82
# Rarity Rare
# SetFontSize 45
# SetTextColor 50 130 165 255
# SetBorderColor 50 130 165 255
# SetBackgroundColor 255 255 255 255
# PlayAlertSound 1 300
# PlayEffect Red
# MinimapIcon 0 Red Diamond
Show # $type->rare->redeemer $tier->t12
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType == "Bone Helmet" "Dusk Ring" "Fugitive Boots" "Iolite Ring" "Steel Ring" "Stygian Vise" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->redeemer $tier->t13
HasInfluence Redeemer
ItemLevel >= 86
Rarity Rare
BaseType == "Broadhead Arrow Quiver" "Carnal Sceptre" "Crystal Belt" "Mirrored Spiked Shield" "Nightmare Bascinet" "Pinnacle Tower Shield" "Prismatic Ring" "Two-Toned Boots" "Vaal Regalia"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->hunter $tier->t11
HasInfluence Hunter
ItemLevel >= 82
Rarity Rare
BaseType == "Two-Stone Ring" "Unset Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->hunter $tier->t12
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType == "Amethyst Ring" "Apothecary's Gloves" "Blue Pearl Amulet" "Bone Helmet" "Broadhead Arrow Quiver" "Fingerless Silk Gloves" "Fugitive Boots" "Gripped Gloves" "Opal Ring" "Ruby Ring" "Sapphire Ring" "Spiked Gloves" "Stygian Vise" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->hunter $tier->t13
HasInfluence Hunter
ItemLevel >= 86
Rarity Rare
BaseType == "Coral Ring" "Exquisite Blade" "Ezomyte Tower Shield" "Imperial Buckler" "Maraketh Bow" "Mirrored Spiked Shield" "Penetrating Arrow Quiver" "Primal Arrow Quiver" "Supreme Spiked Shield" "Topaz Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->shaper $tier->t11
HasInfluence Shaper
ItemLevel >= 82
Rarity Rare
BaseType == "Crystal Belt"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->shaper $tier->t12
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType == "Bone Helmet" "Sacrificial Garb" "Stygian Vise"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->shaper $tier->t13
HasInfluence Shaper
ItemLevel >= 86
Rarity Rare
BaseType == "Iolite Ring" "Steel Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->elder $tier->t11
HasInfluence Elder
ItemLevel >= 82
Rarity Rare
BaseType == "Bone Helmet"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->elder $tier->t12
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType == "Eternal Burgonet" "Royal Burgonet" "Stygian Vise" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->rare->elder $tier->t13
HasInfluence Elder
ItemLevel >= 86
Rarity Rare
BaseType == "Apothecary's Gloves" "Crystal Belt" "Fugitive Boots" "Opal Ring" "Prismatic Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
#------------------------------------
# [0204] Common Tier - T2
#------------------------------------
#Show # $type->influenced->common $tier->t2_exo
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# Rarity Rare
# BaseType == "Apothecary's Gloves" "Blue Pearl Amulet" "Bone Helmet" "Cerulean Ring" "Crystal Belt" "Fingerless Silk Gloves" "Fugitive Boots" "Gripped Gloves" "Iolite Ring" "Marble Amulet" "Opal Ring" "Sacrificial Garb" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Two-Toned Boots" "Vanguard Belt" "Vermillion Ring"
# SetFontSize 45
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 255
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Diamond
#Show # $type->influenced->common $tier->t2_86
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# ItemLevel >= 86
# Rarity Rare
# BaseType == "Agate Amulet" "Amber Amulet" "Ambush Boots" "Ambush Mitts" "Amethyst Ring" "Ancient Greaves" "Angelic Kite Shield" "Antique Greaves" "Apothecary's Gloves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Boots" "Assassin's Mitts" "Battered Foil" "Blue Pearl Amulet" "Bone Helmet" "Bone Ring" "Broadhead Arrow Quiver" "Bronzescale Boots" "Calling Wand" "Callous Mask" "Cardinal Round Shield" "Carnal Boots" "Carnal Mitts" "Carnal Sceptre" "Cerulean Ring" "Champion Kite Shield" "Citadel Bow" "Citrine Amulet" "Colossal Tower Shield" "Convening Wand" "Convoking Wand" "Copper Kris" "Coral Ring" "Crusader Boots" "Crusader Buckler" "Crusader Gloves" "Crystal Belt" "Deicide Mask" "Demon Dagger" "Demon's Horn" "Despot Axe" "Diamond Ring" "Dragonscale Boots" "Dragonscale Gauntlets" "Eelskin Boots" "Elegant Round Shield" "Eternal Burgonet" "Ezomyte Axe" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fencer Helm" "Fiend Dagger" "Fingerless Silk Gloves" "Fluted Bascinet" "Fossilised Spirit Shield" "Fugitive Boots" "Full Dragonscale" "Gemini Claw" "Golden Kris" "Goliath Gauntlets" "Goliath Greaves" "Gripped Gloves" "Harlequin Mask" "Harmonic Spirit Shield" "Heathen Wand" "Heavy Arrow Quiver" "Heavy Belt" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Iolite Ring" "Ivory Bow" "Jade Amulet" "Lacquered Buckler" "Lacquered Helmet" "Lapis Amulet" "Leather Belt" "Legion Boots" "Legion Gloves" "Lion Pelt" "Magistrate Crown" "Maraketh Bow" "Marble Amulet" "Mirrored Spiked Shield" "Mosaic Kite Shield" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Nubuck Boots" "Omen Wand" "Onyx Amulet" "Opal Ring" "Opal Sceptre" "Opal Wand" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Platinum Kris" "Praetor Crown" "Primal Arrow Quiver" "Prismatic Ring" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Regicide Mask" "Royal Burgonet" "Ruby Ring" "Sadist Garb" "Saintly Chainmail" "Sapphire Ring" "Serpentscale Boots" "Serpentscale Gauntlets" "Shagreen Boots" "Shagreen Gloves" "Sharkskin Boots" "Short Bow" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Soldier Boots" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spine Bow" "Stealth Boots" "Stealth Gloves" "Steel Ring" "Steelscale Boots" "Steelscale Gauntlets" "Stygian Vise" "Supreme Spiked Shield" "Thicket Bow" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Tornado Wand" "Triumphant Lamellar" "Turquoise Amulet" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Ursine Pelt" "Vaal Gauntlets" "Vaal Greaves" "Vaal Mask" "Vaal Regalia" "Vaal Sceptre" "Vaal Spirit Shield" "Vanguard Belt" "Vermillion Ring" "Void Sceptre" "Wyrmscale Boots" "Wyrmscale Gauntlets" "Zealot Boots" "Zodiac Leather"
# SetFontSize 45
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 255
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Diamond
#------------------------------------
# [0205] Specialised Tier - T2
#------------------------------------
Show # %D5 $type->rare->crusader $tier->t21
HasInfluence Crusader
ItemLevel >= 80
Rarity Rare
BaseType == "Amethyst Ring" "Crystal Belt" "Dusk Ring" "Fingerless Silk Gloves" "Penumbra Ring" "Steel Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->crusader $tier->t22
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Assassin's Boots" "Assassin's Garb" "Blood Sceptre" "Blue Pearl Amulet" "Bone Helmet" "Broadhead Arrow Quiver" "Cerulean Ring" "Citrine Amulet" "Coronal Maul" "Crusader Buckler" "Crystal Sceptre" "Ezomyte Spiked Shield" "Heathen Wand" "Lacquered Garb" "Legion Sword" "Marble Amulet" "Moonstone Ring" "Polished Spiked Shield" "Sadist Garb" "Sai" "Sambar Sceptre" "Sinner Tricorne" "Stygian Vise" "Two-Toned Boots" "Unset Ring" "Vaal Regalia" "Vermillion Ring" "Void Axe"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->warlord $tier->t21
HasInfluence Warlord
ItemLevel >= 80
Rarity Rare
BaseType == "Amethyst Ring" "Blue Pearl Amulet" "Moonstone Ring" "Primal Arrow Quiver" "Ruby Ring" "Sapphire Ring" "Stygian Vise" "Topaz Ring" "Two-Stone Ring" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->warlord $tier->t22
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Behemoth Mace" "Broadhead Arrow Quiver" "Coral Ring" "Coronal Leather" "Corsair Sword" "Crystal Belt" "Crystal Sceptre" "Diamond Ring" "Dusk Ring" "Eternal Burgonet" "Fleshripper" "Fugitive Boots" "Gripped Gloves" "Jade Amulet" "Judgement Staff" "Legion Sword" "Maraketh Bow" "Marble Amulet" "Opal Ring" "Pig-Faced Bascinet" "Profane Wand" "Royal Burgonet" "Seaglass Amulet" "Sharkskin Boots" "Steel Circlet" "Steel Ring" "Two-Toned Boots" "Unset Ring" "Vaal Greatsword" "Vaal Hatchet"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->redeemer $tier->t21
HasInfluence Redeemer
ItemLevel >= 80
Rarity Rare
BaseType == "Amethyst Ring" "Broadhead Arrow Quiver" "Crystal Belt" "Sharkskin Boots" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->redeemer $tier->t22
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Blue Pearl Amulet" "Bone Helmet" "Carnal Sceptre" "Chiming Spirit Shield" "Citrine Amulet" "Colossus Mallet" "Conjurer's Vestment" "Crimson Round Shield" "Dusk Ring" "Engraved Wand" "Faun's Horn" "Fugitive Boots" "Hubris Circlet" "Imperial Buckler" "Iolite Ring" "Lacquered Buckler" "Laminated Kite Shield" "Lion Pelt" "Midnight Blade" "Mirrored Spiked Shield" "Nightmare Bascinet" "Noble Tricorne" "Pinnacle Tower Shield" "Prismatic Ring" "Profane Wand" "Royal Burgonet" "Ruby Ring" "Sambar Sceptre" "Sapphire Ring" "Slink Boots" "Spiraled Wand" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Titanium Spirit Shield" "Topaz Ring" "Two-Stone Ring" "Unset Ring" "Vaal Regalia" "Vile Arrow Quiver" "Wyrmscale Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->hunter $tier->t21
HasInfluence Hunter
ItemLevel >= 80
Rarity Rare
BaseType == "Coral Ring" "Diamond Ring" "Penetrating Arrow Quiver" "Sapphire Ring" "Topaz Ring" "Two-Point Arrow Quiver" "Two-Stone Ring" "Unset Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->hunter $tier->t22
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Amethyst Ring" "Ancient Greaves" "Apothecary's Gloves" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Citrine Amulet" "Crystal Belt" "Ebony Tower Shield" "Exquisite Blade" "Ezomyte Spiked Shield" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fingerless Silk Gloves" "Fugitive Boots" "Gold Amulet" "Gold Ring" "Gripped Gloves" "Heavy Arrow Quiver" "Imperial Buckler" "Iolite Ring" "Ivory Bow" "Lapis Amulet" "Maraketh Bow" "Mirrored Spiked Shield" "Moonstone Ring" "Opal Ring" "Primal Arrow Quiver" "Royal Burgonet" "Ruby Ring" "Seaglass Amulet" "Sharktooth Arrow Quiver" "Sorcerer Gloves" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Thicket Bow" "Trapper Boots" "Two-Toned Boots" "Vaal Regalia" "Vermillion Ring" "Vile Arrow Quiver" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->shaper $tier->t21
HasInfluence Shaper
ItemLevel >= 80
Rarity Rare
BaseType == "Apothecary's Gloves" "Crystal Belt"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->shaper $tier->t22
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType == "Blue Pearl Amulet" "Bone Helmet" "Calling Wand" "Cerulean Ring" "Fingerless Silk Gloves" "Fugitive Boots" "Harmonic Spirit Shield" "Heavy Belt" "Iolite Ring" "Marble Amulet" "Opal Ring" "Steel Ring" "Stygian Vise" "Vanguard Belt" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->elder $tier->t21
HasInfluence Elder
ItemLevel >= 80
Rarity Rare
BaseType == "Bone Helmet" "Cerulean Ring" "Crystal Belt"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->elder $tier->t22
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Eternal Burgonet" "Ezomyte Burgonet" "Faun's Horn" "Fingerless Silk Gloves" "Fugitive Boots" "Gripped Gloves" "Iolite Ring" "Opal Ring" "Prismatic Ring" "Royal Burgonet" "Samnite Helmet" "Seaglass Amulet" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 255
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
#------------------------------------
# [0206] Remaining
#------------------------------------
Show # %D4 $type->rare->any $tier->anytrinket
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Rare
Class == "Amulets" "Belts" "Rings"
SetFontSize 40
SetBorderColor 255 255 255 255
SetBackgroundColor 0 41 105 200
PlayEffect Blue Temp
Show # %D4 $type->rare->any $tier->anytoplevel
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 86
Rarity Rare
SetFontSize 40
SetBorderColor 50 200 50 255
SetBackgroundColor 0 41 105 200
PlayEffect Blue Temp
#Show # %D3 $type->rare->any $tier->any
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# Rarity Normal Magic Rare
# SetFontSize 40
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 200
# PlayEffect Blue Temp
#===============================================================================================================
# [[0300]] ELDRITCH ITEMS
#===============================================================================================================
# !! Waypoint c1.eldritch.all : "Eldritch Items - Exarch and Eater"
#Show # %D3 $type->rare->exarch $tier->anyhigh
# HasSearingExarchImplicit >= 1
# Rarity Normal Magic Rare
# BaseType == "Assassin's Mitts" "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Lion Pelt" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Pig-Faced Bascinet" "Praetor Crown" "Shagreen Gloves" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Stealth Boots" "Stealth Gloves" "Titan Gauntlets" "Titan Greaves" "Vaal Gauntlets" "Vaal Greaves" "Wyrmscale Gauntlets"
# SetFontSize 40
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 200
# PlayEffect Blue Temp
#Show # %D1 $type->rare->exarch $tier->any
# HasSearingExarchImplicit >= 1
# Rarity Normal Magic Rare
# SetFontSize 40
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 200
# PlayEffect Blue Temp
#Show # %D3 $type->rare->eater $tier->anyhigh
# HasEaterOfWorldsImplicit >= 1
# Rarity Normal Magic Rare
# BaseType == "Assassin's Mitts" "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Lion Pelt" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Pig-Faced Bascinet" "Praetor Crown" "Shagreen Gloves" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Stealth Boots" "Stealth Gloves" "Titan Gauntlets" "Titan Greaves" "Vaal Gauntlets" "Vaal Greaves" "Wyrmscale Gauntlets"
# SetFontSize 40
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 200
# PlayEffect Blue Temp
#Show # %D1 $type->rare->eater $tier->any
# HasEaterOfWorldsImplicit >= 1
# Rarity Normal Magic Rare
# SetFontSize 40
# SetBorderColor 255 255 255 255
# SetBackgroundColor 0 41 105 200
# PlayEffect Blue Temp
#===============================================================================================================
# [[0400]] Exotic Bases
#===============================================================================================================
# !! Waypoint c1.exotic.all : "Exotic - Expedition, exotic Talismans, Sacrificial garbs"
# These bases don't usually drop during normal gameplay and are usually only acquired form certain sources
# These are bases such as heist and ritual bases.
Show # $type->exoticbases $tier->exoticheistbases
Rarity Normal Magic Rare
BaseType == "Accumulator Wand" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Astrolabe Amulet" "Banishing Blade" "Battery Staff" "Blasting Blade" "Boom Mace" "Capricious Spiritblade" "Cogwork Ring" "Cold-attuned Buckler" "Composite Ring" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Disapprobation Axe" "Eventuality Rod" "Flashfire Blade" "Focused Amulet" "Foundry Bow" "Geodesic Ring" "Heat-attuned Tower Shield" "Helical Ring" "Honed Cleaver" "Impact Force Propagator" "Infernal Blade" "Magmatic Tower Shield" "Malign Fangs" "Manifold Ring" "Mechalarm Belt" "Mechanical Belt" "Micro-Distillery Belt" "Oscillating Sceptre" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Psychotic Axe" "Ratcheting Ring" "Reciprocation Staff" "Simplex Amulet" "Solarine Bow" "Stabilising Sceptre" "Subsuming Spirit Shield" "Transfer-attuned Spirit Shield" "Void Fangs"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticritualbases
Rarity Normal Magic Rare
BaseType == "Aetherwind Gloves" "Archdemon Crown" "Atonement Mask" "Basemetal Treads" "Blizzard Crown" "Brimstone Treads" "Cloudwhisper Boots" "Darksteel Treads" "Debilitation Gauntlets" "Demon Crown" "Dreamquest Slippers" "Duskwalk Slippers" "Gale Crown" "Gauche Gloves" "Gruelling Gauntlets" "Imp Crown" "Leyline Gloves" "Nexus Gloves" "Nightwind Slippers" "Penitent Mask" "Sinistral Gloves" "Sorrow Mask" "Southswing Gloves" "Stormrider Boots" "Taxing Gauntlets" "Windbreak Boots" "Winter Crown"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticlakekala
Rarity Normal Magic Rare
BaseType == "Dusk Ring" "Gloam Ring" "Penumbra Ring" "Shadowed Ring" "Tenebrous Ring"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # %D5 $type->exoticbases $tier->exoticexpeditionbases
Rarity Normal Magic Rare
BaseType == "Iron Flask" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exotictalismanbases $artefactex
Rarity Normal Magic Rare
BaseType == "Greatwolf Talisman" "Rot Head Talisman"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticbasesmisc
Rarity Normal Magic Rare
BaseType == "Grasping Mail"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticuniquebases
Rarity Normal Magic Rare
BaseType == "Ornate Quiver" "Prismatic Jewel" "Ring" "Ruby Amulet" "Unset Amulet"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # %D6 $type->exoticbaseslower $tier->exoticsacrificial
Mirrored False
Corrupted False
Rarity Normal Magic Rare
BaseType == "Sacrificial Garb"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#===============================================================================================================
# [[0500]] IDENTIFIED MOD FILTERING - COMBINATIONS
#===============================================================================================================
# !! Waypoint c1.idmod.all : "Identified Mods - Best Veiled mods and combinations of expensive ID mods"
#------------------------------------
# [0501] ID Mod exceptions - override id mod matching section
#------------------------------------
Show # %DS5 $type->exoticmods $tier->t1veil
Identified True
Rarity Rare
HasExplicitMod "Catarina's Veiled" "Elreon's Veiled" "Leo's Veiled" "Rin's Veiled" "Vagan's Veiled" "Vorici's Veiled"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # %DS4 $type->exoticmods $tier->t2veil
Identified True
Rarity Rare
HasExplicitMod "Gravicius' Veiled" "Guff's Veiled" "Haku's" "It That Fled's Veiled" "Korell's Veiled" "of Aisling's Veil" "of Cameria's Veil" "of Hillock's Veil" "of Janus' Veil" "of Jorgin's Veil" "Riker" "Tora's Veiled"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#------------------------------------
# [0502] Physical
#------------------------------------
Show # %D5 $type->rareid $tier->weapon_phys
Identified True
DropLevel >= 50
Rarity Rare
Class == "Bows" "Claws" "Daggers" "One Hand Axes" "One Hand Maces" "One Hand Swords" "Thrusting One Hand Swords" "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Wands" "Warstaves"
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod >=3 "Merciless" "Tyrannical" "Flaring" "Dictator's" "Emperor's" "of Celebration" "of Incision" "of Dissolution" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod =0 "Heavy" "Serrated" "Wicked" "Vicious" "Glinting" "Burnished" "Polished" "Honed" "of Needling" "of Skill"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # %D5 $type->rareid $tier->weapon_physpure
Mirrored False
Corrupted False
Identified True
DropLevel >= 50
Rarity Rare
Class == "Bows" "Claws" "Daggers" "One Hand Axes" "One Hand Maces" "One Hand Swords" "Thrusting One Hand Swords" "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Wands" "Warstaves"
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod >=2 "Merciless" "Tyrannical" "Flaring" "Dictator's" "Emperor's" "of Celebration" "of Incision" "of Dissolution" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod =0 "Heavy" "Serrated" "Wicked" "Vicious" "Glinting" "Burnished" "Polished" "Honed" "of Needling" "of Skill"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0503] Elemental
#------------------------------------
Show # %D5 $type->rareid $tier->weapon_ele
Identified True
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Dragonbone Rapier" "Eagle Claw" "Elegant Foil" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Highborn Bow" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Imperial Skean" "Jewelled Foil" "Maraketh Bow" "Noble Claw" "Opal Wand" "Poignard" "Reflex Bow" "Serrated Foil" "Spine Bow" "Spiraled Foil" "Steelwood Bow" "Stiletto" "Terror Claw" "Thicket Bow" "Throat Stabber" "Tornado Wand" "Twin Claw" "Wyrmbone Rapier"
HasExplicitMod "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many"
HasExplicitMod >=4 "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity" "of Fury" "Devastating" "Overpowering" "of the Essence" "Essences" "Veiled" "of the Veil" "of the Underground" "Subterranean" "of Many"
HasExplicitMod =0 "Heated" "Smouldering" "Smoking" "Burning" "Frosted" "Chilled" "Icy" "Frigid" "Humming" "Buzzing" "Snapping" "Crackling" "of Needling" "of Skill" "Glinting" "Heavy"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # %D5 $type->rareid $tier->weapon_elepure
Mirrored False
Corrupted False