-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathitem.filter
2194 lines (2194 loc) · 308 KB
/
item.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
//╔═╦═══════════════════════════════════════════════════════════════════════════════════════════╦═╗
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║ Spam's Loot Filter ║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╚═╩═══════════════════════════════════════════════════════════════════════════════════════════╩═╝
// Last Updated: 2020-04-10
// To Be Used with Patch: #20 - Perlite
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Keyword Order Reference for Rules Listed ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// This is the order in which I try to stick to when constructing any of this filter's rules:
// Character Level (CLVL)
// Item Level (ILVL)
// Affix Level (ALVL)
// Crafted Affix Level (CRAFTALVL)
// Vendor/Sell Price (PRICE)
// Item Grade (NORM, EXC, ELT)
// Item Category (CL#, EQ#, WP#)
// Other Item Group Codes (GEMLEVEL, GEMTYPE, RUNE)
// Item Code (key, leg, fla, etc..)
// Quality (NMAG, MAG, RARE, SET, UNI, CRAFT)
// Runeword/No Runeword (RW/!RW)
// Inferior (INF)
// Superior (SUP)
// Identified/Not Identified (ID/!ID)
// Ethereal/Non-Ethereal (ETH/!ETH)
// Sockets (SOCK)
// All Skill Bonus (ALLSK)
// Class Skill Bonus (CLSK#)
// Tab Skill Bonus (TABSK#)
// Individual Skill Bonus (SK#)
// Other Predefined Bonuses (ED, LIFE, MANA, etc..)
// Undefined Bonuses (STAT#, CHARSTAT#, ITEMSTAT#)
//╔═╦═══════════════════════════════════════════════════════════════════════════════════════════╦═╗
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║ Quest Items ║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╚═╩═══════════════════════════════════════════════════════════════════════════════════════════╩═╝
// Wirt's Leg is processed as normal equipment, but is never ignored.
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Act I ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[bks]: %NAME% //Scroll of Inifuss
ItemDisplay[bkd]: %NAME% //Key to the Cairn Stones
ItemDisplay[hdm]: %NAME% //Horadric Malus
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Act II ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[ass]: %NAME% //Book of Skill
ItemDisplay[tr1]: %NAME% //Horadric Scroll
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Display Area Level by Using the Horadric Cube
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[box]: %NAME% //%RED%[%WHITE%No Match%RED%]%WHITE% //Horadric Cube
ItemDisplay[msf]: %NAME% //Staff of Kings
ItemDisplay[vip]: %NAME% //Viper Amulet
ItemDisplay[hst]: %NAME% //Horadric Staff
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Act III ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[j34]: %NAME% //A Jade Figurine
ItemDisplay[g34]: %NAME% //The Golden Bird
ItemDisplay[xyz]: %NAME% //Potion of Life
ItemDisplay[g33]: %NAME% //Gidbinn
ItemDisplay[bbb]: %NAME% //Lam Esen's Tome
ItemDisplay[qbr]: %NAME% //Khalim's Brain
ItemDisplay[qey]: %NAME% //Khalim's Eye
ItemDisplay[qhr]: %NAME% //Khalim's Heart
ItemDisplay[qf1]: %NAME% //Khalim's Flail
ItemDisplay[qf2]: %NAME% //Khalim's Will
ItemDisplay[mss]: %NAME% //Mephisto's Soulstone
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Act IV ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[hfh]: %NAME% //Hellforge Hammer
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Act V ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[ice]: %NAME% //Malah's Potion
ItemDisplay[tr2]: %NAME% //Scroll of Resistance
//╔═╦═══════════════════════════════════════════════════════════════════════════════════════════╦═╗
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║ Misc Item Handling (Potions, Gems, Runes, etc.) ║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╚═╩═══════════════════════════════════════════════════════════════════════════════════════════╩═╝
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Gold Drops ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[GOLD<5000]: //Ignore Gold Drops Under X Amount (Default is 5000)
//ItemDisplay[GOLD>0 CHARSTAT15>2499999]: //[Optional] Hide all gold when the Stash's capacity for gold is full.
ItemDisplay[GOLD>4999]: %NAME%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Optional] Rules for Ignoring Misc Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
//ItemDisplay[key]: //Hide keys. You can still buy them.
//ItemDisplay[GEMLEVEL=1]: //Ignore Chipped Gems
//ItemDisplay[GEMLEVEL=2]: //Ignore Flawed Gems
//ItemDisplay[GEMLEVEL=3]: //Ignore Regular Gems
//ItemDisplay[GEMLEVEL=4]: //Ignore Flawless Gems
//ItemDisplay[gcv OR gfv OR gsv OR gzv]: //Ignore All Amethysts Except Perfect Amethysts
//ItemDisplay[gcw OR gfw OR gsw OR glw]: //Ignore All Diamonds Except Perfect Diamonds
//ItemDisplay[gcg OR gfg OR gsg OR glg]: //Ignore All Emeralds Except Perfect Emeralds
//ItemDisplay[gcr OR gfr OR gsr OR glr]: //Ignore All Rubies Except Perfect Rubies
//ItemDisplay[gcb OR gfb OR gsb OR glb]: //Ignore All Sapphires Except Perfect Sapphires
//ItemDisplay[gcy OR gfy OR gsy OR gly]: //Ignore All Topazes Except Perfect Topazes
//ItemDisplay[skc OR skf OR sku OR skl]: //Ignore All Skulls Except Perfect Skulls
//ItemDisplay[gcv]: //Ignore Chipped Amethysts
//ItemDisplay[gcw]: //Ignore Chipped Diamonds
//ItemDisplay[gcg]: //Ignore Chipped Emeralds
//ItemDisplay[gcr]: //Ignore Chipped Rubies
//ItemDisplay[gcb]: //Ignore Chipped Sapphires
//ItemDisplay[gcy]: //Ignore Chipped Topazes
//ItemDisplay[skc]: //Ignore Chipped Skulls
//ItemDisplay[gfv]: //Ignore Flawed Amethysts
//ItemDisplay[gfw]: //Ignore Flawed Diamonds
//ItemDisplay[gfg]: //Ignore Flawed Emeralds
//ItemDisplay[gfr]: //Ignore Flawed Rubies
//ItemDisplay[gfb]: //Ignore Flawed Sapphires
//ItemDisplay[gfy]: //Ignore Flawed Topazes
//ItemDisplay[skf]: //Ignore Flawed Skulls
//ItemDisplay[gsv]: //Ignore Normal Amethysts
//ItemDisplay[gsw]: //Ignore Normal Diamonds
//ItemDisplay[gsg]: //Ignore Normal Emeralds
//ItemDisplay[gsr]: //Ignore Normal Rubies
//ItemDisplay[gsb]: //Ignore Normal Sapphires
//ItemDisplay[gsy]: //Ignore Normal Topazes
//ItemDisplay[sku]: //Ignore Normal Skulls
//ItemDisplay[gzv]: //Ignore Flawless Amethyst
//ItemDisplay[glw]: //Ignore Flawless Diamond
//ItemDisplay[glg]: //Ignore Flawless Emerald
//ItemDisplay[glr]: //Ignore Flawless Ruby
//ItemDisplay[glb]: //Ignore Flawless Sapphire
//ItemDisplay[gly]: //Ignore Flawless Topaz
//ItemDisplay[skl]: //Ignore Flawless Skulls
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Custom] Rules for Ignoring Misc Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Custom rules go here.
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Rules for Ignoring Misc Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[yps]: //Ignore all Antidote Potions
ItemDisplay[wms]: //Ignore all Thawing Potions
ItemDisplay[vps]: //Ignore all Stamina Potions
ItemDisplay[CLVL>7 (tsc OR isc)]: //Ignore Town Portal and ID Scrolls (Level 8+)
ItemDisplay[CLVL>7 opl]: //Ignore Fulminating Potions (Level 8+)
ItemDisplay[CLVL>11 gpl]: //Ignore Strangling Gas Potions (Level 12+)
ItemDisplay[CLVL>15 opm]: //Ignore Exploding Potions (Level 16+)
ItemDisplay[CLVL>19 gpm]: //Ignore Choking Gas Potions (Level 20+)
ItemDisplay[CLVL>23 ops]: //Ignore Oil Potions (Level 24+)
ItemDisplay[CLVL>29 gps]: //Ignore Rancid Gas Potions (Level 30+)
ItemDisplay[CLVL>5 (hp1 OR mp1)]: //Ignore Lesser Healing/Mana Potions (Level 6+)
ItemDisplay[CLVL>17 (hp2 OR mp2)]: //Ignore Light Healing/Mana Potions (Level 18+)
ItemDisplay[CLVL>23 (hp3 OR mp3)]: //Ignore Healing/Mana Potions (Level 24+)
ItemDisplay[CLVL>44 (hp4 OR mp4)]: //Ignore Greater Healing/Mana Potions (Level 45+)
ItemDisplay[CLVL>69 rvs]: //Ignore Rejuvenation Potions (Level 70+)
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Custom] Rules for Displaying Misc Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Custom rules go here.
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Gems ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Chipped
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[gcv]: %PURPLE%¦¦¦¦%GOLD%Chipped%PURPLE%¦¦¦¦%WHITE%%CONTINUE%
ItemDisplay[gcw]: %WHITE%¦¦¦¦%GOLD%Chipped%WHITE%¦¦¦¦%CONTINUE%
ItemDisplay[gcg]: %GREEN%¦¦¦¦%GOLD%Chipped%GREEN%¦¦¦¦%WHITE%%CONTINUE%
ItemDisplay[gcr]: %RED%¦¦¦¦%GOLD%Chipped%RED%¦¦¦¦%WHITE%%CONTINUE%
ItemDisplay[gcb]: %BLUE%¦¦¦¦%GOLD%Chipped%BLUE%¦¦¦¦%WHITE%%CONTINUE%
ItemDisplay[gcy]: %YELLOW%¦¦¦¦%GOLD%Chipped%YELLOW%¦¦¦¦%WHITE%%CONTINUE%
ItemDisplay[skc]: %GRAY%¦¦¦¦%GOLD%Chipped%GRAY%¦¦¦¦%WHITE%%CONTINUE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Flawed
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[gfv]: %PURPLE%¦¦|¦%GOLD%Flawed%PURPLE%¦|¦¦%WHITE%%CONTINUE%
ItemDisplay[gfw]: %WHITE%¦¦|¦%GOLD%Flawed%WHITE%¦|¦¦%CONTINUE%
ItemDisplay[gfg]: %GREEN%¦¦|¦%GOLD%Flawed%GREEN%¦|¦¦%WHITE%%CONTINUE%
ItemDisplay[gfr]: %RED%¦¦|¦%GOLD%Flawed%RED%¦|¦¦%WHITE%%CONTINUE%
ItemDisplay[gfb]: %BLUE%¦¦|¦%GOLD%Flawed%BLUE%¦|¦¦%WHITE%%CONTINUE%
ItemDisplay[gfy]: %YELLOW%¦¦|¦%GOLD%Flawed%YELLOW%¦|¦¦%WHITE%%CONTINUE%
ItemDisplay[skf]: %GRAY%¦¦|¦%GOLD%Flawed%GRAY%¦|¦¦%WHITE%%CONTINUE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Regular
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[gsv]: %PURPLE%¦||¦%GOLD%Gem%PURPLE%¦||¦%WHITE%%CONTINUE%
ItemDisplay[gsw]: %WHITE%¦||¦%GOLD%Gem%WHITE%¦||¦%CONTINUE%
ItemDisplay[gsg]: %GREEN%¦||¦%GOLD%Gem%GREEN%¦||¦%WHITE%%CONTINUE%
ItemDisplay[gsr]: %RED%¦||¦%GOLD%Gem%RED%¦||¦%WHITE%%CONTINUE%
ItemDisplay[gsb]: %BLUE%¦||¦%GOLD%Gem%BLUE%¦||¦%WHITE%%CONTINUE%
ItemDisplay[gsy]: %YELLOW%¦||¦%GOLD%Gem%YELLOW%¦||¦%WHITE%%CONTINUE%
ItemDisplay[sku]: %GRAY%¦||¦%GOLD%Gem%GRAY%¦||¦%WHITE%%CONTINUE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Flawless
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[gzv]: %PURPLE%|||¦%GOLD%Flawless%PURPLE%¦|||%WHITE%%CONTINUE%
ItemDisplay[glw]: %WHITE%|||¦%GOLD%Flawless%WHITE%¦|||%CONTINUE%
ItemDisplay[glg]: %GREEN%|||¦%GOLD%Flawless%GREEN%¦|||%WHITE%%CONTINUE%
ItemDisplay[glr]: %RED%|||¦%GOLD%Flawless%RED%¦|||%WHITE%%CONTINUE%
ItemDisplay[glb]: %BLUE%|||¦%GOLD%Flawless%BLUE%¦|||%WHITE%%CONTINUE%
ItemDisplay[gly]: %YELLOW%|||¦%GOLD%Flawless%YELLOW%¦|||%WHITE%%CONTINUE%
ItemDisplay[skl]: %GRAY%|||¦%GOLD%Flawless%GRAY%¦|||%WHITE%%CONTINUE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Perfect
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[gpv]: %PURPLE%||||%GOLD%Perfect%PURPLE%||||%WHITE%
ItemDisplay[gpw]: %WHITE%||||%GOLD%Perfect%WHITE%||||
ItemDisplay[gpg]: %GREEN%||||%GOLD%Perfect%GREEN%||||%WHITE%
ItemDisplay[gpr]: %RED%||||%GOLD%Perfect%RED%||||%WHITE%
ItemDisplay[gpb]: %BLUE%||||%GOLD%Perfect%BLUE%||||%WHITE%
ItemDisplay[gpy]: %YELLOW%||||%GOLD%Perfect%YELLOW%||||%WHITE%
ItemDisplay[skz]: %GRAY%||||%GOLD%Perfect%GRAY%||||%WHITE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Drop Notifications
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[GEMLEVEL>3]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[CLVL<31 GEMLEVEL>2]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[CLVL<25 GEMLEVEL>1]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[CLVL<15 GEMLEVEL>0]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[GEMLEVEL>0]: %NAME%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Runes ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Gray Rune Number: El, Eld, Tir, Nef, Eth, Ith, Tal, Ral, Ort, Thul, Amn, Sol
// White Rune Number: Shael, Dol, Hel, Io, Lum, Ko, Fal
// Yellow Rune Number: Lem, Pul, Um
// Orange Rune Number: Mal, Ist, Gul
// Green Rune Number: Vex, Ohm, Lo, Sur, Ber, Jah, Cham, Zod
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[RUNE>0 RUNE<13]: %ORANGE%%RUNENAME%%GRAY%[%RUNENUM%]%WHITE%%CONTINUE%
ItemDisplay[RUNE>12 RUNE<20]: %ORANGE%%RUNENAME%%WHITE%[%RUNENUM%]%CONTINUE%
ItemDisplay[RUNE>19 RUNE<23]: %ORANGE%%RUNENAME%%YELLOW%[%RUNENUM%]%WHITE%%CONTINUE%
ItemDisplay[RUNE>22 RUNE<26]: %ORANGE%%RUNENAME%[%RUNENUM%]%WHITE%%CONTINUE%
ItemDisplay[RUNE>25]: %ORANGE%%RUNENAME%%GREEN%[%RUNENUM%]%WHITE%%CONTINUE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Drop Notifications
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[RUNE>19]: %NAME%%MAP%%NOTIFY-ORANGE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// [Optional] Disable the first rule of this group and enable the other two to stop receiving
// notifications for rune drops while above character level 80 if the rune is lower than Lem[20].
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[RUNE>0]: %NAME%%MAP%%NOTIFY-ITEM%
//ItemDisplay[CLVL<80 RUNE>0]: %NAME%%MAP%%NOTIFY-ITEM%
//ItemDisplay[RUNE>0]: %NAME%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Town Portal and ID Scrolls/Tomes and Keys ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[tsc]: %NAME%
ItemDisplay[isc]: %NAME%
ItemDisplay[tbk]: %NAME%
ItemDisplay[ibk]: %NAME%
ItemDisplay[key]: %NAME% //%RED%[%WHITE%No Match%RED%]%WHITE%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Rusted Arrows and Bolts (Shop) ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[aqv]: %NAME%
ItemDisplay[cqv]: %NAME%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Healing, Mana, and Rejuvination Potions ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// [Optional] Use potion names that are a compact version of standard/vanilla D2's names.
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[hp1]: %RED%[%WHITE%Minor Healing%RED%]%WHITE%
//ItemDisplay[hp2]: %RED%[%WHITE%Light Healing%RED%]%WHITE%
//ItemDisplay[hp3]: %RED%[%WHITE%Healing%RED%]%WHITE%
//ItemDisplay[hp4]: %RED%[%WHITE%Great Healing%RED%]%WHITE%
//ItemDisplay[hp5]: %RED%[%WHITE%Super Healing%RED%]%WHITE%
//ItemDisplay[mp1]: %BLUE%[%WHITE%Minor Mana%BLUE%]%WHITE%
//ItemDisplay[mp2]: %BLUE%[%WHITE%Light Mana%BLUE%]%WHITE%
//ItemDisplay[mp3]: %BLUE%[%WHITE%Mana%BLUE%]%WHITE%
//ItemDisplay[mp4]: %BLUE%[%WHITE%Great Mana%BLUE%]%WHITE%
//ItemDisplay[mp5]: %BLUE%[%WHITE%Super Mana%BLUE%]%WHITE%
//ItemDisplay[rvs]: %PURPLE%[%WHITE%Rejuvenation%PURPLE%]%WHITE%
//ItemDisplay[rvl]: %PURPLE%[%WHITE%Full Rejuvenation%PURPLE%]%WHITE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Default Potion Naming Method
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[hp1]: %RED%[%WHITE%H1%RED%]%WHITE%
ItemDisplay[hp2]: %RED%[%WHITE%H2%RED%]%WHITE%
ItemDisplay[hp3]: %RED%[%WHITE%H3%RED%]%WHITE%
ItemDisplay[hp4]: %RED%[%WHITE%H4%RED%]%WHITE%
ItemDisplay[hp5]: %RED%[%WHITE%H5%RED%]%WHITE%
ItemDisplay[mp1]: %BLUE%[%WHITE%M1%BLUE%]%WHITE%
ItemDisplay[mp2]: %BLUE%[%WHITE%M2%BLUE%]%WHITE%
ItemDisplay[mp3]: %BLUE%[%WHITE%M3%BLUE%]%WHITE%
ItemDisplay[mp4]: %BLUE%[%WHITE%M4%BLUE%]%WHITE%
ItemDisplay[mp5]: %BLUE%[%WHITE%M5%BLUE%]%WHITE%
ItemDisplay[rvs]: %PURPLE%[%WHITE%35%%PURPLE%]%WHITE%
ItemDisplay[rvl]: %PURPLE%[%WHITE%70%%PURPLE%]%WHITE%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Throwing Potions ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[opl]: %NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[gpl]: %NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[opm]: %NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[gpm]: %NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[ops]: %NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[gps]: %NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Special Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Pandemonium Keys
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[pk1]: %NAME% //Key of Terror
ItemDisplay[pk2]: %NAME% //Key of Hate
ItemDisplay[pk3]: %NAME% //Key of Destruction
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Token of Absolution + Essences
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[toa]: %NAME% //Token of Absolution
ItemDisplay[tes]: %NAME% //Twisted Essence
ItemDisplay[ceh]: %NAME% //Charged Essence
ItemDisplay[bet]: %NAME% //Burning Essence
ItemDisplay[fed]: %NAME% //Festering Essence
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Prime Evil Organs
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[dhn]: %NAME% //Diablo's Horn
ItemDisplay[bey]: %NAME% //Baal's Eye
ItemDisplay[mbr]: %NAME% //Mephisto's Brain
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Other Special Items
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[ear]: %NAME% //Player Ear
ItemDisplay[std]: %NAME% //Standard of Heroes
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ PoD Specific Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[cx5]: %NAME%%MAP%%NOTIFY-PURPLE% //Orb of Corruption
ItemDisplay[cx6]: %NAME% //Diablo's Soulstone
ItemDisplay[cx7]: %NAME% //Key of Chaos
ItemDisplay[maz]: %NAME% //Infernal Trial
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Relics
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[ma1]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma2]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma3]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma4]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma5]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma6]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma7]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma8]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma9]: %NAME%%MAP%%NOTIFY-ITEM%
ItemDisplay[ma10]: %NAME%%MAP%%NOTIFY-ITEM%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Catch-All for Misc Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[!(WEAPON OR ARMOR OR aqv OR aq2 OR cqv OR cq2 OR cm1 OR cm2 OR cm3 OR rin OR amu OR jew)]: %NAME%%RED%[%WHITE%%CODE%%RED%]%WHITE%
//╔═╦═══════════════════════════════════════════════════════════════════════════════════════════╦═╗
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║ Equipment and Magic Item Handling ║█║
//╠═╬═══════════════════════════════════════════════════════════════════════════════════════════╬═╣
//║█║███████████████████████████████████████████████████████████████████████████████████████████║█║
//╚═╩═══════════════════════════════════════════════════════════════════════════════════════════╩═╝
// This rule is solely to make sure item names in the gambling window show as their default.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[NMAG !ID]: %NAME%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Runeworded Equipment (Priority to remove the need to use !RW in rules.) ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[RW !ETH]: %WHITE%%NAME%%WHITE%
ItemDisplay[RW ETH]: %GRAY%E.%NAME%%WHITE%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Optional] Rules for Ignoring Specific Items ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
//ItemDisplay[CLVL>79 (rin OR amu) MAG !ID]: //Ignore all unidentified magic rings and amulets at character level 80+.
//ItemDisplay[cm2 MAG !ID]: //Ignore unidentified magic large charms.
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Only the top most enabled rule of this section is used.
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[ILVL<66 jew MAG !ID]: //Ignore unidentified magic jewels unless they have an item level high enough for ED +40%.
//ItemDisplay[ILVL<58 jew MAG !ID]: //Ignore unidentified magic jewels unless they have an item level high enough for Max Damage +30.
//ItemDisplay[ILVL<39 jew MAG !ID]: //Ignore unidentified magic jewels unless they have an item level high enough for IAS +15%.
//ItemDisplay[ILVL<35 jew MAG !ID]: //Ignore unidentified magic jewels unless they have an item level high enough for All Resistances +15%.
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Optional] Rules for Ignoring Specific Equipment Types ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// This will ignore all non-magical, magical, and rare drops of the selected equipment if it is
// enabled. Exclusions to these rules are if non-magical equips have been runeworded and if the
// magical/rare equips have already been identified.
//─────────────────────────────────────────────────────────────────────────────────────────────────
// The item codes are in the same order as the item names in the line's comment.
//─────────────────────────────────────────────────────────────────────────────────────────────────
// All Axes
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP1 !WP5 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Axes Except Throwing Axes
//─────────────────────────────────────────────────────────────────────────────────────────────────
// One-Handed Axes
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(hax OR 9ha OR 7ha) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Hand Axe, Hatchet, and Tomahawk
//ItemDisplay[(axe OR 9ax OR 7ax) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Axe, Cleaver, and Small Crescent
//ItemDisplay[(2ax OR 92a OR 72a) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Double Axe, Twin Axe, and Ettin Axe
//ItemDisplay[(mpi OR 9mp OR 7mp) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Military Pick, Crowbill, and War Spike
//ItemDisplay[(wax OR 9wa OR 7wa) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore War Axe, Naga, and Berserker Axe
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Two-Handed Axes
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(lax OR 9la OR 7la) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Large Axe, Military Axe, and Feral Axe
//ItemDisplay[(bax OR 9ba OR 7ba) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Broad Axe, Bearded Axe, and Silver-Edged Axe
//ItemDisplay[(btx OR 9bt OR 7bt) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Battle Axe, Tabar, and Decapitator
//ItemDisplay[(gax OR 9ga OR 7ga) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Great Axe, Gothic Axe, and Champion Axe
//ItemDisplay[(gix OR 9gi OR 7gi) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Giant Axe, Ancient Axe, Glorious Axe
//─────────────────────────────────────────────────────────────────────────────────────────────────
// All Mace Type Weapons (Clubs, Maces, and Hammers)
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP2 !leg (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Mace Type Weapons Except Scepters and Wirt's Leg
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Clubs
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(clb OR 9cl OR 7cl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Club, Cudgel, and Truncheon
//ItemDisplay[(spc OR 9sp OR 7sp) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Spiked Club, Barbed Club, and Tyrant Club
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Maces
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(mac OR 9ma OR 7ma) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Mace, Flanged Mace, and Reinforced Mace
//ItemDisplay[(mst OR 9mt OR 7mt) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Morning Star, Jagged Star, and Devil Star
//ItemDisplay[(fla OR 9fl OR 7fl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Flail, Knout, and Scourge
//─────────────────────────────────────────────────────────────────────────────────────────────────
// One-Handed Hammers
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(whm OR 9wh OR 7wh) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore War Hammer, Battle Hammer, and Legendary Mallet
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Two-Handed Hammers
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(mau OR 9m9 OR 7m7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Maul, War Club, and Ogre Maul
//ItemDisplay[(gma OR 9gm OR 7gm) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Great Maul, Martel de Fer, and Thunder Maul
//─────────────────────────────────────────────────────────────────────────────────────────────────
// All Swords
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP3 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Swords
//─────────────────────────────────────────────────────────────────────────────────────────────────
// One-Handed Swords
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(ssd OR 9ss OR 7ss) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Short Sword, Gladius, and Falcata
//ItemDisplay[(scm OR 9sm OR 7sm) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Scimitar, Cutlass, and Ataghan
//ItemDisplay[(sbr OR 9sb OR 7sb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Saber, Shamshir, and Elegant Blade
//ItemDisplay[(flc OR 9fc OR 7fc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Falchion, Tulwar, and Hydra Edge
//ItemDisplay[(crs OR 9cr OR 7cr) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Crystal Sword, Dimensional Blade, and Phase Blade
//ItemDisplay[(bsd OR 9bs OR 7bs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Broad Sword, Battle Sword, and Conquest Sword
//ItemDisplay[(lsd OR 9ls OR 7ls) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Long Sword, Rune Sword, and Cryptic Sword
//ItemDisplay[(wsd OR 9wd OR 7wd) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore War Sword, Ancient Sword, and Mythical Sword
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Two-Handed Swords
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(2hs OR 92h OR 72h) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Two-handed Sword, Espandon, and Legend Sword
//ItemDisplay[(clm OR 9cm OR 7cm) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Claymore, Dacian Falx, and Highland Blade
//ItemDisplay[(gis OR 9gs OR 7gs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Giant Sword, Tusk Sword, Balrog Blade
//ItemDisplay[(bsw OR 9b9 OR 7b7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Bastard Sword, Gothic Sword, and Champion Sword
//ItemDisplay[(flb OR 9fb OR 7fb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Flamberge, Zweihander, and Colossus Sword
//ItemDisplay[(gsd OR 9gd OR 7gd) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Great Sword, Executioner Sword, and Colossus Blade
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Daggers
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP4 !WP5 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Daggers Except Throwing Knives
//ItemDisplay[(dgr OR 9dg OR 7dg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Dagger, Poignard, and Bone Knife
//ItemDisplay[(dir OR 9di OR 7di) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Dirk, Rondel, and Mithril Point
//ItemDisplay[(kri OR 9kr OR 7kr) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Kris, Cinquedeas, and Fanged Knife
//ItemDisplay[(bld OR 9bl OR 7bl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Blade, Stilleto, and Legend Spike
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Throwing Weapons
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP5 !WP6 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Throwing Weapons Except Javelins
//ItemDisplay[(tkf OR 9tk OR 7tk) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Throwing Knife, Battle Dart, and Flying Knife
//ItemDisplay[(tax OR 9ta OR 7ta) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Throwing Axe, Francisca, and Flying Axe
//ItemDisplay[(bkf OR 9bk OR 7bk) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Balanced Knife, War Dart, and Winged Knife
//ItemDisplay[(bal OR 9b8 OR 7b8) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Balanced Axe, Hurlbat, and Winged Axe
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Javelins
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP6 !CL7 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Javelins Except Amazon Javelins
//ItemDisplay[(jav OR 9ja OR 7ja) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Javelin, War Javelin, and Hyperion Javelin
//ItemDisplay[(pil OR 9pi OR 7pi) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Pilum, Great Pilum, and Stygian Pilum
//ItemDisplay[(ssp OR 9s9 OR 7s7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Short Spear, Simbilan, and Balrog Spear
//ItemDisplay[(glv OR 9gl OR 7gl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Glaive, Spiculum, and Ghost Glaive
//ItemDisplay[(tsp OR 9ts OR 7ts) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Throwing Spear, Harpoon, and Winged Harpoon
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Spears
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP7 !(WP6 OR CL7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Spears Except Javelins and Amazon Spears
//ItemDisplay[(spr OR 9sr OR 7sr) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Spear, War Spear, and Hyperion Spear
//ItemDisplay[(tri OR 9tr OR 7tr) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Trident, Fuscina, and Stygian Pike
//ItemDisplay[(brn OR 9br OR 7br) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Brandistock, War Fork, and Mancatcher
//ItemDisplay[(spt OR 9st OR 7st) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Spetum, Yari, and Ghost Spear
//ItemDisplay[(pik OR 9p9 OR 7p7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Pike, Lance, and War Pike
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Polearms
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP8 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Polearms
//ItemDisplay[(bar OR 9b7 OR 7o7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Bardiche, Lochaber Axe, and Ogre Axe
//ItemDisplay[(vou OR 9vo OR 7vo) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Voulge, Bill, and Colossus Voulge
//ItemDisplay[(scy OR 9s8 OR 7s8) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Scythe, Battle Scythe, and Thresher
//ItemDisplay[(pax OR 9pa OR 7pa) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Poleaxe, Partizan, and Cryptic Axe
//ItemDisplay[(hal OR 9h9 OR 7h7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Halberd, Bec-de-Corbin, and Great Poleaxe
//ItemDisplay[(wsc OR 9wc OR 7wc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore War Scythe, Grim Scythe, and Giant Thresher
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Bows
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP9 !(WP10 OR CL7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Bows Except Crossbows and Amazon Bows
//ItemDisplay[(sbw OR 8sb OR 6sb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Short Bow, Edge Bow, and Spider Bow
//ItemDisplay[(hbw OR 8hb OR 6hb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Hunter's Bow, Razor Bow, and Blade Bow
//ItemDisplay[(lbw OR 8lb OR 6lb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Long Bow, Cedar Bow, and Shadow Bow
//ItemDisplay[(cbw OR 8cb OR 6cb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Composite Bow, Double Bow, and Great Bow
//ItemDisplay[(sbb OR 8s8 OR 6s7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Short Battle Bow, Short Siege Bow, and Diamond Bow
//ItemDisplay[(lbb OR 8l8 OR 6l7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Long Battle Bow, Long Siege Bow, and Crusader Bow
//ItemDisplay[(swb OR 8sw OR 6sw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Short War Bow, Rune Bow, and Ward Bow
//ItemDisplay[(lwb OR 8lw OR 6lw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Long War Bow, Gothic Bow, and Hydra Bow
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Crossbows
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP10 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Crossbows
//ItemDisplay[(lxb OR 8lx OR 6lx) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Light Crossbow, Arbalest, and Pellet Bow
//ItemDisplay[(mxb OR 8mx OR 6mx) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Crossbow, Siege Crossbow, and Gorgon Crossbow
//ItemDisplay[(hxb OR 8hx OR 6hx) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Heavy Crossbow, Ballista, and Colossus Crossbow
//ItemDisplay[(rxb OR 8rx OR 6rx) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Repeating Crossbow, Chu-Ko-Nu, and Demon Crossbow
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Staves
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP11 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Staves
//ItemDisplay[(sst OR 8ss OR 6ss) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Short Staff, Jo Staff, and Walking Stick
//ItemDisplay[(lst OR 8ls OR 6ls) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Long Staff, Quarterstaff, and Stalagmite
//ItemDisplay[(cst OR 8cs OR 6cs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Gnarled Staff, Cedar Staff, and Elder Staff
//ItemDisplay[(bst OR 8bs OR 6bs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Battle Staff, Gothic Staff, and Shillelagh
//ItemDisplay[(wst OR 8ws OR 6ws) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore War Staff, Rune Staff, and Archon Staff
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Wands
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP12 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Wands
//ItemDisplay[(wnd OR ywn OR 9wn) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Wands That Can Not Have 2 Sockets
//ItemDisplay[(wnd OR 9wn OR 7wn) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Wand, Burnt Wand, and Polished Wand
//ItemDisplay[(ywn OR 9yw OR 7yw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Yew Wand, Petrified Wand, and Ghost Wand
//ItemDisplay[(bwn OR 9bw OR 7bw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Bone Wand, Tomb Wand, and Lich Wand
//ItemDisplay[(gwn OR 9gw OR 7gw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Grim Wand, Grave Wand, and Unearthed Wand
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Scepters
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[WP13 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Scepters
//ItemDisplay[(scp OR 9sc OR 7sc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Scepter, Rune Scepter, and Mighty Scepter
//ItemDisplay[(gsc OR 9qs OR 7qs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Grand Scepter, Holy Water Sprinkler, and Seraph Rod
//ItemDisplay[(wsp OR 9ws OR 7ws) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore War Scepter, Divine Scepter, and Caduceus
//─────────────────────────────────────────────────────────────────────────────────────────────────
// All Amazon Weapons
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL7 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Amazon Weapons
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Amazon Bows
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(am1 OR am6 OR amb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Stag Bow, Ashwood Bow, or Matriarchal Bow
//ItemDisplay[(am2 OR am7 OR amc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Reflex Bow, Ceremonial Bow, and Grand Matron Bow
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Amazon Spears
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(am3 OR am8 OR amd) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Maiden Spear, Ceremonial Spear, and Matriarchal Spear
//ItemDisplay[(am4 OR am9 OR ame) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Maiden Pike, Ceremonial Pike, and Matriarchal Pike
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Amazon Javelins
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(am5 OR ama OR amf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Maiden Javelin, Ceremonial Javelin, and Matriarchal Javelin
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Assassin Katars
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL5 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Katars
//ItemDisplay[((CL5 AND NORM) OR 9ar OR 9wb OR 9xf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Katars That Can Not Have Staffmods
//ItemDisplay[(ktr OR wrb OR axf OR ces OR 9wb OR 9xf OR 9cs OR 7xf OR 7cs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Katars That Can Not Have 3 Sockets
//ItemDisplay[(ktr OR 9ar OR 7ar) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Katar, Quhab, and Suwayyah
//ItemDisplay[(wrb OR 9wb OR 7wb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Wrist Blade, Wrist Spike, and Wrist Sword
//ItemDisplay[(axf OR 9xf OR 7xf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Hatchet Hands, Fascia, and War Fist
//ItemDisplay[(ces OR 9cs OR 7cs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Cestus, Hand Scythe, and Battle Cestus
//ItemDisplay[(clw OR 9lw OR 7lw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Claws, Greater Claws, and Feral Claws
//ItemDisplay[(btl OR 9tw OR 7tw) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Blade Talons, Greater Talons, and Runic Talons
//ItemDisplay[(skr OR 9qr OR 7qr) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Scissors Katar, Scissors Quhab, and Scissors Suwayyah
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Sorceress Orbs
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL6 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Orbs
//ItemDisplay[CL6 !(ob5 OR oba OR obf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Orbs That Can Not Have 3 Sockets
//ItemDisplay[(ob1 OR ob6 OR obb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Eagle Orb, Glowing Orb, and Heavenly Stone
//ItemDisplay[(ob2 OR ob7 OR obc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Sacred Globe, Crystalline Globe, and Eldritch Orb
//ItemDisplay[(ob3 OR ob8 OR obd) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Smoked Sphere, Cloudy Sphere, and Demon Heart
//ItemDisplay[(ob4 OR ob9 OR obe) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Clasped Orb, Sparkling Ball, and Vortex Orb
//ItemDisplay[(ob5 OR oba OR obf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Jared's Stone, Swirling Crytal, and Dimensional Shard
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Arrows / Bolts
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(aqv OR aq2) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Arrows
//ItemDisplay[(cqv OR cq2) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Bolts
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Shields
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ3 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Shields Except Necromancer Shrunken Heads and Paladin Shields
//ItemDisplay[(buc OR xuc OR uuc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Buckler, Defender, and Heater [Light]
//ItemDisplay[(sml OR xml OR uml) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Small Shield, Round Shield, and Luna [Light]
//ItemDisplay[(spk OR xpk OR upk) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Spiked Shield, Barbed Shield, and Blade Barrier [Light]
//ItemDisplay[(kit OR xit OR uit) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Kite Shield, Dragon Shield, and Monarch [Light]
//ItemDisplay[(bsh OR xsh OR ush) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Bone Shield, Grim Shield, and Troll Nest [Light]
//ItemDisplay[(lrg OR xrg OR urg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Large Shield, Scutum, and Hyperion [Medium]
//ItemDisplay[(gts OR xts OR uts) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Gothic Shield, Ancient Shield, and Ward [Medium]
//ItemDisplay[(tow OR xow OR uow) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Tower Shield, Pavise, and Aegis [Heavy]
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Body Armor
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ2 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Body Armor
//ItemDisplay[(qui OR xui OR uui) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Quilted Armor, Ghost Armor, and Dusk Shroud [Light]
//ItemDisplay[(lea OR xea OR uea) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Leather Armor, Serpentskin, and Wyrmhide [Light]
//ItemDisplay[(hla OR xla OR ula) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Hard Leather Armor, Demonhide Armor, and Scarab Husk [Light]
//ItemDisplay[(stu OR xtu OR utu) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Studded Leather, Trellised Armor, and Wire Fleece [Light]
//ItemDisplay[(brs OR xrs OR urs) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Breast Plate, Cuirass, and Great Hauberk [Light]
//ItemDisplay[(ltp OR xtp OR utp) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Light Plate, Mage Plate, and Archon Plate [Light]
//ItemDisplay[(rng OR xng OR ung) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Ring Mail, Linked Mail, and Diamond Mail [Medium]
//ItemDisplay[(chn OR xhn OR uhn) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Chain Mail, Mesh Armor, and Boneweave [Medium]
//ItemDisplay[(spl OR xpl OR upl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Splint Mail, Russet Armor, and Balrog Skin [Medium]
//ItemDisplay[(fld OR xld OR uld) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Field Plate, Sharktooth, and Kraken Shell [Medium]
//ItemDisplay[(gth OR xth OR uth) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Gothic Plate, Embossed Plate, and Lacquered Plate [Medium]
//ItemDisplay[(aar OR xar OR (ELT uar)) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Ancient Armor, Ornate Armor, and Sacred Armor [Medium]
//ItemDisplay[(scl OR xcl OR ucl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Scale Mail, Tigulated Mail, and Loricated Mail [Heavy]
//ItemDisplay[(plt OR xlt OR ult) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Plate Mail, Templar Coat, and Hellforge Plate [Heavy]
//ItemDisplay[(ful OR xul OR uul) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Full Plate, Chaos Armor, and Shadow Plate [Heavy]
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Helms
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ1 !(CL1 OR CL2 OR EQ7) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Helms Except Barbarian Helms, Druid Pelts, and Circlets
//ItemDisplay[(cap OR xap OR uap) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Cap, War Hat, and Shako
//ItemDisplay[(skp OR xkp OR ukp) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Skull Cap, Sallet, and Hydraskull
//ItemDisplay[(hlm OR xlm OR ulm) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Helm, Casque, and Armet
//ItemDisplay[(fhl OR xhl OR uhl) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Full Helm, Basinet, and Giant Conch
//ItemDisplay[(ghm OR xhm OR uhm) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Great Helm, Winged Helm, and Spired Helm
//ItemDisplay[(crn OR xrn OR urn) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Crown, Grand Crown, and Corona
//ItemDisplay[(msk OR xsk OR usk) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Mask, Death Mask, and Demonhead
//ItemDisplay[(bhm OR xh9 OR uh9) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Bone Helm, Grim Helm, and Bone Visage
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Circlets
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ7 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Circlets
//ItemDisplay[ci0 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Circlet
//ItemDisplay[ci1 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Coronet
//ItemDisplay[ci2 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Tiara
//ItemDisplay[ci3 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Diadem
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Barbarian Helms
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL2 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Barbarian Helms
//ItemDisplay[(ba1 OR ba6 OR bab) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Jawbone Cap, Jawbone Visor, and Carnage Helm
//ItemDisplay[(ba2 OR ba7 OR bac) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Fanged Helm, Lion Helm, and Fury Visor
//ItemDisplay[(ba3 OR ba8 OR bad) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Horned Helm, Rage Mask, and Destroyer Helm
//ItemDisplay[(ba4 OR ba9 OR bae) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Assault Helmet, Savage Helmet, and Conqueror Crown
//ItemDisplay[(ba5 OR baa OR baf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Avenger Guard, Slayer Guard, and Guardian Crown
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Druid Pelts
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL1 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Druid Pelts
//ItemDisplay[(dr1 OR dr6 OR drb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Wolf Head, Alpha Helm, and Blood Spirit
//ItemDisplay[(dr2 OR dr7 OR drc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Hawk Helm, Griffon Headress, and Sun Spirit
//ItemDisplay[(dr3 OR dr8 OR drd) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Antlers, Hunter's Guise, and Earth Spirit
//ItemDisplay[(dr4 OR dr9 OR dre) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Falcon Mask, Sacred Feathers, and Sky Spirit
//ItemDisplay[(dr5 OR dra OR drf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Spirit Mask, Totemic Mask, and Dream Spirit
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Necromancer Shrunken Heads
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL4 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Necromancer Shrunken Heads
//ItemDisplay[(ne1 OR ne6 OR neb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Preserved Head, Mummified Trophy, and Minion Skull
//ItemDisplay[(ne2 OR ne7 OR neg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Zombie Head, Fetish Trophy, and Hellspawn Skull
//ItemDisplay[(ne3 OR ne8 OR ned) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Unraveller Head, Sexton Trophy, and Overseer Skull
//ItemDisplay[(ne4 OR ne9 OR nee) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Gargoyle Head, Cantor Trophy, and Succubus Skull
//ItemDisplay[(ne5 OR nea OR nef) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Demon Head, Heirophant Trophy, and Bloodlord Skull
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Paladin Shields
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CL3 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Paladin Shields
//ItemDisplay[(pa1 OR pa6 OR pab) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Targe, Akaran Targe, and Sacred Targe
//ItemDisplay[(pa2 OR pa7 OR pac) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Rondache, Akaran Rondache, and Sacred Rondache
//ItemDisplay[(pa3 OR pa8 OR pad) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Heraldic Shield, Protector Shield, and Kurast Shield
//ItemDisplay[(pa4 OR pa9 OR pae) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Aerin Shield, Gilded Shield, and Zakarum Shield
//ItemDisplay[(pa5 OR paa OR paf) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Crown Shield, Royal Shield, and Vortex Shield
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Gloves
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ4 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Gloves
//ItemDisplay[(lgl OR xlg OR ulg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Leather Gloves, Demonhide Gloves, and Bramble Mitts
//ItemDisplay[(vgl OR xvg OR uvg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Heavy Gloves, Sharkskin Gloves, and Vampirebone Gloves
//ItemDisplay[(mgl OR xmg OR umg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Chain Gloves, Heavy Bracers, and Vambraces
//ItemDisplay[(tgl OR xtg OR utg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Light Gauntlets, Battle Gauntlets, and Crusader Gauntlets
//ItemDisplay[(hgl OR xhg OR uhg) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Gauntlets, War Gauntlets, and Ogre Gauntlets
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Boots
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ5 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Boots
//ItemDisplay[(lbt OR xlb OR ulb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Boots, Demonhide Boots, and Wyrmhide Boots
//ItemDisplay[(vbt OR xvb OR uvb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Heavy Boots, Sharkskin Boots, and Scarabshell Boots
//ItemDisplay[(mbt OR xmb OR umb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Chain Boots, Mesh Boots, and Boneweave Boots
//ItemDisplay[(tbt OR xtb OR utb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Light Plated Boots, Battle Boots, and Mirrored Boots
//ItemDisplay[(hbt OR xhb OR uhb) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Greaves, War Boots, and Myrmidon Greaves
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Belts
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[EQ6 (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Belts
//ItemDisplay[NORM EQ6 !hbl (NMAG OR ((MAG OR RARE) !ID))]: //Ignore All Belts That Do Not Have 16 Potion Slots
//ItemDisplay[(lbl OR zlb OR ulc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Sash, Demonhide Sash, and Spiderweb Sash
//ItemDisplay[(vbl OR zvb OR uvc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Light Belt, Sharkskin Belt, and Vampirefang Belt
//ItemDisplay[(mbl OR zmb OR umc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Belt, Mesh Belt, and Mithril Coil
//ItemDisplay[(tbl OR ztb OR utc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Heavy Belt, Battle Belt, and Troll Belt
//ItemDisplay[(hbl OR zhb OR uhc) (NMAG OR ((MAG OR RARE) !ID))]: //Ignore Plated Belt, War Belt, and Colossus Girdle
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Optional] Rules for Ignoring Specific Classic Set Pieces ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
//ItemDisplay[rin SET !ID]: //Ignore Angelic Halo and Cathan's Seal
//ItemDisplay[rng SET !ID]: //Ignore Angelic Mantle
//ItemDisplay[sbr SET !ID]: //Ignore Angelic Sickle
//ItemDisplay[wst SET !ID]: //Ignore Arcanna's Deathwand
//ItemDisplay[ltp SET !ID]: //Ignore Arcanna's Flesh
//ItemDisplay[skp SET !ID]: //Ignore Arcanna's Head
//ItemDisplay[vbl SET !ID]: //Ignore Arctic Binding
//ItemDisplay[qui SET !ID]: //Ignore Arctic Furs
//ItemDisplay[swb SET !ID]: //Ignore Arctic Horn
//ItemDisplay[tgl SET !ID]: //Ignore Arctic Mitts and Iratha's Cuff
//ItemDisplay[2ax SET !ID]: //Ignore Berserker's Hatchet
//ItemDisplay[spl SET !ID]: //Ignore Berserker's Hauberk
//ItemDisplay[hlm SET !ID]: //Ignore Berserker's Headgear
//ItemDisplay[chn SET !ID]: //Ignore Cathan's Mesh
//ItemDisplay[bst SET !ID]: //Ignore Cathan's Rule
//ItemDisplay[msk SET !ID]: //Ignore Cathan's Visage
//ItemDisplay[gsc SET !ID]: //Ignore Civerb's Cudgel
//ItemDisplay[lrg SET !ID]: //Ignore Civerb's Ward
//ItemDisplay[sml SET !ID]: //Ignore Cleglaw's Claw
//ItemDisplay[mgl SET !ID]: //Ignore Cleglaw's Pincers
//ItemDisplay[lsd SET !ID]: //Ignore Cleglaw's Tooth
//ItemDisplay[lbl SET !ID]: //Ignore Death's Guard
//ItemDisplay[lgl SET !ID]: //Ignore Death's Hand
//ItemDisplay[wsd SET !ID]: //Ignore Death's Touch
//ItemDisplay[buc SET !ID]: //Ignore Hsarus' Iron Fist
//ItemDisplay[mbt SET !ID]: //Ignore Hsarus' Iron Heel
//ItemDisplay[mbl SET !ID]: //Ignore Hsarus' Iron Stay and Hwanin's Blessing
//ItemDisplay[cap SET !ID]: //Ignore Infernal Cranium and Sander's Paragon
//ItemDisplay[tbl SET !ID]: //Ignore Infernal Sign and Iratha's Cord
//ItemDisplay[gwn SET !ID]: //Ignore Infernal Torch
//ItemDisplay[crn SET !ID]: //Ignore Iratha's Coil and Milabrega's Diadem
//ItemDisplay[brs SET !ID]: //Ignore Isenhart's Case
//ItemDisplay[fhl SET !ID]: //Ignore Isenhart's Horns
//ItemDisplay[bsd SET !ID]: //Ignore Isenhart's Lightbrand
//ItemDisplay[gts SET !ID]: //Ignore Isenhart's Parry
//ItemDisplay[kit SET !ID]: //Ignore Milabrega's Orb
//ItemDisplay[aar SET !ID]: //Ignore Milabrega's Robe
//ItemDisplay[wsp SET !ID]: //Ignore Milabrega's Rod
//ItemDisplay[hgl SET !ID]: //Ignore Sigon's Gage
//ItemDisplay[tow SET !ID]: //Ignore Sigon's Guard
//ItemDisplay[hbt SET !ID]: //Ignore Sigon's Sabot
//ItemDisplay[gth SET !ID]: //Ignore Sigon's Shelter
//ItemDisplay[ghm SET !ID]: //Ignore Sigon's Visor
//ItemDisplay[hbl SET !ID]: //Ignore Sigon's Wrap
//ItemDisplay[mpi SET !ID]: //Ignore Tancred's Crowbill
//ItemDisplay[lbt SET !ID]: //Ignore Tancred's Hobnails
//ItemDisplay[bhm SET !ID]: //Ignore Tancred's Skull
//ItemDisplay[ful SET !ID]: //Ignore Tancred's Spine
//ItemDisplay[lea SET !ID]: //Ignore Vidala's Ambush
//ItemDisplay[lbb SET !ID]: //Ignore Vidala's Barb
//ItemDisplay[tbt SET !ID]: //Ignore Vidala's Fetlock
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Custom] Rules for Ignoring Specific Equipment ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Custom rules go here.
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Immediately Ignored Equipment ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Ignore all non-magical arrows and bolts at character level 6+.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL>5 (aqv OR aq2 OR cqv OR cq2) NMAG]:
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore all non-magical gloves, boots, and belts at character level 6+. Unidentified magical
// gloves, boots, and belts will be ignored later after the crafting bases section.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL>5 EQ4 NMAG]: //Ignore Gloves
ItemDisplay[CLVL>5 EQ5 NMAG]: //Ignore Boots
ItemDisplay[CLVL>5 EQ6 NMAG]: //Ignnore Belts
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore all non-elite non-magical non-ethereal equipment that have no sockets and are not
// superior, except Wirt's Leg, throwing weapons, and equipment that can have staffmods at
// character level 6+. Unidentified magical equipment of the same type will be ignored later after
// the crafting bases section.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL>5 NORM CL5 NMAG !SUP !ETH SOCK=0]: //Normal Katars
ItemDisplay[CLVL>5 (9ar OR 9wb OR 9xf) NMAG !SUP !ETH SOCK=0]: //Exceptional Katars That Can't Have Staffmods
ItemDisplay[CLVL>5 !ELT WP1 !WP5 NMAG !SUP !ETH SOCK=0]: //Axes Except Throwing Axes
ItemDisplay[CLVL>5 !ELT WP2 !leg NMAG !SUP !ETH SOCK=0]: //Maces Except Wirt's Leg (Does Not Include Scepters)
ItemDisplay[CLVL>5 !ELT WP3 NMAG !SUP !ETH SOCK=0]: //Swords
ItemDisplay[CLVL>5 !ELT WP4 !WP5 NMAG !SUP !ETH SOCK=0]: //Daggers Except Throwing Knives
ItemDisplay[CLVL>5 !ELT WP7 !WP5 NMAG !SUP !ETH SOCK=0]: //Spears Except Javelins
ItemDisplay[CLVL>5 !ELT WP8 NMAG !SUP !ETH SOCK=0]: //Polearms
ItemDisplay[CLVL>5 !ELT WP9 NMAG !SUP !ETH SOCK=0]: //Bows
ItemDisplay[CLVL>5 !ELT WP10 NMAG !SUP !ETH SOCK=0]: //Crossbows
ItemDisplay[CLVL>5 !ELT EQ1 !(CL1 OR CL2) NMAG !SUP !ETH SOCK=0]: //Helmets/Circlets Except Barb Helms and Druid Pelts
ItemDisplay[CLVL>5 !ELT EQ2 NMAG !SUP !ETH SOCK=0 DEF<250]: //Body Armor Except Any with 250+ Defense
ItemDisplay[CLVL>5 !ELT EQ3 NMAG !SUP !ETH SOCK=0]: //Shields (Does Not Include Paladin Shields or Necro Heads)
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore any non-magical non-ethereal non-superior elite body armor if their defense is not on the
// higher end.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[(uui OR uea OR ula OR utu) NMAG !SUP !ETH DEF<450]: //Dusk Shroud, Wyrmhide, Scarab Husk, and Wire Fleece
ItemDisplay[(ung OR ucl OR urs OR uhn) NMAG !SUP !ETH DEF<475]: //Diamond Mail, Loricated Mail, Great Hauberk, and Boneweave
ItemDisplay[(upl OR utp OR uld OR ult) NMAG !SUP !ETH DEF<500]: //Balrog Skin, Archon Plate, Kraken Shell, and Hellforge Plate
ItemDisplay[(uth OR uul) NMAG !SUP !ETH DEF<525]: //Lacquered Plate and Shadow Plate
ItemDisplay[ELT uar NMAG !SUP !ETH DEF<550]: //Sacred Armor ("ELT" is included due to a previously reported bug with "uar")
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore all non-magical Balanced Axes, Hurlbats, and Winged Axes due to the space they take up.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[(bal OR 9b8 OR 7b8) NMAG]:
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore non-magical throwing weapons based on character level and vendor price. Only Amazon
// javelins are fully exempt from this section. Since all non-magical are shown while under
// character level 6, a later portion will affix the vendor price if warranted.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL>79 PRICE<35000 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>69 PRICE<25000 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>40 PRICE<20000 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>31 PRICE<10000 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>23 PRICE<5000 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>16 PRICE<2500 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>7 PRICE<1000 WP5 !(ELT CL7) NMAG]:
ItemDisplay[CLVL>5 PRICE<500 WP5 !(ELT CL7) NMAG]:
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore all non-magical equips that could have had staffmods but don't, except elite versions.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[!ELT CL1 NMAG !(SK221>0 OR SK222>0 OR SK223>0 OR SK224>0 OR SK225>0 OR SK226>0 OR SK227>0 OR SK228>0 OR SK229>0 OR SK230>0 OR SK231>0 OR SK232>0 OR SK233>0 OR SK234>0 OR SK235>0 OR SK236>0 OR SK237>0 OR SK238>0 OR SK239>0 OR SK240>0 OR SK241>0 OR SK242>0 OR SK243>0 OR SK244>0 OR SK245>0 OR SK246>0 OR SK247>0 OR SK248>0 OR SK249>0 OR SK250>0)]:
ItemDisplay[!ELT CL2 NMAG !(SK126>0 OR SK127>0 OR SK128>0 OR SK129>0 OR SK130>0 OR SK131>0 OR SK132>0 OR SK133>0 OR SK134>0 OR SK135>0 OR SK136>0 OR SK137>0 OR SK138>0 OR SK139>0 OR SK140>0 OR SK141>0 OR SK142>0 OR SK143>0 OR SK144>0 OR SK145>0 OR SK146>0 OR SK147>0 OR SK148>0 OR SK149>0 OR SK150>0 OR SK151>0 OR SK152>0 OR SK153>0 OR SK154>0 OR SK155>0)]:
ItemDisplay[!ELT (CL4 OR WP12) NMAG !(SK66>0 OR SK67>0 OR SK68>0 OR SK69>0 OR SK70>0 OR SK71>0 OR SK72>0 OR SK73>0 OR SK74>0 OR SK75>0 OR SK76>0 OR SK77>0 OR SK78>0 OR SK79>0 OR SK80>0 OR SK81>0 OR SK82>0 OR SK83>0 OR SK84>0 OR SK85>0 OR SK86>0 OR SK87>0 OR SK88>0 OR SK89>0 OR SK90>0 OR SK91>0 OR SK92>0 OR SK93>0 OR SK94>0 OR SK95>0)]:
ItemDisplay[(9cs OR 9lw OR 9tw OR 9qr) NMAG !(SK251>0 OR SK252>0 OR SK253>0 OR SK254>0 OR SK255>0 OR SK256>0 OR SK257>0 OR SK258>0 OR SK259>0 OR SK260>0 OR SK261>0 OR SK262>0 OR SK263>0 OR SK264>0 OR SK265>0 OR SK266>0 OR SK267>0 OR SK268>0 OR SK269>0 OR SK270>0 OR SK271>0 OR SK272>0 OR SK273>0 OR SK274>0 OR SK275>0 OR SK276>0 OR SK277>0 OR SK278>0 OR SK279>0 OR SK280>0)]:
ItemDisplay[!ELT (CL6 OR WP11) NMAG !(SK36>0 OR SK37>0 OR SK38>0 OR SK39>0 OR SK40>0 OR SK41>0 OR SK42>0 OR SK43>0 OR SK44>0 OR SK45>0 OR SK46>0 OR SK47>0 OR SK48>0 OR SK49>0 OR SK50>0 OR SK51>0 OR SK52>0 OR SK53>0 OR SK54>0 OR SK55>0 OR SK56>0 OR SK57>0 OR SK58>0 OR SK59>0 OR SK60>0 OR SK61>0 OR SK62>0 OR SK63>0 OR SK64>0 OR SK65>0)]:
ItemDisplay[!ELT WP13 NMAG !(SK96>0 OR SK97>0 OR SK98>0 OR SK99>0 OR SK100>0 OR SK101>0 OR SK102>0 OR SK103>0 OR SK104>0 OR SK105>0 OR SK106>0 OR SK107>0 OR SK108>0 OR SK109>0 OR SK110>0 OR SK111>0 OR SK112>0 OR SK113>0 OR SK114>0 OR SK115>0 OR SK116>0 OR SK117>0 OR SK118>0 OR SK119>0 OR SK120>0 OR SK121>0 OR SK122>0 OR SK123>0 OR SK124>0 OR SK125>0)]:
//─────────────────────────────────────────────────────────────────────────────────────────────────
// [Optional] Ignore all non-magical elite equips that could have had staffmods but don't.
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[ELT CL1 NMAG !(SK221>0 OR SK222>0 OR SK223>0 OR SK224>0 OR SK225>0 OR SK226>0 OR SK227>0 OR SK228>0 OR SK229>0 OR SK230>0 OR SK231>0 OR SK232>0 OR SK233>0 OR SK234>0 OR SK235>0 OR SK236>0 OR SK237>0 OR SK238>0 OR SK239>0 OR SK240>0 OR SK241>0 OR SK242>0 OR SK243>0 OR SK244>0 OR SK245>0 OR SK246>0 OR SK247>0 OR SK248>0 OR SK249>0 OR SK250>0)]:
//ItemDisplay[ELT CL2 NMAG !(SK126>0 OR SK127>0 OR SK128>0 OR SK129>0 OR SK130>0 OR SK131>0 OR SK132>0 OR SK133>0 OR SK134>0 OR SK135>0 OR SK136>0 OR SK137>0 OR SK138>0 OR SK139>0 OR SK140>0 OR SK141>0 OR SK142>0 OR SK143>0 OR SK144>0 OR SK145>0 OR SK146>0 OR SK147>0 OR SK148>0 OR SK149>0 OR SK150>0 OR SK151>0 OR SK152>0 OR SK153>0 OR SK154>0 OR SK155>0)]:
//ItemDisplay[ELT (CL4 OR WP12) NMAG !(SK66>0 OR SK67>0 OR SK68>0 OR SK69>0 OR SK70>0 OR SK71>0 OR SK72>0 OR SK73>0 OR SK74>0 OR SK75>0 OR SK76>0 OR SK77>0 OR SK78>0 OR SK79>0 OR SK80>0 OR SK81>0 OR SK82>0 OR SK83>0 OR SK84>0 OR SK85>0 OR SK86>0 OR SK87>0 OR SK88>0 OR SK89>0 OR SK90>0 OR SK91>0 OR SK92>0 OR SK93>0 OR SK94>0 OR SK95>0)]:
//ItemDisplay[ELT CL5 NMAG !(SK251>0 OR SK252>0 OR SK253>0 OR SK254>0 OR SK255>0 OR SK256>0 OR SK257>0 OR SK258>0 OR SK259>0 OR SK260>0 OR SK261>0 OR SK262>0 OR SK263>0 OR SK264>0 OR SK265>0 OR SK266>0 OR SK267>0 OR SK268>0 OR SK269>0 OR SK270>0 OR SK271>0 OR SK272>0 OR SK273>0 OR SK274>0 OR SK275>0 OR SK276>0 OR SK277>0 OR SK278>0 OR SK279>0 OR SK280>0)]:
//ItemDisplay[ELT (CL6 OR WP11) NMAG !(SK36>0 OR SK37>0 OR SK38>0 OR SK39>0 OR SK40>0 OR SK41>0 OR SK42>0 OR SK43>0 OR SK44>0 OR SK45>0 OR SK46>0 OR SK47>0 OR SK48>0 OR SK49>0 OR SK50>0 OR SK51>0 OR SK52>0 OR SK53>0 OR SK54>0 OR SK55>0 OR SK56>0 OR SK57>0 OR SK58>0 OR SK59>0 OR SK60>0 OR SK61>0 OR SK62>0 OR SK63>0 OR SK64>0 OR SK65>0)]:
//ItemDisplay[ELT WP13 NMAG !(SK96>0 OR SK97>0 OR SK98>0 OR SK99>0 OR SK100>0 OR SK101>0 OR SK102>0 OR SK103>0 OR SK104>0 OR SK105>0 OR SK106>0 OR SK107>0 OR SK108>0 OR SK109>0 OR SK110>0 OR SK111>0 OR SK112>0 OR SK113>0 OR SK114>0 OR SK115>0 OR SK116>0 OR SK117>0 OR SK118>0 OR SK119>0 OR SK120>0 OR SK121>0 OR SK122>0 OR SK123>0 OR SK124>0 OR SK125>0)]:
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ General Equipment Processing ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[INF !ETH]: %RED%%NAME%%CONTINUE%
ItemDisplay[NMAG !INF !ETH]: %WHITE%%NAME%%CONTINUE%
ItemDisplay[MAG]: %BLUE%%NAME%%CONTINUE%
ItemDisplay[RARE]: %YELLOW%%NAME%%CONTINUE%
ItemDisplay[SET]: %GREEN%%NAME%%CONTINUE%
ItemDisplay[UNI]: %GOLD%%NAME%%CONTINUE%
ItemDisplay[CRAFT]: %ORANGE%%NAME%%CONTINUE%
ItemDisplay[ETH]: %GRAY%E.%NAME%%CONTINUE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Sockets for everything except non-magical items as they're handled later on.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[!NMAG SOCK>0]: %NAME%%BLUE%[%WHITE%%SOCKETS%%BLUE%]%CONTINUE%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Inferior Equipment ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Inferior Equipment Exclusions for Imbuing
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Everything in this section can roll a +2 class skills prefix when imbued, regardless of
// character level.
//
// The resulting rares can be rerolled as needed using either rare rerolling recipe.
//
// Amazon and Paladin class equips are not included due to low level imbues being detrimental to
// the automods they can have. Character level of 56+ (Affix Level 60+) to have a chance to get
// +3 Skills on Amazon weapons, and a character level of 46+ (Affix Level 50+) for all resistances
// +35%-45% for Paladin shields.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[ci3 INF]: %NAME%%YELLOW%[I]%WHITE% //All Classes: Diadem
//─────────────────────────────────────────────────────────────────────────────────────────────────
// [Optional] Inferior Equipment Exclusions for Imbuing
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[(7lw OR 7tw OR 7qr) INF]: %NAME%%YELLOW%[I]%WHITE% //Assassin: Feral Claws, Runic Talons, and Scissors Suwayyah
//ItemDisplay[(bae OR baf) INF]: %NAME%%YELLOW%[I]%WHITE% //Barbarian: Conqueror Crown and Guardian Crown
//ItemDisplay[(drd OR dre OR drf) INF]: %NAME%%YELLOW%[I]%WHITE% //Druid: Earth Spirit, Sky Spirit, and Dream Spirit
//ItemDisplay[(nee OR nef) INF]: %NAME%%YELLOW%[I]%WHITE% //Necromancer: Succubus Skull and Bloodlord Skull
//ItemDisplay[obf INF]: %NAME%%YELLOW%[I]%WHITE% //Sorceress: Dimensional Shard
//─────────────────────────────────────────────────────────────────────────────────────────────────
// [Custom] Inferior Equipment Exclusions
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[ INF]: %NAME%%YELLOW%[I]%WHITE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// [Optional] Show some possibly useful inferior Necro Heads with staffmods. (Based on Character
// Level)
//─────────────────────────────────────────────────────────────────────────────────────────────────
//ItemDisplay[CLVL<40 CL4 INF SK69>2 SK70>2]: %NAME%%BLUE%[S.Mastery\S.Warrior+3]%WHITE%
//ItemDisplay[CLVL<30 CL4 INF SK69>2 SK70>1]: %NAME%%BLUE%[S.Mastery+3\S.Warrior+2]%WHITE%
//ItemDisplay[CLVL<25 CL4 INF SK69>2 SK70>0]: %NAME%%BLUE%[S.Mastery+3\S.Warrior+1]%WHITE%
//ItemDisplay[CLVL<30 CL4 INF SK69>1 SK70>2]: %NAME%%BLUE%[S.Mastery+2\S.Warrior+3]%WHITE%
//ItemDisplay[CLVL<25 CL4 INF SK69>0 SK70>2]: %NAME%%BLUE%[S.Mastery+1\S.Warrior+3]%WHITE%
//ItemDisplay[CLVL<25 CL4 INF SK69>1 SK70>1]: %NAME%%BLUE%[S.Mastery\S.Warrior+2]%WHITE%
//ItemDisplay[CLVL<20 CL4 INF SK69>1 SK70>0]: %NAME%%BLUE%[S.Mastery+2\S.Warrior+1]%WHITE%
//ItemDisplay[CLVL<20 CL4 INF SK69>0 SK70>1]: %NAME%%BLUE%[S.Mastery+1\S.Warrior+2]%WHITE%
//ItemDisplay[CLVL<15 CL4 INF SK69>0 SK70>0]: %NAME%%BLUE%[S.Mastery\S.Warrior+1]%WHITE%
//ItemDisplay[CLVL<25 CL4 INF SK69>2]: %NAME%%BLUE%[S.Mastery+3]%WHITE%
//ItemDisplay[CLVL<20 CL4 INF SK69>1]: %NAME%%BLUE%[S.Mastery+2]%WHITE%
//ItemDisplay[CLVL<25 CL4 INF SK70>2]: %NAME%%BLUE%[S.Warrior+3]%WHITE%
//ItemDisplay[CLVL<20 CL4 INF SK70>1]: %NAME%%BLUE%[S.Warrior+2]%WHITE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Show any high value inferior junk. (Based on Character Level)
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Limited to equipment that can have staffmods and throwing weapons, with the exception of any
// that take up more than 4 spaces. (1x2, 1x3, 1x4, and 2x2)
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL<8 PRICE>499 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL<16 PRICE>999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL<24 PRICE>2499 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL<32 PRICE>4999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL<40 PRICE>9999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL<70 PRICE>19999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL<80 PRICE>24999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[PRICE>34999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP5 !(CL7 OR bal OR 9b8 OR 7b8)) OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) INF]: %RED%%NAME%%WHITE%[%PRICE% %GOLD%G%WHITE%]
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Inferior equipment exclusion while under character level 3.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL<3 INF]: %NAME%%WHITE%
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore all inferior equipment past this point.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[INF]:
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Single Socketed Non-Magical Equipment ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Show any high value single socketed staffmodded non-magical equipment. (Based on Character
// Level) This only applies while at character level 6+, a later section will handle displayed
// prices while under character level 6.
// Limited to equipment of the following sizes: 1x2, 1x3, 1x4, and 2x2
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL>5 CLVL<8 PRICE>499 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 CLVL<16 PRICE>999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 CLVL<24 PRICE>2499 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 CLVL<32 PRICE>4999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 CLVL<40 PRICE>9999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 CLVL<70 PRICE>19999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 CLVL<80 PRICE>24999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
ItemDisplay[CLVL>5 PRICE>34999 (CL1 OR CL2 OR CL4 OR CL5 OR CL6 OR (WP11 !(wst OR 8ws OR 6ws)) OR WP12 OR (WP13 !(wsp OR 9ws OR 7ws))) NMAG SOCK=1]: %NAME%%BLUE%[%WHITE%1%BLUE%]%WHITE%[%PRICE% %GOLD%G%WHITE%]
//─────────────────────────────────────────────────────────────────────────────────────────────────
// Ignore single socketed non-magical equipment except Wirt's Leg at character level 6+.
//─────────────────────────────────────────────────────────────────────────────────────────────────
ItemDisplay[CLVL>5 !leg NMAG SOCK=1]:
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ Noteable Magical/Rare Equips ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
ItemDisplay[CL1 MAG ID TABSK40>2 SK247>2]: %NAME%%GOLD%[%GREEN%Grizzly+6%GOLD%]%WHITE%
ItemDisplay[CL1 MAG ID TABSK40>2 SK247>1]: %NAME%%GOLD%[%GREEN%Grizzly+5%GOLD%]%WHITE%
ItemDisplay[CL1 (MAG OR RARE) ID (CLSK5>1 OR TABSK40>1) SK247>2]: %NAME%%GOLD%[%GREEN%Grizzly+5%GOLD%]%WHITE%
ItemDisplay[CL2 MAG ID TABSK34>2 SK149>2]: %NAME%%GOLD%[%GREEN%B.Orders+6%GOLD%]%WHITE%
ItemDisplay[CL2 (MAG OR RARE) ID (CLSK4>1 OR TABSK34>1) SK149>2]: %NAME%%GOLD%[%GREEN%B.Orders+5%GOLD%]%WHITE%
ItemDisplay[CL2 MAG ID TABSK34>2 SK149>1]: %NAME%%GOLD%[%GREEN%B.Orders+5%GOLD%]%WHITE%
ItemDisplay[WEAPON MAG ID TABSK34>2]: %NAME%%GOLD%[%GREEN%Warcries+3%GOLD%]%WHITE%
ItemDisplay[CLVL<60 WEAPON (MAG OR RARE) ID TABSK34>1]: %NAME%%GOLD%[%GREEN%Warcries+2%GOLD%]%WHITE%
ItemDisplay[CLVL<40 WEAPON (MAG OR RARE) ID TABSK34>0]: %NAME%%GOLD%[%GREEN%Warcries+1%GOLD%]%WHITE%
ItemDisplay[CL4 MAG ID TABSK17>2 (SK74>2 OR SK83>2 OR SK84>2 OR SK92>2 OR SK93>2)]: %NAME%%GOLD%[%GREEN%PnB Skill+6%GOLD%]%WHITE%
ItemDisplay[CL4 MAG ID TABSK17>2 (SK74>1 OR SK83>1 OR SK84>1 OR SK92>1 OR SK93>1)]: %NAME%%GOLD%[%GREEN%PnB Skill+5%GOLD%]%WHITE%
ItemDisplay[CL4 (MAG OR RARE) ID (CLSK2>1 OR TABSK17>1) (SK74>2 OR SK83>2 OR SK84>2 OR SK92>2 OR SK93>2)]: %NAME%%GOLD%[%GREEN%PnB Skill+5%GOLD%]%WHITE%
ItemDisplay[MAG CL4 TABSK17>2 (SK74>0 OR SK83>0 OR SK84>0 OR SK92>0 OR SK93>0)]: %NAME%%GOLD%[%GREEN%PnB Skill+4%GOLD%]%WHITE%
ItemDisplay[CL4 (MAG OR RARE) ID (CLSK2>1 OR TABSK17>1) (SK74>1 OR SK83>1 OR SK84>1 OR SK92>1 OR SK93>1)]: %NAME%%GOLD%[%GREEN%PnB Skill+4%GOLD%]%WHITE%
ItemDisplay[CL4 (MAG OR RARE) ID (CLSK2>0 OR TABSK17>0) (SK74>2 OR SK83>2 OR SK84>2 OR SK92>2 OR SK93>2)]: %NAME%%GOLD%[%GREEN%PnB Skill+4%GOLD%]%WHITE%
ItemDisplay[CL4 MAG ID TABSK18>2 (SK75>2 OR SK80>2 OR SK85>2 OR SK90>2 OR SK94>2 OR SK95>2)]: %NAME%%GOLD%[%GREEN%Summon Skill+6%GOLD%]%WHITE%
ItemDisplay[CL4 MAG ID TABSK18>2 (SK75>1 OR SK80>1 OR SK85>1 OR SK90>1 OR SK94>1 OR SK95>1)]: %NAME%%GOLD%[%GREEN%Summon Skill+5%GOLD%]%WHITE%
ItemDisplay[CL4 (MAG OR RARE) ID (CLSK2>1 OR TABSK18>1) (SK69>2 OR SK70>2 OR SK75>2 OR SK80>2 OR SK85>2 OR SK90>2 OR SK94>2 OR SK95>2)]: %NAME%%GOLD%[%GREEN%Summon Skill+5%GOLD%]%WHITE%
ItemDisplay[CL4 MAG ID TABSK18>2 (SK75>0 OR SK80>0 OR SK85>0 OR SK90>0 OR SK94>0 OR SK95>0)]: %NAME%%GOLD%[%GREEN%Summon Skill+4%GOLD%]%WHITE%
ItemDisplay[WP12 MAG ID TABSK17>2 (SK74>2 OR SK83>2 OR SK84>2 OR SK92>2 OR SK93>2) FCR>19]: %NAME%%GOLD%[%GREEN%PnB Skill+6%GOLD%]%WHITE%
ItemDisplay[WP12 MAG ID TABSK17>2 (SK74>1 OR SK83>1 OR SK84>1 OR SK92>1 OR SK93>1) FCR>19]: %NAME%%GOLD%[%GREEN%PnB Skill+5%GOLD%]%WHITE%
ItemDisplay[WP12 (MAG OR RARE) ID (CLSK2>1 OR TABSK17>1) (SK67>2 OR SK74>2 OR SK83>2 OR SK84>2 OR SK92>2 OR SK93>2) FCR>19]: %NAME%%GOLD%[%GREEN%PnB Skill+5%GOLD%]%WHITE%
ItemDisplay[CL5 MAG ID TABSK48>2 (SK256>2 OR SK257>2 OR SK261>2 OR SK262>2 OR SK266>2 OR SK271>2 OR SK272>2 OR SK277>2)]: %NAME%%GOLD%[%GREEN%Trap Skill+6%GOLD%]%WHITE%
ItemDisplay[CL5 MAG ID TABSK48>2 (SK256>1 OR SK257>1 OR SK261>1 OR SK262>1 OR SK266>1 OR SK271>1 OR SK272>1 OR SK277>1)]: %NAME%%GOLD%[%GREEN%Trap Skill+5%GOLD%]%WHITE%
ItemDisplay[CL5 MAG ID TABSK48>1 (SK256>2 OR SK257>2 OR SK261>2 OR SK262>2 OR SK266>2 OR SK271>2 OR SK272>2 OR SK277>2)]: %NAME%%GOLD%[%GREEN%Trap Skill+5%GOLD%]%WHITE%
ItemDisplay[CL6 MAG ID TABSK8>2 (SK41>2 OR SK46>2 OR SK47>2 OR SK51>2 OR SK52>2 OR SK56>2 OR SK61>2 OR SK62>2)]: %NAME%%GOLD%[%GREEN%Fire Skill+6%GOLD%]%WHITE%
ItemDisplay[CL6 MAG ID TABSK8>2 (SK41>1 OR SK46>1 OR SK47>1 OR SK51>1 OR SK52>1 OR SK56>1 OR SK61>1 OR SK62>1)]: %NAME%%GOLD%[%GREEN%Fire Skill+5%GOLD%]%WHITE%
ItemDisplay[CL6 (MAG OR RARE) ID (CLSK1>1 OR TABSK8>1) (SK41>2 OR SK46>2 OR SK47>2 OR SK51>2 OR SK52>2 OR SK56>2 OR SK61>2 OR SK62>2)]: %NAME%%GOLD%[%GREEN%Fire Skill+5%GOLD%]%WHITE%
ItemDisplay[CL6 MAG ID TABSK9>2 (SK48>2 OR SK49>2 OR SK54>2 OR SK57>2 OR SK58>2 OR SK63>2)]: %NAME%%GOLD%[%GREEN%Lightning Skill+6%GOLD%]%WHITE%
ItemDisplay[CL6 MAG ID TABSK9>2 (SK48>1 OR SK49>1 OR SK54>1 OR SK57>1 OR SK58>1 OR SK63>1)]: %NAME%%GOLD%[%GREEN%Lightning Skill+5%GOLD%]%WHITE%
ItemDisplay[CL6 (MAG OR RARE) ID (CLSK1>1 OR TABSK9>1) (SK38>2 OR SK48>2 OR SK49>2 OR SK54>2 OR SK57>2 OR SK58>2 OR SK63>2)]: %NAME%%GOLD%[%GREEN%Lightning Skill+5%GOLD%]%WHITE%
ItemDisplay[CL6 MAG ID TABSK10>2 (SK44>2 OR SK45>2 OR SK50>2 OR SK55>2 OR SK59>2 OR SK60>2 OR SK64>2 OR SK65>2)]: %NAME%%GOLD%[%GREEN%Cold Skill+6%GOLD%]%WHITE%
ItemDisplay[CL6 MAG ID TABSK10>2 (SK44>1 OR SK45>1 OR SK50>1 OR SK55>1 OR SK59>1 OR SK60>1 OR SK64>1 OR SK65>1)]: %NAME%%GOLD%[%GREEN%Cold Skill+5%GOLD%]%WHITE%
ItemDisplay[CL6 (MAG OR RARE) ID (CLSK1>1 OR TABSK10>1) (SK40>2 OR SK44>2 OR SK45>2 OR SK50>2 OR SK55>2 OR SK59>2 OR SK60>2 OR SK64>2 OR SK65>2)]: %NAME%%GOLD%[%GREEN%Cold Skill+5%GOLD%]%WHITE%
ItemDisplay[EQ4 MAG ID !ETH TABSK0>2 IAS>19]: %NAME%%GOLD%[%GREEN%+3/IAS%GOLD%]%WHITE%
ItemDisplay[EQ4 MAG ID !ETH TABSK1>2 IAS>19]: %NAME%%GOLD%[%GREEN%+3/IAS%GOLD%]%WHITE%
ItemDisplay[EQ4 MAG ID !ETH TABSK2>2 IAS>19]: %NAME%%GOLD%[%GREEN%+3/IAS%GOLD%]%WHITE%
ItemDisplay[amf MAG ID !ETH TABSK2>5 IAS>39]: %NAME%%GOLD%[%GREEN%Keep%GOLD%]%WHITE%
ItemDisplay[CL7 WP5 RARE ID !ETH ((CLSK0>1 TABSK2>2) OR TABSK2>4) IAS>39]: %NAME%%GOLD%[%GREEN%Keep%GOLD%]%WHITE%
ItemDisplay[rin MAG ID STAT80=60]: %NAME%%GOLD%[%GREEN%Max MF%GOLD%]%WHITE% //This includes getting additional MF from corrupting.
ItemDisplay[rin MAG ID STAT80>39]: %NAME%%GOLD%[%GREEN%High MF%GOLD%]%WHITE%
ItemDisplay[amu MAG ID ALLSK>0]: %NAME%%GOLD%[%GREEN%All Skills+1%GOLD%]%WHITE%
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Custom] Rules for Noteable Magic/Rare Equips ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Custom rules go here.
//╔═══════════════════════════════════════════════════════════════════════════════════════════════╗
//║ ▬▬▬▬▬ [Optional] Crafting Bases ▬▬▬▬▬ ║
//╚═══════════════════════════════════════════════════════════════════════════════════════════════╝
// Matched rules will simply allow the item to be shown normally as a drop without being hidden.
// These rules will require the item level to meet the minimum requirements to guarantee the max