forked from youbetterdont/bhconfig
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BH.cfg
7600 lines (6548 loc) · 382 KB
/
BH.cfg
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
// Slash Diablo Maphack Configuration, v2.9.9
// Authors: M81, BeLikeLeBron, Dax, Labarr, Lewds, DannyIsGreat
// Requires BH>=1.9.9 (planqi branch)
// Note: 1.9.9-beta no longer supported. Must have the full Planqi 1.9.10 BH.dll release OR BH 1.9.10 (BETA)
// #region - Info
// Link to Download the latest config: https://github.com/BeLikeLeBron/bhconfig/releases/latest
// Link to user guide: https://github.com/BeLikeLeBron/bhconfig/wiki/User-Guide
// Link to edit guide: https://github.com/BeLikeLeBron/bhconfig/wiki/How-to-edit-the-config
// Link to all holy grail items: https://github.com/BeLikeLeBron/bhconfig/blob/master/Holy_Grail_All_Uniques_and_Sets.txt
// BH editing wiki: https://github.com/planqi/slashdiablo-maphack/wiki
// Got another question? It's probably answered here: https://redd.it/o1rlyf
// Join SlashDiablo discord: https://discord.gg/0Xeb4YQwnUSmpyeF
// SlashDiablo: https://slashdiablo.net/
// WANT TO ADD A UNIQUE OR SET ITEM TO THIS CONFIG?
//Our configs already include many of the holy grail items you're looking for, but if you want to add All missing grailers you have a couple of options:
//1. Download and install the slashdiablo chrome extensions via google chrome, if you have it installed already, make sure it's updated: https://chrome.google.com/webstore/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp
//2. Restart the browser, then navigate to your grail.slashdiablo.net account, There will be a button on the top right for "BH Filter Missing Items". click it.
// It will copy all lines for your missing items list for that account.
//3. Make sure to turn on maphack override option in slashdiablo launcher before editing your bh.cfg file. Close D2 and any errors.
// Then in your BH.cfg file in your slashdiablo/d2 folder under the section labeled "ADD HOLY GRAIL ITEMS HERE" paste them and save.
// If you don't see that line, you can add these items directly under the "UNIQUES AND SETS" part of your BH.cfg config and it should work perfectly.
// You can do this periodically and replace these lines in your config as you find items instead of refreshing it manually. Save it. You're done!
//
//This config will work for Classic Diablo 2 as well as expansion Diablo 2 Lord of Destruction up to V1.13c. Must be used with Planqi's BH.dll v1.9.10+
//NOTE: // BH had an issue where expansion lines leaked for LADDER classic characters
//Attempted fix was made as of v2.9.0 of this config but just in case it doesnt work:
//You can switch to classic only config by following instructions here:
//Download the latest BH-classic.cfg file here: https://github.com/BeLikeLeBron/bhconfig/releases/latest
//TO USE 'BH-classic.cfg' config for classic mode, first turn on maphack override option in slashdiablo launcher, patch/update. Then:
// RENAME BH.cfg to BH-Expansion.cfg and then rename 'BH-Classic.cfg' to BH.cfg
//To switch back to expansion config rename BH.cfg again to BH-classic.cfg first and then rename BH-Expansion.cfg to BH.cfg.
//If you end up missing one of the files you can always download the latest from the link above
// Recommendations:
// * Item Detailed Notifications on
// * Filter Level 2, 0 if early ladder reset, 1 if you still need some basics.
// * Ping Level (notifications)
// - "Pings are for high-end items only": Ping level 3
// - "Pings are for useful stuff I might want": Ping level 5
// - Ladder reset: Ping level 6
// Filter levels
// 0: Filter nothing (only low gold amounts at early levels)
// 1: Filter many white and blue items, but several exceptions made (e.g., blood glove bases). Notify on flawless amythests and rals.
// 2: Same as 1 but Hides certain useless rare weapons and no notifications for flawless amythests, rals, and Some slight customization for other notifications.
// 3: Filter all white, blue, and rare items not whitelisted (DANGEROUS! Use at your own risk)
//If you want to show absolutely everything AND disable this config, turn off advanced item display. NOTE: You will not get notifications for any items if you do this.
// Ping Levels (chat notifications for item drops)
// 0, 1, 2: Ping all tier 1 and 2 (orange/purple) boxes only
// 3: Ping tiers 1, 2, 3 (red box+)
// 4: Ping tiers 1, 2, 3, 4, and selected magic and rare items (gold box+)
// 5: Ping tiers 1, 2, 3, 4, 5, and selected magic and rare items (green box+)
// 6: Ping tiers 1, 2, 3, 4, 5, 6, magic and rare items, and ladder reset stuff (gray box+)
/////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////
//BEFORE EDITING THIS FILE MAKE SURE TO TURN ON MAPHACK OVERRIDE OPTION IN SLASHDIABLO LAUNCHER//
/////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////
//
// ADVANCED ITEM DISPLAY
//
// Color of map box and indicator
// Orange (0x60): Tier 1 (worth sur+)
// Purple (0x9b): Tier 2 (worth vex-Lo)
// Red (0x0a): Tier 3 (worth mal-gul or so, also very rare items with low demand)
// Gold (0x0d): Tier 4 (worth lem-um, useful items that are common, also rare items with lower demand)
// Sage (0x82) / Green (0x84): Tier 5 (very common useful items, niche use-case items)
// Gray (0xd0): Tier 6 (ladder reset tier)
// Yellow (0x0c): Reserved for unidentified rare items (e.g., claws and pelts)
// Blue (0x97): Reserved for unidentified magic items (e.g., charms and barb hats)
// White (0x20): Unused
// Dark Green (0x76): Unused
//more colors: https://github.com/planqi/slashdiablo-maphack/blob/master/readme_gfx/color_palette.png
//
// The following colors only work with glide. Fall-back color in square brackets.
// Light Gray (0xd6) [Gray]: Unused
// Sage (0x82) [Green]: Tier 5 items
// Coral (0x66) [Red]: Unused
// Teal (0xcb) [Blue]: Unused
//Chat colors used for notifications/pings with %notify-x%
//1 = Red
//2 = Green/null
//3 = Blue
//4 = Gold/unique
//5 = Grey
//6 = Black (unreadable)
//7 = Dark yellow
//8 = Orange
//9 = Yellow
//10 = Dark green
//11 = Purple
//12 = Slightly less darker green
//13 = White
//%notify-dead% = no notification
// #endregion - Info
//
// GEMS
// ====
// #region - Gems
// Indicators: Colour coded (eg. Purple for Amethysts)
ItemDisplay[GEMTYPE=1 GEM>3]: %PURPLE%O %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=2 GEM>3]: %WHITE%O %GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=3 GEM>3]: %DARK_GREEN%O %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=4 GEM>3]: %RED%O %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=5 GEM>3]: %BLUE%O %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=6 GEM>3]: %YELLOW%O %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=7 GEM>3]: %LIGHT_GRAY%O %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=1 GEM<4]: %PURPLE%o %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=2 GEM<4]: %WHITE%o %GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=3 GEM<4]: %DARK_GREEN%o %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=4 GEM<4]: %RED%o %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=5 GEM<4]: %BLUE%o %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=6 GEM<4]: %YELLOW%o %WHITE%%GEMLEVEL%%CONTINUE%
ItemDisplay[GEMTYPE=7 GEM<4]: %LIGHT_GRAY%o %WHITE%%GEMLEVEL%%CONTINUE%
// Add small map indicators for flawless gems without notificaiton
// Flawless Amethyst - also get a drop notification in FILTLVL 0, 1
ItemDisplay[GEM=4 (GEMTYPE=1) FILTLVL<2]: %NAME%%dot-66%
ItemDisplay[GEM=4 (GEMTYPE=1) FILTLVL>1]: %NAME%%dot-66%%notify-dead%
// Flawless Topaz - also get a drop notification in FILTLVL 0, and 1 with tier 6 only
ItemDisplay[GEM=4 (GEMTYPE=6) FILTLVL=0]: %NAME%%dot-0c%%TIER-6%
ItemDisplay[GEM=4 (GEMTYPE=6) FILTLVL=1]: %NAME%%dot-0c%%TIER-6%
// Flawless Ruby - also get a drop notification in FILTLVL 0, and 1 with tier 6 only
ItemDisplay[GEM=4 (GEMTYPE=4) FILTLVL=0]: %NAME%%dot-0a%%TIER-6%
ItemDisplay[GEM=4 (GEMTYPE=4) FILTLVL=1]: %NAME%%dot-0a%%TIER-6%
// Flawless Skull on Classic only - also get a drop notification in FILTLVL 0, and 1 with tier 6 only
ItemDisplay[CLASSIC GEM=4 (GEMTYPE=7) FILTLVL=0]: %NAME%%dot-d6%%TIER-6%
ItemDisplay[CLASSIC GEM=4 (GEMTYPE=7) FILTLVL=1]: %NAME%%dot-d6%%TIER-6%
//regular Sapphire Amethyst and Topaz Tier 5 pings for upping runes to guls (remove // on the three lines below to use)
//Sapphires for upping ists (remove // on the line below to use)
//ItemDisplay[GEM=3 (GEMTYPE=5) FILTLVL<2]: %NAME%%dot-97%%TIER-5%
//Amethysts for upping mals (remove // on the line below to use)
//ItemDisplay[GEM=3 (GEMTYPE=1) FILTLVL<2]: %NAME%%dot-66%%TIER-5%
//Topaz for upping ums (remove // on the line below to use)
//ItemDisplay[GEM=3 (GEMTYPE=6) FILTLVL<2]: %NAME%%dot-0c%%TIER-5%
//chipped, flawed, and regular topaz's, rubys, and Sapphires for ladder reset
//topaz- chipped, flawed, and regular
ItemDisplay[GEM<5 GEMTYPE=6 FILTLVL=0 CLVL<20]: %NAME%%dot-0c%%TIER-6%
//ruby- chipped, flawed, and regular
ItemDisplay[GEM<5 GEMTYPE=4 FILTLVL=0 CLVL<20]: %NAME%%dot-0a%%TIER-6%
//Sapphire- chipped, flawed, and regular
ItemDisplay[GEM<5 GEMTYPE=5 FILTLVL=0 CLVL<20]: %NAME%%dot-97%%TIER-6%
//Diamond- flawed, and regular to up
ItemDisplay[GEM>1 GEMTYPE=2 FILTLVL=0 CLVL<26]: %NAME%%dot-20%%TIER-6%
//flawless diamonds for ladder reset
ItemDisplay[GEM=4 (GEMTYPE=2) FILTLVL<2 CLVL<40]: %NAME%%dot-20%%TIER-6%
//chipped gems for repairing filter lvl under 2 small grey dot only. (Add // on the line below to remove)
ItemDisplay[!CLASSIC GEM=1 FILTLVL<2]: %NAME%%dot-1d%%px-1f%%notify-dead%%TIER-4%
// Flawless Diamond
ItemDisplay[GEM=4 (GEMTYPE=2)]: %NAME%%dot-20%%notify-dead%
// Flawless Emerald
ItemDisplay[GEM=4 (GEMTYPE=3)]: %NAME%%dot-76%%notify-dead%
// Flawless Ruby
ItemDisplay[GEM=4 (GEMTYPE=4)]: %NAME%%dot-0a%%notify-dead%
// Flawless Sapphire
ItemDisplay[GEM=4 (GEMTYPE=5)]: %NAME%%dot-97%%notify-dead%
// Flawless Topaz
ItemDisplay[GEM=4 (GEMTYPE=6)]: %NAME%%dot-0c%%notify-dead%
// Flawless Skull
ItemDisplay[GEM=4 (GEMTYPE=7)]: %NAME%%dot-d6%%notify-dead%
ItemDisplay[GEMTYPE>0 GEM>3]: %NAME% // Whitelist all flawless and perfect gems
// #endregion - Gems
//
// RUNES
// =====
// #region - Runes
// Set color
ItemDisplay[RUNE>0]: %ORANGE%%NAME%%CONTINUE%
// Add Rune Number (remove // in the line below to use)
//ItemDisplay[RUNE>0]: %RED%[%RUNENUM%]%CONTINUE%
// TIERS 1-4
// ---------
// Sur, Ber, Jah
ItemDisplay[RUNE>28 RUNE<32]: %PURPLE%<<< %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%%PURPLE% >>>
// Cham and Zod
ItemDisplay[RUNE>31]: %PURPLE%<<< T2%MAP%%LINE-9B% %NAME%%notify-0b%%PURPLE% >>>
// Vex, Ohm, Lo
ItemDisplay[RUNE>25 RUNE<29]: %PURPLE%<<< T2%MAP%%LINE-9B% %NAME%%notify-0b%%PURPLE% >>>
// Mal, Ist, Gul
ItemDisplay[RUNE>22 RUNE<26]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Lem, Pul, Um
ItemDisplay[RUNE>19 RUNE<23]: %GOLD%T4%MAP% %NAME%%TIER-4%
//Ko and Fal also gets a green small map box. notification only with FILTLVL 0, 1. Tier 5 only.
ItemDisplay[RUNE>17 RUNE<20 FILTLVL<2]: %GREEN%T5 %NAME%%dot-84%%TIER-5%
ItemDisplay[RUNE>17 RUNE<20 FILTLVL=2]: %GREEN%T5 %NAME%%dot-84%%notify-dead%%TIER-5%
// Ral also gets a green small map box. notification only with FILTLVL 0, 1.
ItemDisplay[RUNE=8 FILTLVL<2]: %GREEN%+ %NAME%%dot-84%
ItemDisplay[RUNE=8 FILTLVL>1]: %GREEN%+ %NAME%%dot-84%%notify-dead%
// Sols also gets a red small map box. notification only with FILTLVL 0, 1. (remove // on the two lines below to use)
//ItemDisplay[RUNE=12 FILTLVL<2]: %RED%+ %NAME%%dot-0a%
//ItemDisplay[RUNE=12 FILTLVL>1]: %RED%+ %NAME%%dot-0a%%notify-dead%
// Hel also gets a gold small map box, notification only with FILTLVL 0, 1.
ItemDisplay[RUNE=15 FILTLVL<2]: %GOLD%+ %NAME%%dot-0d%
ItemDisplay[RUNE=15 FILTLVL>1]: %GOLD%+ %NAME%%dot-0d%%notify-dead%
//Spirit runes sets get a orange dot on the map only with filter level 0, 1. Tier 6 only. (Add // on the lines below to remove)
ItemDisplay[(RUNE=7 OR RUNE=9 OR RUNE=10 OR RUNE=11) FILTLVL<2]: %WHITE%+ %NAME%%dot-0a%%px-81%%TIER-6%
ItemDisplay[(RUNE=7 OR RUNE=9 OR RUNE=10 OR RUNE=11) FILTLVL>1]: %WHITE%+ %NAME%%dot-0a%%px-81%%notify-dead%%TIER-6%
//insight runes sets get a red dot on the map only with filter level 0, 1. Tier 6 only. (Add // on the lines below to remove)
ItemDisplay[(RUNE=3 OR RUNE=8 OR RUNE=7 OR RUNE=12) FILTLVL<2]: %WHITE%+ %NAME%%dot-0a%%px-70%%TIER-6%
ItemDisplay[(RUNE=3 OR RUNE=8 OR RUNE=7 OR RUNE=12) FILTLVL>1]: %WHITE%+ %NAME%%dot-0a%%px-70%%notify-dead%%TIER-6%
// Ort for repairs filter lvl under 2 small white dot only. (Add // on the line below to remove)
ItemDisplay[RUNE=9 FILTLVL<2]: %WHITE%+ %NAME%%dot-1d%%px-1f%%notify-dead%%TIER-4%
// Low runes get a small map box and notification only with FILTLVL 0 and Tier 6
ItemDisplay[RUNE>0 RUNE<20 FILTLVL=0]: %NAME%%dot-84%%TIER-6%
// Whitelist Useful Runes
// --------------
// Tal, Thul, Ort, Amn get a white dot on the name to make them more visible
ItemDisplay[RUNE=7 OR RUNE=10 OR RUNE=9 OR RUNE=11]: %WHITE%+ %NAME%
// Ral, Tir, Tal, Sol get a white dot on the name to make them more visible
ItemDisplay[RUNE=3 OR RUNE=8 OR RUNE=7 OR RUNE=12]: %WHITE%+ %NAME%
ItemDisplay[RUNE>0]: %NAME% // whitelist all runes
// #endregion - Runes
//
// SHOPPING
// ========
// #region - Shopping
// This must be done before the recoloring below.
// Best place to shop in [square brackets]. Make sure to check the required affix level. The affix
// level is listed next to the item level on magic and rare items as ilvl/alvl. If only one number
// is displayed, they are the same.
// Shop Charsi/Gheed/Akara with cow portal.
// Shop Drognan with good A2 map.
// Shop Malah, Larzuk with uber portal.
// Shop Anya with Nihlithak portal.
// TIER 1 SHOPPING
// ------
// 3 trap, 3 LS claws (alvl 60+)
ItemDisplay[!CLASSIC SIN MAG TABSK48>2 SK271>2]: %ORANGE%T1%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// 3 paladin combat, 3 BH, 3 conc scepter (alvl 60+)
ItemDisplay[!CLASSIC SCEPTER MAG TABSK24>2 SK112>2 SK113>2]: %ORANGE%T1%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// 3 paladin combat, 3 FoH, 3 conviction scepter (alvl 60+)
ItemDisplay[!CLASSIC SCEPTER MAG TABSK24>2 SK121>2 SK123>2]: %ORANGE%T1%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// TIER 2 SHOPPING
// ------
// 4os archon plate with life (of the whale, alvl 50) [hell Larzuk]
ItemDisplay[!CLASSIC utp MAG !ETH SOCK=4 LIFE>80]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 3/20 Javazon Gloves (alvl 60+) [nightmare anya]
ItemDisplay[!CLASSIC GLOVES MAG !ETH TABSK2>2 IAS>19]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 2 assassin, 3 LS claws (alvl 50+)
ItemDisplay[!CLASSIC SIN MAG CLSK6>1 SK271>2]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 3 trap, 2+ LS claws (alvl 60+)
ItemDisplay[!CLASSIC SIN MAG TABSK48>2 SK271>1]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 3 shadow, 3 venom claws (alvl 60+)
ItemDisplay[!CLASSIC SIN MAG TABSK49>2 SK278>2]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// 2 paladin, 3 FoH, 3 conviction scepter (alvl 50+)
ItemDisplay[!CLASSIC SCEPTER MAG CLSK3>1 SK121>2 SK123>2]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 3 Poinson and Bone 1+ Corpse explosion 20 FCR wand
ItemDisplay[!CLASSIC WAND MAG TABSK17=3 SK74>0 FCR=20]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// TIER 3 SHOPPING
// ------
// 2 trap, 3 LS claws (alvl 40+)
ItemDisplay[!CLASSIC SIN MAG TABSK48>1 SK271>2]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-1%%TIER-3%
// 2 assassin, 3 venom claws (alvl 50+)
ItemDisplay[!CLASSIC SIN MAG CLSK6>1 SK278>2]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 3 shadow, 2+ venom claws (alvl 60+)
ItemDisplay[!CLASSIC SIN MAG TABSK49>2 SK278>1]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// 2 shadow, 3 venom claws (alvl 40+)
ItemDisplay[!CLASSIC SIN MAG TABSK49>1 SK278>2]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// 3/20 Bow Gloves (alvl 60+) [nightmare anya]
ItemDisplay[!CLASSIC GLOVES MAG !ETH TABSK0>2 IAS>19]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// TIER 4 SHOPPING
// ------
// 4os gothic plates and ancient armor with life (of the whale, alvl 50) [hell charsi]
ItemDisplay[!CLASSIC (gth OR aar) MAG !ETH SOCK=4 LIFE>80]: %GOLD%T4%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-4%
// 2/20 jav gloves (alvl 40+) [nightmare anya]
ItemDisplay[!CLASSIC GLOVES MAG !ETH TABSK2>1 IAS>19]: %GOLD%T4%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-4%
// 3os shields of deflecting (alvl 33+)
// tower, gothic, dragon, blade barrier, troll nest
ItemDisplay[!CLASSIC (tow OR gts OR xit OR upk OR ush) !ETH MAG SOCK=3 FBR>29]: %GOLD%T4%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-4%
// 4os shields of deflecting (alvl 55+)
// aegis, ward
ItemDisplay[!CLASSIC (uow OR uts) !ETH MAG SOCK=4 FBR>29]: %GOLD%T4%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-4%
// TIER 5 SHOPPING
// ------
// 3os helm with life (of the mammoth, no corona, spired helm, winged helm)
// Artisan's, alvl 33
// of the Mammoth, alvl 68
ItemDisplay[!CLASSIC HELM !urn !uhm !xhm MAG !ETH SOCK=3 LIFE>30]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// Javazon Gloves (+3)
// Lancer's, alvl 60
ItemDisplay[!CLASSIC GLOVES MAG !ETH TABSK2>2]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// 2/20 bow gloves (alvl 40+) [nightmare anya]
ItemDisplay[!CLASSIC GLOVES MAG !ETH TABSK2>0 IAS>19]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// Lower res wand (need 1.9.8 or later)
ItemDisplay[!CLASSIC WAND MAG CHSK91>0]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// Life tap wand (need 1.9.8 or later)
ItemDisplay[!CLASSIC WAND MAG CHSK82>0]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// BO Sticks (+3 WC sticks)
// Echoing, alvl 60
ItemDisplay[!CLASSIC WEAPON MAG (TABSK34>2) !lax !bax !btx !gax !gix !mau !gma !9la !9ba !9bt !9ga !9gi !9m9 !9gm]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// Claws (+3 traps)
// Cunning, alvl 60
ItemDisplay[!CLASSIC SIN MAG TABSK48>2]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// 3 paladin combat scepters
// Rose Branded, alvl 60
ItemDisplay[!CLASSIC SCEPTER MAG TABSK24>2]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// 2 paladin scepters
// Priests, alvl 50
ItemDisplay[!CLASSIC SCEPTER MAG CLSK3>1]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// TIER 6 SHOPPING (LADDER RESET STUFF)
// ------------------
// ilvl restrictions below prevent these items from showing as drops later in the game.
// Note white items cannot be bought from vendors with ilvl>24.
//Weapons (SHOPPING)
// Tele staff (SK=54, lvl=1-6, formula SK*64+lvl)
// of Teleportation, alvl 24
// Teleport staff (need 1.9.8 or later)
ItemDisplay[!CLASSIC STAFF MAG CHSK54>0]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// +2-3 Charged bolt staff
ItemDisplay[!CLASSIC STAFF !RW (SK38>1) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// +2-3 Fire ball Staff
ItemDisplay[!CLASSIC STAFF !RW (SK47>1) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//fcr staff
ItemDisplay[!CLASSIC STAFF !RW FCR>9 ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//fcr wand
ItemDisplay[!CLASSIC WAND !RW FCR>9 ILVL<25 CLVL<50]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
ItemDisplay[!CLASSIC WAND !RW FCR>11 ILVL<31 CLVL<50]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//fcr scepter
ItemDisplay[!CLASSIC scp !RW FCR>9 ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//3os Spetum from act 2 vendors for merc
ItemDisplay[!CLASSIC NMAG !RW SOCK>2 spt ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[3]%TIER-6%
//3os flail from act 2 vendors for black
ItemDisplay[!CLASSIC NMAG !RW SOCK=3 fla ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[3]%TIER-6%
// 3 warmth, 2os staff (leaf) [normal Akara at clvl<7]
ItemDisplay[!CLASSIC STAFF SOCK=2 !RW NMAG (SK37>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//ItemDisplay[!CLASSIC sst SOCK=0 NMAG (SK37>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 fire ball, 2os staff (leaf) [normal Akara at clvl 7+, Drognan at clvl 14+]
ItemDisplay[!CLASSIC STAFF SOCK=2 !RW NMAG (SK47>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
ItemDisplay[!CLASSIC sst SOCK=0 NMAG (SK47>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 enchant, 2os staff (leaf) [normal Drognan at clvl 14+]
ItemDisplay[!CLASSIC STAFF SOCK=2 !RW NMAG (SK52>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//ItemDisplay[!CLASSIC STAFF SOCK=2 !RW NMAG (SK52>0) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 enchant, 0os short staff (leaf) [normal Drognan at clvl 14+]
ItemDisplay[!CLASSIC sst SOCK=0 !RW NMAG (SK52>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//shoppable enchant staff (memory) [normal Drognan]
ItemDisplay[!CLASSIC STAFF !sst !lst !wst (SOCK=0 OR SOCK=4) !RW NMAG (SK52>0) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//3 prayer white or 3 socket grand scepter (plague) [normal Drognan] - Slash Specific
ItemDisplay[!CLASSIC gsc (SOCK=0 OR SOCK=3) !RW NMAG (SK99>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 bone spear white base [normal Drognan at clvl 14+]
ItemDisplay[!CLASSIC bwn !RW NMAG !SOCK=1 SK84>2 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 CE white base [normal Drognan at clvl 13]
ItemDisplay[!CLASSIC bwn !RW NMAG !SOCK=1 SK74>2 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// Armors (SHOPPING)
//any demonhide sash or sharkskin belt for ladder reset
ItemDisplay[!CLASSIC MAG ID (zlb OR zvb) CLVL<41 FILTLVL<2]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//3os Shields
ItemDisplay[!CLASSIC NMAG !RW SOCK=3 (lrg OR kit) ILVL<45]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[3]%TIER-6%
//Frw boots
ItemDisplay[!CLASSIC MAG BOOTS FRW>9 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %TIER-6%
//Fhr Boots, Belts, Shields, Armors, and Helms. Filter level under 2 and char level under 20 early normal only.
ItemDisplay[!CLASSIC MAG !RW FHR>9 ILVL<25 CLVL<30 (BOOTS OR BELT OR SHIELD OR CHEST OR HELM) FILTLVL=0 CLVL<20]: %GRAY%T6%MAP% %GREEN%***%PURPLE%FHR%GREEN%*** %BLUE%%NAME%%TIER-6%
//2 socket helms for lore
ItemDisplay[!CLASSIC NMAG !RW SOCK=2 (cap OR skp) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[2]%TIER-6%
//2 socket armors for stealth
ItemDisplay[!CLASSIC NMAG !RW SOCK=2 !ETH (qui OR lea OR hla OR stu) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[2]%TIER-6%
//2 socket small shields
ItemDisplay[!CLASSIC NMAG !RW SOCK=2 sml ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[2]%TIER-6%
//3os Armors from act 2 vendors
ItemDisplay[!CLASSIC NMAG !RW SOCK=3 (rng OR brs) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[3]%TIER-6%
// alvl restrictions below prevent the items from being highlighted when higher tier
// shopping targets are available. For example, don't show mf/res gloves once +3 jav
// is available. Likely you don't care about seeing this crap at that point.
// Prismatic, single res, or socketed shield of deflection (alvl 33 - 3 sockets available)
// of Deflecting, alvl 11
// Mechanic's, alvl 10
// Cobalt/Garnet/Coral, alvl 18
// prismatic, alvl 28
ItemDisplay[!CLASSIC MAG SHIELD (RES>15 OR CRES>20 OR FRES>20 OR LRES>20 OR SOCK=2) FBR=30 ALVL<33]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FRW boots w/ res
// of Haste, alvl 22
// Sapphire/Ruby/Amber, alvl 25
ItemDisplay[!CLASSIC MAG BOOTS FRW>19 (CRES>30 OR FRES>30 OR LRES>30)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// MF, str, or dex gloves w/ res (alvl 60 - 3 jav available)
// of Fortune, alvl 16
// of Precision, alvl 56
// of the Ox, alvl 45
// Cobalt/Garnet/Coral, alvl 18
ItemDisplay[!CLASSIC MAG GLOVES (MFIND>15 OR DEX>9 OR STR>5) (CRES>20 OR FRES>20 OR LRES>20) ALVL<60]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// Belt with life or fhr and res
// of Stability, alvl 18
// of the Mammoth, alvl 25
// Cobalt/Garnet/Coral, alvl 18
ItemDisplay[!CLASSIC MAG BELT (FHR=24 OR LIFE>30) (CRES>20 OR FRES>20 OR LRES>20)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// Belt with 81-100 life
// of the Whale, alvl 50
ItemDisplay[!CLASSIC MAG BELT LIFE>80]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FHR or life armor w/ res or sockets (alvl 55 - 4 sockets available)
// of Stability, alvl 18
// of the Colossus, alvl 30
// Cobalt/Garnet/Coral, alvl 18
// Mechanic's, alvl 10
// Artisan's, alvl 33
ItemDisplay[!CLASSIC MAG CHEST (FHR=24 OR LIFE>40) (CRES>20 OR FRES>20 OR LRES>20 OR SOCK=2 OR SOCK=3) ALVL<55]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// helm with fhr and res or sockets (alvl 33 - 3 sockets available)
// of Balance, alvl 5
// Cobalt/Garnet/Coral, alvl 18
// Mechanic's, alvl 10
ItemDisplay[!CLASSIC MAG HELM FHR>9 (CRES>20 OR FRES>20 OR LRES>20 OR SOCK=2) ALVL<33]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 socket helm (alvl 68 - 31-40 life available)
// Artisan's, alvl 33 (also need ilvl 41+ base)
ItemDisplay[!CLASSIC MAG HELM !BAR SOCK=3 ALVL<68]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 bow gloves (alvl 60+)
ItemDisplay[!CLASSIC GLOVES MAG !ETH TABSK0>2]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// CLASSIC SHOPPING
// ========
// TIER 1 CLASSIC SHOPPING
// ------
//%ORANGE%T1%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
//5 BH weps
ItemDisplay[CLASSIC SCEPTER CLSK3>1 SK112>2]: %ORANGE%T1%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
//5 FoH weps
ItemDisplay[CLASSIC SCEPTER CLSK3>1 SK121>2]: %ORANGE%T1%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// TIER 2 CLASSIC SHOPPING
// ------
//%PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// >=2 Blessed Hammer + 3 concentration
ItemDisplay[CLASSIC SCEPTER (CLSK3>0) (SK112>0) (SK113>1)]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
ItemDisplay[CLASSIC SCEPTER (SK112>1) (SK113>2)]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 3 Blessed Hammer + >=2 concentration
ItemDisplay[CLASSIC SCEPTER (CLSK3>0) (SK112>1) (SK113>0)]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
ItemDisplay[CLASSIC SCEPTER (SK112>2) (SK113>1)]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// 2 pal, 3 FoH, 3 conviction scepter (alvl 50+)
ItemDisplay[CLASSIC SCEPTER CLSK3>1 SK121>2 SK123>2]: %PURPLE%T2%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
// TIER 3 CLASSIC SHOPPING
// ------
//%RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-1%%TIER-3%
//%RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-0b%
//%RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-8%
// 2 pal scepters
// Priests, alvl 50
ItemDisplay[CLASSIC SCEPTER MAG CLSK3>1]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-1%
// +2 barb weapons
ItemDisplay[CLASSIC WEAPON MAG (CLSK4>1) !lax !bax !btx !gax !gix !mau !gma !9la !9ba !9bt !9ga !9gi !9m9 !9gm]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-1%
// 4/5 enchant staves
ItemDisplay[CLASSIC STAFF (CLSK1>1) (SK52>1)]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-1%
ItemDisplay[CLASSIC STAFF (CLSK1>0) (SK52>2)]: %RED%T3%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%notify-1%
// TIER 4 CLASSIC SHOPPING
// ------
//%GOLD%T4%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-4%
//5 Bonespear wands
ItemDisplay[CLASSIC WAND CLSK2>1 AND SK84>2]: %GOLD%T4%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****
// TIER 5 CLASSIC SHOPPING
// ------
//%SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// 4/5 ES staves
ItemDisplay[CLASSIC STAFF (CLSK1>1) (SK58>1)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****
ItemDisplay[CLASSIC STAFF (CLSK1>0) (SK58>2)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****
// 4/5 thunderstorm staves
ItemDisplay[CLASSIC STAFF (CLSK1>1) (SK57>1)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****
ItemDisplay[CLASSIC STAFF (CLSK1>0) (SK57>2)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****
// 4/5 shiver armor staves
ItemDisplay[CLASSIC STAFF (CLSK1>1) (SK50>1)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
ItemDisplay[CLASSIC STAFF (CLSK1>0) (SK50>2)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// 4/5 chilling armor staves
ItemDisplay[CLASSIC STAFF (CLSK1>1) (SK60>1)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
ItemDisplay[CLASSIC STAFF (CLSK1>0) (SK60>2)]: %SAGE%T5%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-5%
// TIER 6 CLASSIC SHOPPING (LADDER RESET STUFF)
// ------------------
//%GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// ilvl restrictions below prevent some of these items from showing as drops later in the game.
// Note white items cannot be bought from vendors with ilvl>24.
// +2-3 Charged bolt staff
ItemDisplay[CLASSIC STAFF !RW (SK38>1) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// +2-3 Fire ball Staff
ItemDisplay[CLASSIC STAFF !RW (SK47>1) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//any demonhide sash or sharkskin belt for ladder reset
ItemDisplay[CLASSIC MAG ID (zlb OR zvb) CLVL<41 FILTLVL<2]: %GRAY%T6%MAP% %BLUE%%NAME%%TIER-6%
//2 Sorc staves
ItemDisplay[CLASSIC STAFF MAG CLSK1>1]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// +2 necro wands
ItemDisplay[CLASSIC WAND MAG CLSK2>1]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// Prismatic or single res shield of deflection
ItemDisplay[CLASSIC MAG SHIELD (RES>15 OR CRES>20 OR FRES>20 OR LRES>20 OR PRES>20) FBR=30]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FCR wands w/ res or mana
ItemDisplay[CLASSIC MAG WAND FCR=20 (MANA>30 OR CRES>30 OR FRES>30 OR LRES>30 OR PRES>30)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FRW or MF boots w/ res
ItemDisplay[CLASSIC MAG BOOTS (FRW>19 OR MFIND>15) (CRES>30 OR FRES>30 OR LRES>30 OR PRES>30)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// MF, str, or dex gloves w/ res
ItemDisplay[CLASSIC MAG GLOVES (MFIND>15 OR DEX>9 OR STR>5) (CRES>20 OR FRES>20 OR LRES>20 OR PRES>20)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FHR or life or str belts w/ res
ItemDisplay[CLASSIC MAG BELT (FHR>16 OR LIFE>30 OR STR>15) (CRES>20 OR FRES>20 OR LRES>20 OR PRES>20)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FHR or life armor w/ res
ItemDisplay[CLASSIC MAG CHEST (FHR>16 OR LIFE>40) (CRES>20 OR FRES>20 OR LRES>20 OR PRES>20)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// helm with life and res
ItemDisplay[CLASSIC MAG HELM LIFE>10 (CRES>20 OR FRES>20 OR LRES>20 OR PRES>20)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//2 pal shields
ItemDisplay[CLASSIC SHIELD MAG CLSK3>1]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//High Res Sheilds
ItemDisplay[CLASSIC SHIELD MAG FRES+CRES+LRES+PRES>79]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//fcr staff
ItemDisplay[CLASSIC STAFF !RW FCR>9 ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//fcr wand
ItemDisplay[CLASSIC WAND !RW FCR>9 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
ItemDisplay[CLASSIC WAND !RW FCR>11 ILVL<31]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//fcr scepter
ItemDisplay[CLASSIC scp !RW FCR>9 ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//3os Shields
ItemDisplay[CLASSIC NMAG !RW SOCK=3 (lrg OR kit) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[3]%TIER-6%
//Frw boots
ItemDisplay[CLASSIC MAG BOOTS FRW>9 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
//Fhr belts armors and shields early
ItemDisplay[CLASSIC MAG !RW FHR>9 ILVL<25 CLVL<30 (BOOTS OR BELT OR SHIELD OR CHEST OR HELM)]: %GRAY%T6%MAP% %PURPLE%***FHR*** %BLUE%%NAME%%TIER-6%
//2 socket helms
ItemDisplay[CLASSIC NMAG !RW SOCK=2 (cap OR skp) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[2]%TIER-6%
//2 socket armors
ItemDisplay[CLASSIC MAG !RW SOCK=2 !ETH (qui OR lea OR hla OR stu) ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[2]%TIER-6%
//2 socket small shields
ItemDisplay[CLASSIC NMAG !RW SOCK=2 sml ILVL<13]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%***** %RED%[2]%TIER-6%
// 3 fire ball staff [normal Akara at clvl 7+, Drognan at clvl 14+]
ItemDisplay[CLASSIC STAFF !RW (NMAG OR MAG) (SK47>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 enchant staff [normal Drognan at clvl 14+]
ItemDisplay[CLASSIC STAFF !RW (NMAG OR MAG) (SK52>2) ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 bone spear wands [normal Drognan at clvl 14+]
ItemDisplay[CLASSIC WAND !RW (NMAG OR MAG) SK84>2 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 blessed hammers scepters
ItemDisplay[CLASSIC SCEPTER !RW (NMAG OR MAG) SK112>2 ILVL<35]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// 3 CE wand [normal Drognan at clvl 13]
ItemDisplay[CLASSIC WAND !RW (NMAG OR MAG) SK74>2 ILVL<25]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// alvl restrictions below prevent the items from being highlighted when higher tier
// shopping targets are available. For example, don't show mf/res gloves once +3 jav
// is available. Likely you don't care about seeing this crap at that point.
// Prismatic, single res, or socketed shield of deflection (alvl 33 - 3 sockets available)
// of Deflecting, alvl 11
// Cobalt/Garnet/Coral, alvl 18
// prismatic, alvl 28
ItemDisplay[CLASSIC MAG SHIELD (RES>15 OR CRES>20 OR FRES>20 OR LRES>20) FBR=30 ALVL<33]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FRW boots w/ res
// of Haste, alvl 22
// Sapphire/Ruby/Amber, alvl 25
ItemDisplay[CLASSIC MAG BOOTS FRW>19 (CRES>30 OR FRES>30 OR LRES>30)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// MF, str, or dex gloves w/ res (alvl 60 - 3 jav available)
// of Fortune, alvl 16
// of Precision, alvl 56
// of the Ox, alvl 45
// Cobalt/Garnet/Coral, alvl 18
ItemDisplay[CLASSIC MAG GLOVES (MFIND>15 OR DEX>9 OR STR>5) (CRES>20 OR FRES>20 OR LRES>20) ALVL<60]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// Belt with life or fhr and res
// of Stability, alvl 18
// of the Mammoth, alvl 25
// Cobalt/Garnet/Coral, alvl 18
ItemDisplay[CLASSIC MAG BELT (FHR=24 OR LIFE>30) (CRES>20 OR FRES>20 OR LRES>20)]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// Belt with 81-100 life
// of the Whale, alvl 50
ItemDisplay[CLASSIC MAG BELT LIFE>80]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// FHR or life armor w/ res or sockets (alvl 55 - 4 sockets available)
// of Stability, alvl 18
// of the Colossus, alvl 30
// Cobalt/Garnet/Coral, alvl 18
ItemDisplay[CLASSIC MAG CHEST (FHR=24 OR LIFE>40) (CRES>20 OR FRES>20 OR LRES>20) ALVL<55]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// helm with fhr and res or sockets (alvl 33 - 3 sockets available)
// of Balance, alvl 5
// Cobalt/Garnet/Coral, alvl 18
ItemDisplay[CLASSIC MAG HELM FHR>9 (CRES>20 OR FRES>20 OR LRES>202) ALVL<33]: %GRAY%T6%MAP% %GREEN%*****%PURPLE%%NAME%%GREEN%*****%TIER-6%
// #endregion - Shopping
//
// ADD METADATA
// ============
// #region - Metadata
// Set the colors of items manually so that we can prepend colored tags easily
ItemDisplay[UNI]: %GOLD%%NAME%%CONTINUE%
ItemDisplay[SET]: %GREEN%%NAME%%CONTINUE%
ItemDisplay[RARE]: %YELLOW%%NAME%%CONTINUE%
ItemDisplay[MAG]: %BLUE%%NAME%%CONTINUE%
ItemDisplay[RW]: %GRAY%%NAME%%CONTINUE%
// rings and amulets in gambling screen are considered NMAG
ItemDisplay[(NORM OR EXC OR ELT OR rin OR amu) NMAG !RW]: %WHITE%%NAME%%CONTINUE%
ItemDisplay[CRAFT]: %ORANGE%%NAME%%CONTINUE% // need 1.9.8
//Add code, ethereality, sockets, ilvl, and price to the name
//ItemDisplay[]: %NAME% [%CODE%]%CONTINUE%
ItemDisplay[SOCK>0 !RW NMAG]: %NAME% %RED%(%SOCKETS%)%CONTINUE%
ItemDisplay[ETH]: %DARK_GREEN%Eth %NAME%%CONTINUE%
//ItemDisplay[(NORM OR EXC OR ELT OR cm1 OR cm2) (MAG OR RARE OR CRAFT)]: %NAME% %GRAY%[L%ILVL%/%ALVL%]%CONTINUE%
//ItemDisplay[(rin OR amu OR jew OR cm3) (MAG OR RARE OR CRAFT)]: %NAME% %GRAY%[L%ILVL%]%CONTINUE%
//ItemDisplay[(NORM OR EXC OR ELT OR rin OR amu OR jew OR cm1 OR cm2 OR cm3) !(MAG OR RARE OR CRAFT)]: %NAME% %GRAY%[L%ILVL%]%CONTINUE%
ItemDisplay[!RW NMAG (NORM OR EXC OR ELT) PRICE>24999 DIFF=0]: %NAME% %GRAY%$%CONTINUE%
ItemDisplay[!RW NMAG (NORM OR EXC OR ELT) PRICE>29999 DIFF=1]: %NAME% %GRAY%$%CONTINUE%
ItemDisplay[!RW NMAG (NORM OR EXC OR ELT) PRICE>34999 DIFF=2]: %NAME% %GRAY%$%CONTINUE%
// Display weapon range and speed (remove // on the line below to use)
//ItemDisplay[WEAPON !SOR !WAND]: %GRAY%[+%RANGE% %WPNSPD%] %NAME% %CONTINUE%
// Display ilvl and price (remove // on the line below to use)
//ItemDisplay[!RUNE>0 !GEM>0]: %NAME% %GRAY%[L%ILVL%] (%PRICE%)%CONTINUE%
// Set the trailing color so that the sell price in vendor screens looks vanilla
ItemDisplay[UNI]: %NAME%%GOLD%%CONTINUE%
ItemDisplay[SET]: %NAME%%GREEN%%CONTINUE%
ItemDisplay[RARE]: %NAME%%YELLOW%%CONTINUE%
ItemDisplay[MAG]: %NAME%%BLUE%%CONTINUE%
ItemDisplay[RW]: %NAME%%GOLD%%CONTINUE%
// rings and amulets in gambling screen are considered NMAG
ItemDisplay[(NORM OR EXC OR ELT OR rin OR amu) NMAG !RW]: %NAME%%WHITE%%CONTINUE%
ItemDisplay[CRAFT]: %NAME%%ORANGE%%CONTINUE% // need 1.9.8
// Notifications for dropped runewords
ItemDisplay[RW]: %NAME%%GOLD%%MAP%
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// #endregion - Metadata
//
// UNIQUES AND SETS
// ================
// #region - Uniques and Sets
//
//
// ADD HOLY GRAIL ITEMS HERE
// =========================
///////////////
///////////////
//**How to add grail items to bh maphack config for notifications:**
//Our configs already include many of the holy grail items you're looking for, but if you want to add All missing grailers you have a couple of options:
//1. Download and install the slashdiablo chrome extensions via google chrome, if you have it installed already, make sure it's updated: https://chrome.google.com/webstore/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp
//2. Restart the browser, then navigate to your grail.slashdiablo.net account, There will be a button on the top right for "BH Filter Missing Items". click it.
// It will copy all lines for your missing items list for that account.
//3. Make sure to turn on maphack override option in slashdiablo launcher before editing your bh.cfg file. Close D2 and any errors.
// Then in your BH.cfg file in your slashdiablo/d2 folder under the section labeled "ADD HOLY GRAIL ITEMS HERE" paste them and save.
// If you don't see that line, you can add these items directly under the "UNIQUES AND SETS" part of your BH.cfg config and it should work perfectly.
// You can do this periodically and replace these lines in your config as you find items instead of refreshing it manually. Save it. You're done!
//
//If you want to do this manually or want to add something specific go here for a list of all uniques and set lines that are ready to be used: https://github.com/BeLikeLeBron/bhconfig/blob/master/Holy_Grail_All_Uniques_and_Sets.txt
//All uniques are Tier 4 items there, All sets are Tier 5 items. Feel free to change them as you wish. Simply copy the lines you want from that link then follow step 3 above.
//BE WARNED: your ping level must match the lines TIER number in the in-game BH settings to notify you of the drop
// This space below is for uniques and sets missing from your grail that you want that might not be listed in this config.
// Simply paste the lines you want from the link(s) above over here and save the file.
// Be sure to turn on maphack override option in Slashdiablo launcher before doing this.
// Your ping level must match the lines TIER number to notify you of the drop
//
//ALL UNIQUES - notify all unique items at ping level 4 (Remove // on the line below to use)
//ItemDisplay[!ID uni]: %GOLD%T4%MAP% %NAME%%TIER-4%
//ALL SETS - notify all set items at ping level 5 (Remove // on the line below to use)
//ItemDisplay[!ID SET]: %SAGE%T5%MAP% %NAME%%TIER-5%
/////////////////
// TIER 1 UNIQUES AND SETS
// ------
// Griffon's Eye
ItemDisplay[!CLASSIC UNI ci3]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
// Death's Fathom
ItemDisplay[!CLASSIC UNI obf]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
// Death's Web
ItemDisplay[!CLASSIC UNI 7gw]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
// 3os/unID Eth Tomb Reaver
ItemDisplay[!CLASSIC UNI ETH 7pa SOCK=3]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
ItemDisplay[!CLASSIC UNI ETH 7pa !ID]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
// Eth Death Cleaver
ItemDisplay[!CLASSIC UNI ETH 7wa]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
// 2os/unID Crown of Ages
ItemDisplay[!CLASSIC UNI urn SOCK=2]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
ItemDisplay[!CLASSIC UNI urn !ID]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
// Tyrael's Might and potential unID SAs
ItemDisplay[!CLASSIC UNI uar FRW>19]: %ORANGE%T1%MAP%%LINE-68% %NAME%%notify-8%
ItemDisplay[!CLASSIC UNI uar ILVL>86 !ID]: %ORANGE%T1%border-60%%dot-00%%LINE-68% %NAME%%notify-8%
// TIER 2 UNIQUES AND SETS
// ------
// Arachnid Mesh
ItemDisplay[!CLASSIC UNI ulc]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Eth Reaper's Toll
ItemDisplay[!CLASSIC UNI ETH 7s8]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Eth Andariel's Visage
ItemDisplay[!CLASSIC UNI ETH usk]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Nightwing's Veil and unID spired helms
ItemDisplay[!CLASSIC UNI uhm ALLSK>1]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
ItemDisplay[!CLASSIC UNI uhm !ID]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// SoJ or BK ring
ItemDisplay[!CLASSIC UNI rin ALLSK>0]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Mara's Kaleidoscope (25+ res)
ItemDisplay[!CLASSIC UNI amu ALLSK>1 RES>24]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Fireball, Frost Nova, Nova, Lightning, Chain Lightning, Enchant, or Blizzard Ormus
ItemDisplay[!CLASSIC UNI uui (SK47>0 OR SK44>0 OR SK48>0 OR SK49>0 OR SK53>0 OR SK52>0 OR SK59>0)]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// +3 PNB darkforce and unID bloodlord skulls
ItemDisplay[!CLASSIC UNI nef TABSK17>2]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
ItemDisplay[!CLASSIC UNI nef !ID]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Perfect Wisp Projector
ItemDisplay[!CLASSIC UNI rin MFIND=20 STAT144=20 CHSK236=5]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Perfect Ravenfrost
ItemDisplay[!CLASSIC UNI rin AR=250 DEX=20]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// Perfect War Travelers
ItemDisplay[!CLASSIC UNI ID xtb MFIND=50]: %PURPLE%T2%MAP%%LINE-9B% %NAME%%notify-0b%
// TIER 3 UNIQUES AND SETS
// ------
// Tier 3 Sets
// Tal Rasha's Guardianship (armor)
ItemDisplay[!CLASSIC SET uth]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Tal Rasha's Adjudication (amulet)
ItemDisplay[!CLASSIC SET amu CLSK1>1]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// 50 fire res Aldur's Advance (boots)
ItemDisplay[!CLASSIC SET ID xtb FRES=50]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Tier 3 Uniques
// +1-2 PNB darkforce
ItemDisplay[!CLASSIC UNI ID nef TABSK17<3]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Mara's Kaleidoscope (low res)
ItemDisplay[!CLASSIC UNI amu ALLSK>1 RES>19]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Harlequin Crest
ItemDisplay[!CLASSIC UNI uap]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Andariel's Visage
ItemDisplay[!CLASSIC UNI usk]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// War Travelers
ItemDisplay[!CLASSIC UNI xtb]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Eth Sandstorm Trek
ItemDisplay[!CLASSIC UNI ETH uvb]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Eth Vampire Gaze
ItemDisplay[!CLASSIC UNI ETH xh9]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Eth Titan's Revenge
ItemDisplay[!CLASSIC UNI ETH ama]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Steelrend
ItemDisplay[!CLASSIC UNI uhg]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Stormlash and potential unID scourges
ItemDisplay[!CLASSIC UNI 7fl IAS=30]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
ItemDisplay[!CLASSIC UNI 7fl ILVL>85 !ID]: %RED%T3%border-0a%%dot-00% %NAME%%notify-1%%TIER-3%
// Wisp Projector
ItemDisplay[!CLASSIC UNI rin CHSK236=5]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3% // sk236 (heart of wolv), lvl 5
// 3os Head Hunter's Glory and unID troll nests
ItemDisplay[!CLASSIC UNI ush SOCK=3]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
ItemDisplay[!CLASSIC UNI ush !ID]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// 2os Giant Skull and unID bone visage
ItemDisplay[!CLASSIC UNI uh9 SOCK=2]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
ItemDisplay[!CLASSIC UNI uh9 !ID]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Windforce
ItemDisplay[!CLASSIC UNI 6lw]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Shadow Dancer
ItemDisplay[!CLASSIC UNI uhb]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Astreon's Iron Ward
ItemDisplay[!CLASSIC UNI 7ws]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// 3os Tomb Reaver and unID cryptic axes
ItemDisplay[!CLASSIC UNI 7pa SOCK=3]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
ItemDisplay[!CLASSIC UNI 7pa !ID]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// Mang Song's Lesson
ItemDisplay[!CLASSIC UNI 6ws]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
// High Ravenfrost
ItemDisplay[!CLASSIC UNI rin AR>239 DEX=20]: %RED%T3%MAP% %NAME%%notify-1%%TIER-3%
//Herb for Dclone spawn (Slash specific)
ItemDisplay[!CLASSIC hrb]: %RED%T3%MAP% %GOLD%%NAME%%notify-1%%TIER-3%
//Token of Absolution (name and description to fix)
ItemDisplay[!CLASSIC toa]: %RED%T3%MAP% %ORANGE%Token of Absolution%notify-1%%TIER-3%{%ORANGE%Right-Click To Reset Stat/Skill Points}
// TIER 4 UNIQUES AND SETS
// ------
// Tier 4 Sets
// Aldur's Advance (boots)
ItemDisplay[!CLASSIC SET xtb]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Trang Oul's Girth (Belt)
ItemDisplay[!CLASSIC SET utc]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Trang Oul's Wing (Shield)
ItemDisplay[!CLASSIC SET ne9]: %GOLD%T4%MAP% %NAME%%TIER-4%
// 4os Griswold's Redemption and potential unID caduceus (Weapon)
ItemDisplay[!CLASSIC SET 7ws SOCK=4]: %GOLD%T4%MAP% %NAME%%TIER-4%
ItemDisplay[!CLASSIC SET 7ws !ID]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Immortal King's Soul Cage (Armor)
ItemDisplay[!CLASSIC SET uar]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Guillame's Face
ItemDisplay[!CLASSIC SET xhm]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Trang Oul's Claws (gloves)
ItemDisplay[!CLASSIC SET xmg]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Tal Rasha's Horadric Crest (mask)
ItemDisplay[!CLASSIC SET xsk]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Tal Rasha's Lidless Eye (orb)
ItemDisplay[!CLASSIC SET oba]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Tal Rasha's Fine Spun Cloth (belt)
ItemDisplay[!CLASSIC SET zmb]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Tier 4 Uniques
// The Oculus
ItemDisplay[!CLASSIC UNI oba]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Ondal's Wisdom
ItemDisplay[!CLASSIC UNI 6cs]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Herald of Zakarum
ItemDisplay[!CLASSIC UNI pa9]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Titan's Revenge
ItemDisplay[!CLASSIC UNI ama]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Vipermagi
ItemDisplay[!CLASSIC UNI xea]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Gore Rider
ItemDisplay[!CLASSIC UNI xhb]: %GOLD%T4%MAP% %NAME%%TIER-4%
// String of Ears
ItemDisplay[!CLASSIC UNI zlb]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Ravenfrost
ItemDisplay[!CLASSIC UNI rin AR>149]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Highlord's Wrath
ItemDisplay[!CLASSIC UNI amu ALLSK>0 IAS=20]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Dracul's Grasp
ItemDisplay[!CLASSIC UNI uvg]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Arreat's Face
ItemDisplay[!CLASSIC UNI baa]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Eth Stealskull
ItemDisplay[!CLASSIC UNI ETH xlm]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Eth Crown of Thieves
ItemDisplay[!CLASSIC UNI ETH xrn]: %GOLD%T4%MAP% %NAME%%TIER-4%
// Eth Ribcracker