Advertisement
bschug

bschug's Endgame Filter

May 5th, 2015
1,745
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.88 KB | None | 0 0
  1. # bschug's Loot Filter
  2.  
  3. # The main principle behind this filter is to show only items that are worth picking up.
  4. # The general structure of the filter is similar to NeverSink's, but it is way more restrictive.
  5. # The color scheme is subtle, I try to stay close to the original PoE colors.
  6. # Very valuable items are highlighted by using the usual text color as background color,
  7. # with either black or white text (whatever is more readable).
  8. # Other items worth picking up are highlighted with a slightly lighter background than usual
  9. # (similar to what it looks like when you hover the mouse over an item).
  10. # Low-value currency has a grey text color instead of the usual gold to make mid-value
  11. # currency more visible without adding too much visual noise.
  12.  
  13. # This is the end-game version of the filter.
  14. # It shows only valuable items and decent-base rares.
  15. # Everything the filter shows you is worth picking up.
  16.  
  17. # Ctrl+F:
  18. # [OVERRIDES]
  19. # [SOCKETS]
  20. # [LEAGUE SPECIFIC]
  21. # [CRAFTING]
  22. # [CHANCING]
  23. # [JEWELS]
  24. # [CURRENCY]
  25. # [RARES]
  26. # [RARE WEAPONS]
  27. # [RARE SHIELDS]
  28. # [RARE QUIVERS]
  29. # [RARE ARMOUR]
  30. # [RARE ACCESSORIES]
  31. # [GEMS]
  32. # [FLASKS]
  33. # [MAPS]
  34. # [UNIQUES]
  35. # [CARDS]
  36. # [LEVELING]
  37. # [GENERIC WHITELIST]
  38.  
  39. # ------------------- Style Templates ----------------------
  40. #
  41. # ******* Strong Highlight **********
  42. # Normal:
  43. # SetBackgroundColor 200 200 200
  44. # SetTextColor 0 0 0
  45. # SetBorderColor 0 0 0
  46. # SetFontSize 48
  47. # PlayAlertSound 6 300
  48. #
  49. # Magic:
  50. # SetBackgroundColor 136 136 255
  51. # SetTextColor 0 0 0
  52. # SetBorderColor 0 0 0
  53. # SetFontSize 48
  54. # PlayAlertSound 6 300
  55. #
  56. # Rare
  57. # SetBackgroundColor 255 255 119
  58. # SetTextColor 0 0 0
  59. # SetBorderColor 0 0 0
  60. # SetFontSize 48
  61. # PlayAlertSound 6 300
  62. #
  63. # Unique
  64. # SetBackgroundColor 175 78 17
  65. # SetTextColor 0 0 0
  66. # SetBorderColor 0 0 0
  67. # SetFontSize 48
  68. # PlayAlertSound 6 300
  69.  
  70. # *********** Regular Highlight ****************
  71. # Normal:
  72. # SetFontSize 40
  73. # SetBackgroundColor 80 80 80 220
  74. # PlayAlertSound 1 300
  75. #
  76. # Magic:
  77. # SetFontSize 40
  78. # SetBackgroundColor 50 50 90 220
  79. # PlayAlertSound 1 300
  80. #
  81. # Rare:
  82. # SetFontSize 40
  83. # SetBackgroundColor 90 90 45 220
  84. # PlayAlertSound 1 300
  85. #
  86. # Unique:
  87. # SetFontSize 40
  88. # SetBackgroundColor 70 35 14 220
  89. # PlayAlertSound 1 300
  90.  
  91.  
  92. # ====================== [OVERRIDES] ====================================
  93.  
  94. # Hide scrolls in end-game - it's better to just buy them from other players
  95. Hide
  96. Class Currency
  97. BaseType "Scroll of Wisdom"
  98. SetTextColor 100 100 100
  99.  
  100. # Hide identified rares because we probably dropped them
  101. # Don't hide corrupted items because they are always identified
  102. # Don't hide magic items because they may be warbands items
  103. # (and it's not that common to identify & drop blues in endgame)
  104. # Press Alt to see items dropped from Always Identified strongboxes.
  105. # Not reducing font size so they show up normally on Alt.
  106. Hide
  107. Rarity Rare
  108. Identified True
  109. Corrupted False
  110.  
  111.  
  112. ###################################################
  113.  
  114.  
  115. # ====================== [SOCKETS] ====================================
  116.  
  117. # 6-linked
  118. Show
  119. LinkedSockets 6
  120. Rarity Normal
  121. SetBackgroundColor 200 200 200
  122. SetTextColor 0 0 0
  123. SetBorderColor 0 0 0
  124. SetFontSize 48
  125. PlayAlertSound 6 300
  126. Show
  127. LinkedSockets 6
  128. Rarity Magic
  129. SetBackgroundColor 136 136 255
  130. SetTextColor 0 0 0
  131. SetBorderColor 0 0 0
  132. SetFontSize 48
  133. PlayAlertSound 6 300
  134. Show
  135. LinkedSockets 6
  136. Rarity Rare
  137. SetTextColor 0 0 0
  138. SetBorderColor 0 0 0
  139. SetFontSize 48
  140. PlayAlertSound 6 300
  141. Show
  142. LinkedSockets 6
  143. Rarity Unique
  144. SetBackgroundColor 175 78 17
  145. SetTextColor 0 0 0
  146. SetBorderColor 0 0 0
  147. SetFontSize 48
  148. PlayAlertSound 6 300
  149.  
  150. # 5-linked, decent crafting base armour
  151. Show
  152. LinkedSockets 5
  153. Rarity Normal
  154. ItemLevel >= 84
  155. BaseType "Assassin's Garb" "Glorious Plate" "Astral Plate" "Vaal Regalia" "Zodiac Leather"
  156. SetFontSize 40
  157. Show
  158. LinkedSockets 5
  159. ItemLevel >= 84
  160. Rarity Magic
  161. BaseType "Assassin's Garb" "Glorious Plate" "Astral Plate" "Vaal Regalia" "Zodiac Leather"
  162. SetFontSize 40
  163.  
  164. # 5-linked, decent crafting base weapons
  165. Show
  166. LinkedSockets 5
  167. ItemLevel >= 83
  168. Rarity Normal
  169. BaseType "Harbinger Bow" "Vaal Axe" "Coronal Maul" "Exquisite Blade"
  170. SetFontSize 48
  171. SetBackgroundColor 80 80 80 220
  172. PlayAlertSound 1 300
  173. Show
  174. LinkedSockets 5
  175. ItemLevel >= 83
  176. Rarity Magic
  177. BaseType "Harbinger Bow" "Vaal Axe" "Coronal Maul" "Exquisite Blade"
  178. SetFontSize 48
  179. SetBackgroundColor 50 50 90 220
  180. PlayAlertSound 1 300
  181.  
  182. # 6-socket Crafting Base Armor
  183. Show
  184. Sockets 6
  185. ItemLevel >= 84
  186. Rarity Normal
  187. BaseType "Assassin's Garb" "Glorious Plate" "Astral Plate" "Vaal Regalia" "Zodiac Leather"
  188. SetFontSize 48
  189. SetBackgroundColor 80 80 80 220
  190. SetBorderColor 0 0 0
  191. PlayAlertSound 1 300
  192. Show
  193. Sockets 6
  194. ItemLevel >= 84
  195. Rarity Magic
  196. BaseType "Assassin's Garb" "Glorious Plate" "Astral Plate" "Vaal Regalia" "Zodiac Leather"
  197. SetFontSize 48
  198. SetBackgroundColor 50 50 90 220
  199. PlayAlertSound 1 300
  200.  
  201. # 6-socket crafting base Weapons
  202. Show
  203. Sockets 6
  204. ItemLevel >= 83
  205. Rarity Normal
  206. BaseType "Harbinger Bow" "Vaal Axe" "Coronal Maul" "Exquisite Blade"
  207. SetFontSize 48
  208. SetBackgroundColor 80 80 80 220
  209. PlayAlertSound 1 300
  210. Show
  211. Sockets 6
  212. ItemLevel >= 83
  213. Rarity Magic
  214. BaseType "Harbinger Bow" "Vaal Axe" "Coronal Maul" "Exquisite Blade"
  215. SetFontSize 48
  216. SetBackgroundColor 50 50 90 220
  217. PlayAlertSound 1 300
  218.  
  219. # 6-socket rares are always valuable
  220. Show
  221. Sockets 6
  222. Rarity Rare
  223. SetFontSize 48
  224. SetBackgroundColor 90 90 45 220
  225. PlayAlertSound 1 300
  226.  
  227. # other 6-socket items
  228. Show
  229. Sockets 6
  230. SetFontSize 40
  231. PlayAlertSound 1
  232.  
  233.  
  234. # ------------------------------------- [LEAGUE SPECIFIC] --------------------------------
  235.  
  236. # Harbinger Pieces
  237. Show
  238. Class "Piece"
  239. SetBackgroundColor 63 59 49 220
  240. SetBorderColor 0 0 0
  241. SetFontSize 38
  242. PlayAlertSound 1 300
  243.  
  244. # Leaguestones
  245. Show
  246. Rarity Normal
  247. Class Leaguestone
  248. SetFontSize 40
  249. SetBackgroundColor 80 80 80 220
  250. SetBorderColor 0 0 0
  251. PlayAlertSound 1 300
  252.  
  253. Show
  254. Rarity Magic
  255. Class Leaguestone
  256. SetFontSize 40
  257. SetBackgroundColor 50 50 90 220
  258. SetBorderColor 0 0 0
  259. PlayAlertSound 1 300
  260.  
  261. Show
  262. Rarity Rare
  263. Class Leaguestone
  264. SetFontSize 40
  265. SetBackgroundColor 90 90 45 220
  266. SetBorderColor 0 0 0
  267. PlayAlertSound 1 300
  268.  
  269. Show
  270. Rarity Unique
  271. Class Leaguestone
  272. SetFontSize 40
  273. SetBackgroundColor 70 35 14 220
  274. SetBorderColor 0 0 0
  275. PlayAlertSound 1 300
  276.  
  277. # Breachstones, Reliquary Keys
  278. Show
  279. Class "Misc Map Items"
  280. SetFontSize 48
  281. SetBackgroundColor 240 180 40
  282. SetTextColor 0 0 0
  283. SetBorderColor 0 0 0
  284.  
  285. # Warbands
  286. Show
  287. Rarity Magic
  288. Identified True
  289. Corrupted False
  290. Class Gloves Boots Helmets Daggers Wands Sceptres
  291.  
  292. # Talismans
  293. Show
  294. Rarity Normal
  295. BaseType Talisman
  296. SetFontSize 40
  297. SetBackgroundColor 80 80 80 220
  298. PlayAlertSound 1 300
  299. Show
  300. Rarity Magic
  301. BaseType Talisman
  302. SetFontSize 40
  303. SetBackgroundColor 50 50 90 220
  304. PlayAlertSound 1 300
  305. Show
  306. Rarity Rare
  307. BaseType Talisman
  308. SetFontSize 40
  309. SetBackgroundColor 90 90 45 220
  310. PlayAlertSound 1 300
  311. Show
  312. Rarity Unique
  313. BaseType Talisman
  314. SetFontSize 40
  315. SetBackgroundColor 70 35 14 220
  316. PlayAlertSound 1 300
  317.  
  318. # Fishing Rod
  319. Show
  320. Class "Fishing Rod"
  321. SetTextColor 255 0 255
  322. SetBackgroundColor 255 255 255
  323. SetFontSize 48
  324. PlayAlertSound 6 300
  325.  
  326. # Labyrinth Items
  327. Show
  328. BaseType "Treasure Key" "Golden Key" "Silver Key" "Bane of the Loyal" "Portal Shredder" "Rod of Detonation" "Sand of Eternity" "Heart of the Gargoyle" "Cube Of Absorption" "Cogs of Disruption"
  329. SetTextColor 74 230 58
  330. SetFontSize 45
  331.  
  332. # Breach Splinters
  333. Show
  334. BaseType "Splinter of"
  335. SetFontSize 40
  336. SetBackgroundColor 30 0 50 200
  337. SetTextColor 200 80 150
  338.  
  339. Show
  340. BaseType "Blessing of"
  341. SetFontSize 45
  342. SetBackgroundColor 200 80 150
  343. SetTextColor 30 0 50
  344.  
  345. # Strongly Highlight T7 Essences
  346. Show
  347. BaseType "Deafening Essence of"
  348. SetBackgroundColor 170 158 130
  349. SetTextColor 0 0 0
  350. SetFontSize 48
  351. PlayAlertSound 6 300
  352.  
  353. # Decently highlight T6 and corruption-only essences
  354. Show
  355. BaseType "Shrieking Essence of" "Essence of Hysteria" "Essence of Insanity" "Essence of Horror" "Essence of Delirium"
  356. SetBackgroundColor 63 59 49 220
  357. SetFontSize 48
  358. PlayAlertSound 1 300
  359.  
  360. # Highlight remaining essences
  361. Show
  362. BaseType "Essence of"
  363. SetBackgroundColor 63 59 49 220
  364. SetFontSize 38
  365. PlayAlertSound 1 300
  366.  
  367. # Silver Coins
  368. Show
  369. BaseType "Silver Coin"
  370. SetFontSize 48
  371. SetBackgroundColor 63 59 49 220
  372. PlayAlertSound 1 300
  373.  
  374. # Perandus Coins
  375. Show
  376. BaseType "Perandus Coin"
  377. Class Currency
  378. SetFontSize 48
  379. SetBackgroundColor 63 59 49 220
  380. PlayAlertSound 1
  381.  
  382. # Quest Items
  383. Show
  384. Class Quest "Pantheon Soul"
  385. SetFontSize 45
  386.  
  387. # ------------------------------------- [CRAFTING] -------------------------------------
  388.  
  389. # Atlas Base Types (crafting-level ones are larger)
  390. Show
  391. ItemLevel >= 84
  392. Rarity <= Magic
  393. BaseType "Steel Ring" "Opal Ring" "Crystal Belt" "Blue Pearl Amulet" "Marble Amulet" "Vanguard Belt" "Bone Helmet" "Two-Toned Boots" "Spiked Gloves" "Gripped Gloves" "Fingerless Silk Gloves"
  394. SetFontSize 48
  395. Show
  396. Rarity <= Magic
  397. BaseType "Steel Ring" "Opal Ring" "Crystal Belt" "Blue Pearl Amulet" "Marble Amulet" "Vanguard Belt" "Bone Helmet" "Two-Toned Boots" "Spiked Gloves" "Gripped Gloves" "Fingerless Silk Gloves"
  398.  
  399. Show
  400. ItemLevel >= 84
  401. Rarity <= Magic
  402. BaseType "Onyx" "Diamond Ring" "Prismatic" "Titanium Spirit Shield" "Hubris Circlet" "Sorcerer Boots" "Sorcerer Gloves" "Vaal Regalia" "Two-Stone" "Jewelled Foil"
  403.  
  404. Show
  405. ItemLevel >= 84
  406. Rarity <= Magic
  407. Class Rings Amulet Belts
  408. BaseType "Ruby" "Sapphire" "Topaz" "Diamond" "Prismatic" "Unset" "Gold" "Citrine" "Turquoise" "Agate" "Coral Ring" "Moonstone" "Leather" "Heavy Belt" "Amber" "Jade" "Lapis" "Rustic Sash"
  409.  
  410. Show
  411. ItemLevel >= 84
  412. Rarity <= Magic
  413. LinkedSockets >= 4
  414. BaseType "Opal Sceptre" "Profane Wand" "Prophecy Wand" "Opal Wand" "Sambar Sceptre" "Imbued Wand" "Saintly Chainmail" "Harmonic Spirit Shield" "Fossilised Spirit Shield" "Titan Gauntlets" "Slink Gloves" "Royal Burgonet" "Lion Pelt" "Titan Greaves" "Slink Boots" "Kris" "Vaal Axe" "Coronal Maul" "Exquisite Blade" "Fleshripper" "Harbinger Bow" "Gemini Claw" "Ambusher" "Siege Axe" "Harpy Rapier" "Demon Dagger" "Skean" "Spiraled Foil"
  415.  
  416. Show
  417. Rarity <= Magic
  418. BaseType "Sacrificial Garb"
  419. SetFontSize 34
  420.  
  421. # ----------------------------------- [CHANCING] ----------------------------------------
  422.  
  423. Show
  424. Rarity Normal
  425. BaseType "Sorcerer Boots" "Leather Belt"
  426. SetFontSize 34
  427.  
  428. # ------------------------------------- [JEWELS] -----------------------------------------
  429.  
  430. Show
  431. Class Jewel
  432. Rarity Magic
  433. SetFontSize 40
  434. Show
  435. Class Jewel
  436. Rarity Rare
  437. SetFontSize 40
  438. SetBackgroundColor 90 90 45 220
  439. SetBorderColor 0 0 0
  440. PlayAlertSound 1 300
  441. Show
  442. Class Jewel
  443. Rarity Unique
  444. SetFontSize 40
  445. SetBackgroundColor 70 35 14 220
  446. SetBorderColor 0 0 0
  447. PlayAlertSound 1 300
  448.  
  449. # ---------------------------------------------------------------------------
  450.  
  451. # Show corrupted items with white sockets - useful for offhand gem leveling
  452. Show
  453. Sockets >= 3
  454. SocketGroup W
  455. Class Wands Daggers One Hand Shields Thrusting Sceptre Claws
  456. Rarity < Rare
  457.  
  458. # ================================================================================================
  459. #
  460. # END OF ENDGAME NORMAL / MAGIC
  461. #
  462. # ================================================================================================
  463. Hide
  464. Rarity <= Magic
  465. ItemLevel > 60
  466. Class Axes Bows Claws Daggers Maces Staves Swords Wands Armours Helmets Gloves Boots Shields Quivers Amulets Belts Rings
  467. SetFontSize 18
  468.  
  469.  
  470. # ----------------------------------- [CURRENCY] --------------------------------------------
  471.  
  472. # Strongly Highlight super-rare currency
  473. Show
  474. Class Currency
  475. BaseType "Exalted Orb" "Mirror of Kalandra" "Eternal Orb" "Divine Orb" "Stacked Deck" "Master Cartographer" "Journeyman Cartographer"
  476. SetBackgroundColor 170 158 130
  477. SetTextColor 0 0 0
  478. SetBorderColor 0 0 0
  479. SetFontSize 45
  480. PlayAlertSound 6 300
  481.  
  482. # Highlight medium rare currency
  483. Show
  484. Class Currency
  485. BaseType Prism Regal Blessed Regret Chaos Vaal Scouring Cartographer "Remnant of Corruption" "Orb of Binding" "Orb of Horizons" "Harbinger's Orb" "Engineer's Orb" "Ancient Orb"
  486. SetBackgroundColor 63 59 49 220
  487. SetBorderColor 0 0 0
  488. SetFontSize 38
  489. PlayAlertSound 1 300
  490.  
  491. # Make common currency grey
  492. Show
  493. Class Currency
  494. BaseType Wisdom Portal Blacksmith Armourer
  495. SetTextColor 100 100 100
  496.  
  497. # Show all other currency normally
  498. Show
  499. SetFontSize 38
  500. Class Currency
  501.  
  502.  
  503. # ===================================== [RARES] =========================================
  504.  
  505. # Highlight Atlas bases
  506. Show
  507. Rarity Rare
  508. BaseType "Steel Ring" "Opal Ring" "Blue Pearl Amulet" "Marble Amulet" "Vanguard Belt" "Crystal Belt" "Bone Helmet" "Two-Toned Boots" "Spiked Gloves" "Gripped Gloves" "Fingerless Silk Gloves"
  509. SetFontSize 45
  510. SetBackgroundColor 90 90 45 220
  511. PlayAlertSound 1 300
  512.  
  513. # Highlight 5-linked rares
  514. Show
  515. Rarity Rare
  516. LinkedSockets 5
  517. SetFontSize 40
  518. SetBackgroundColor 90 90 45 220
  519. PlayAlertSound 1 300
  520.  
  521. # ================================= [RARE WEAPONS] ======================================
  522.  
  523. # Axes suck (1hand is inferior to swords and maces, 2hand has better uniques)
  524.  
  525. # Bows
  526. Show
  527. Rarity Rare
  528. Class Bows
  529. BaseType "Harbinger" "Maraketh"
  530. SetFontSize 40
  531.  
  532. # Claws suck
  533.  
  534. # Daggers: either good balance of crit/dps or 80% global crit for caster
  535. Show
  536. Rarity Rare
  537. Class Daggers
  538. BaseType Sai Demon Imperial Platinum Ambusher Copper Golden
  539. SetFontSize 40
  540.  
  541. # Maces are too large and rarely valuable (only show Coronal for its +AOE radius)
  542. Show
  543. Rarity Rare
  544. Class Maces
  545. BaseType Coronal
  546. SetFontSize 40
  547.  
  548. # Sceptres:
  549. # Only show best implicit +%ED, or damage penetration
  550. Show
  551. Rarity Rare
  552. Class Sceptres
  553. BaseType Sambar Void Opal
  554. SetFontSize 40
  555.  
  556.  
  557. # Staves:
  558. # Melee staff builds all use Hegemony's Era, and caster staves are only valuable with +3 skills.
  559. # They are way too clunky for picking all up just in case.
  560. Show
  561. Rarity Rare
  562. Class Staves
  563. BaseType Eclipse
  564. SetFontSize 40
  565.  
  566. # Swords:
  567. # Regular one hand swords suck, only show high-crit thrusting
  568. Show
  569. Rarity Rare
  570. Class Thrusting
  571. BaseType Jewelled Spiraled
  572. SetFontSize 40
  573. # 2H
  574. Show
  575. Rarity Rare
  576. Class "Two Hand Swords"
  577. BaseType Exquisite
  578. SetFontSize 40
  579.  
  580. # Wands
  581. Show
  582. Rarity Rare
  583. DropLevel >= 56
  584. Class Wands
  585. SetFontSize 40
  586.  
  587. # ================================= [RARE SHIELDS] =====================================
  588.  
  589. # Str
  590. Show
  591. Rarity Rare
  592. Class Shields
  593. BaseType Pinnacle "Imperial Buckler" "Titanium Spirit" "Harmonic Spirit" "Archon Kite"
  594. SetFontSize 40
  595.  
  596. # ================================= [RARE QUIVERS] =====================================
  597.  
  598. Show
  599. Rarity Rare
  600. Class Quivers
  601. BaseType "Spike-Point" "Broadhead" "Two-Point" "Penetrating"
  602. SetFontSize 40
  603.  
  604. # ================================= [RARE ARMOUR] ======================================
  605.  
  606. # Body Armour - only show top tier non-hybrid
  607. Show
  608. Rarity Rare
  609. Class Body
  610. BaseType "Glorious Plate" "Astral Plate" "Zodiac Leather" "Assassin's Garb" "Vaal Regalia" "Widowsilk Robe" "Sacrificial"
  611. SetFontSize 40
  612.  
  613. # Boots
  614. Show
  615. Rarity Rare
  616. Class Boots
  617. BaseType "Titan Greaves" "Vaal Greaves" "Stealth Boots" "Slink Boots" "Arcanist Slippers" "Sorcerer Boots" "Two-Toned"
  618. SetFontSize 40
  619.  
  620. # Gloves
  621. Show
  622. Rarity Rare
  623. Class Gloves
  624. BaseType "Vaal Gauntlets" "Titan Gauntlets" "Spiked Gloves" "Stealth Gloves" "Slink Gloves" "Gripped Gloves" "Arcanist Gloves" "Sorcerer Gloves" "Fingerless"
  625. SetFontSize 40
  626.  
  627. # Helmets
  628. Show
  629. Rarity Rare
  630. Class Helmets
  631. BaseType "Royal Burgonet" "Eternal Burgonet" "Sinner Tricorne" "Lion Pelt" "Solaris Circlet" "Mind Cage" "Hubris Circlet" "Bone Helmet"
  632. SetFontSize 40
  633.  
  634. # Show all fully linked Boots, Gloves and Helmets
  635. Show
  636. Rarity Rare
  637. LinkedSockets 4
  638. Class Boots Gloves Helmets
  639. SetFontSize 40
  640.  
  641. # ------------------------------------ [RARE ACCESSORIES] ---------------------------------
  642.  
  643. # Highlight high-tier map exclusive bases
  644. Show
  645. Rarity Rare
  646. BaseType "Marble Amulet" "Blue Pearl Amulet" "Vanguard Belt" "Crystal Belt" "Opal Ring" "Steel Ring"
  647. SetBackgroundColor 90 90 45 220
  648. SetFontSize 45
  649.  
  650. # -------------- Amulets --------------
  651.  
  652. # Highlight good amulets: single stat, rarity
  653. Show
  654. Rarity Rare
  655. Class Amulets
  656. BaseType Amber Jade Lapis Gold
  657. SetBackgroundColor 90 90 45 220
  658. SetFontSize 40
  659.  
  660. # Coral Amulet sucks
  661. Hide
  662. Rarity < Unique
  663. BaseType "Coral Amulet"
  664. ItemLevel >= 65
  665.  
  666. # Show all other amulets
  667. Show
  668. Rarity Rare
  669. Class Amulets
  670. SetFontSize 40
  671.  
  672. # --------------- Rings ---------------
  673.  
  674. # Iron Ring sucks
  675. Hide
  676. ItemLevel >= 65
  677. Rarity < Unique
  678. BaseType "Iron Ring"
  679.  
  680. # Highlight all other rings
  681. Show
  682. Rarity Rare
  683. Class Rings
  684. SetBackgroundColor 90 90 45 220
  685. SetFontSize 40
  686.  
  687. # --------------- Belts ---------------
  688.  
  689. # Highlight: strength, life, es
  690. Show
  691. Rarity Rare
  692. Class Belts
  693. BaseType Chain Heavy Leather
  694. SetBackgroundColor 90 90 45 220
  695. SetBorderColor 0 0 0
  696. SetFontSize 40
  697.  
  698. # Show all other belts
  699. Show
  700. Rarity Rare
  701. Class Belts
  702. SetFontSize 40
  703.  
  704. # ---------------- Additional ES Gear for personal use ----------------
  705. Show
  706. Rarity Rare
  707. BaseType "Occultist's Vestment" "Solaris Circlet" "Conjurer Boots" "Conjurer Gloves"
  708. SetFontSize 40
  709. # Also show 30% sceptres for now
  710. Show
  711. Rarity Rare
  712. Class Sceptres
  713. BaseType Abyssal Platinum Vaal Carnal
  714. SetFontSize 40
  715. # -------------------------------------------------------------------------------------
  716. # END OF ENDGAME RARES
  717. # -------------------------------------------------------------------------------------
  718.  
  719. # Hide all other engame rares
  720. Hide
  721. Rarity Rare
  722. ItemLevel >= 65
  723. Class Axes Bows Claws Daggers Maces Sceptres Staves Swords Wands Armours Helmets Gloves Boots Shields Quivers Amulets Belts Rings
  724.  
  725.  
  726.  
  727. # ===================================== [GEMS] ==========================================
  728.  
  729. # Quality
  730. Show
  731. Class "Skill Gems"
  732. Quality >= 17
  733. SetBackgroundColor 27 162 155
  734. SetTextColor 0 0 0
  735. SetBorderColor 0 0 0
  736. SetFontSize 45
  737. PlayAlertSound 6 300
  738. Show
  739. Class "Skill Gems"
  740. Quality > 0
  741. SetBackgroundColor 35 80 80 220
  742. SetBorderColor 0 0 0
  743. SetFontSize 40
  744.  
  745. # Super Valuable Drop-Only
  746. Show
  747. Class "Skill Gems"
  748. BaseType Empower Enlighten Enhance "Vaal Breach" "Vaal Haste"
  749. SetBackgroundColor 27 162 155
  750. SetTextColor 0 0 0
  751. SetFontSize 45
  752. PlayAlertSound 6 300
  753.  
  754. # Valuable
  755. Show
  756. Class "Skill Gems"
  757. BaseType "Vaal Clarity" "Vaal Grace" "Added Chaos Damage" "Portal"
  758. SetBackgroundColor 35 80 80 220
  759. SetFontSize 40
  760. PlayAlertSound 1 300
  761.  
  762. # Show Vaal Gems
  763. Show
  764. Class "Skill Gems"
  765. BaseType Vaal
  766. SetFontSize 40
  767.  
  768. # We can't hide gems in endgame without hiding them also during leveling because they have no ItemLevel.
  769. # So instead we hide all starter gems and make the rest small size.
  770. Hide
  771. DropLevel 1
  772. Class "Skill Gem"
  773. Show
  774. Class "Skill Gem"
  775. SetFontSize 18
  776.  
  777. # ================================= [FLASKS] =======================================
  778.  
  779. Show
  780. Class Flasks
  781. BaseType Eternal Divine "Hallowed Hybrid"
  782. Rarity < Unique
  783. Quality 20
  784.  
  785. Show
  786. Class "Utility Flasks"
  787. Quality > 15
  788. Rarity < Unique
  789. SetFontSize 40
  790.  
  791. Hide
  792. ItemLevel >= 70
  793. Rarity < Unique
  794. Class Flasks
  795.  
  796. # ================================== [MAPS] =======================================
  797.  
  798. # Highlight Unique Maps
  799. Show
  800. Rarity Unique
  801. Class Maps
  802. SetBackgroundColor 70 35 14 220
  803. SetFontSize 45
  804.  
  805. # Strongly Highlight T16
  806. Show
  807. Rarity Normal
  808. Class Maps
  809. BaseType "Forge of the Phoenix Map" "Maze of the Minotaur Map" "Lair of the Hydra Map" "Pit of the Chimera Map" "Vaal Temple Map"
  810. SetFontSize 45
  811. SetBorderColor 255 0 0
  812. SetBackgroundColor 200 200 200
  813. SetTextColor 0 0 0
  814. PlayAlertSound 6 300
  815. Show
  816. Rarity Magic
  817. Class Maps
  818. BaseType "Forge of the Phoenix Map" "Maze of the Minotaur Map" "Lair of the Hydra Map" "Pit of the Chimera Map" "Vaal Temple Map"
  819. SetBorderColor 255 0 0
  820. SetBackgroundColor 136 136 255
  821. SetTextColor 0 0 0
  822. SetFontSize 48
  823. PlayAlertSound 6 300
  824. Show
  825. Rarity Rare
  826. Class Maps
  827. BaseType "Forge of the Phoenix Map" "Maze of the Minotaur Map" "Lair of the Hydra Map" "Pit of the Chimera Map" "Vaal Temple Map"
  828. SetBorderColor 255 0 0
  829. SetBackgroundColor 255 255 119
  830. SetTextColor 0 0 0
  831. SetFontSize 48
  832. PlayAlertSound 6 300
  833.  
  834. # Regular highlight for T15
  835. Show
  836. Class Maps
  837. Rarity Normal
  838. DropLevel 82
  839. SetBorderColor 255 0 0
  840. SetFontSize 45
  841. SetBackgroundColor 80 80 80 220
  842. PlayAlertSound 1 300
  843. Show
  844. Class Maps
  845. Rarity Magic
  846. DropLevel 82
  847. SetBorderColor 255 0 0
  848. SetFontSize 45
  849. SetBackgroundColor 50 50 90 220
  850. PlayAlertSound 1 300
  851. Show
  852. Class Maps
  853. Rarity Rare
  854. DropLevel 82
  855. SetBorderColor 255 0 0
  856. SetFontSize 45
  857. SetBackgroundColor 90 90 45 220
  858. PlayAlertSound 1 300
  859.  
  860. # Always larger font for red maps
  861. Show
  862. Class Maps
  863. DropLevel >= 78
  864. SetBorderColor 255 0 0
  865. SetBackgroundColor 80 80 80 220
  866. SetFontSize 42
  867. PlayAlertSound 4 300
  868.  
  869. # Show white maps until T8
  870. Show
  871. Class Maps
  872. ItemLevel <= 75
  873. DropLevel <= 72
  874. SetBorderColor 200 200 200
  875. SetFontSize 42
  876. PlayAlertSound 4
  877.  
  878. # Hide white maps dropping in Tier 8+
  879. Hide
  880. Class Maps
  881. ItemLevel > 75
  882. DropLevel <= 72
  883. SetBorderColor 200 200 200
  884.  
  885. # Always show good yellow maps
  886. Show
  887. Class Maps
  888. DropLevel > 72
  889. BaseType "Shaped" "Racecourse" "Strand" "Castle Ruins" "Armoury" "Atoll" "Cemetery" "Pier" "Shore" "Tropical Island" "Coves" "Promenade"
  890. SetBorderColor 255 255 119
  891. SetFontSize 42
  892. PlayAlertSound 4 300
  893.  
  894. # Always show T10 yellow maps
  895. Show
  896. Class Maps
  897. DropLevel 77
  898. SetBorderColor 255 255 119
  899. SetFontSize 42
  900. PlayAlertSound 4 300
  901.  
  902. # Only show other yellow maps outside of red maps
  903. Show
  904. Class Maps
  905. DropLevel < 77
  906. ItemLevel < 78
  907. SetBorderColor 255 255 119
  908. SetFontSize 42
  909. PlayAlertSound 4 300
  910.  
  911. # Hide bad yellow maps in T10+ maps
  912. Hide
  913. Class Maps
  914. DropLevel < 77
  915. ItemLevel >= 77
  916. SetBorderColor 255 255 119
  917.  
  918. # Safety check in case we forgot a possible combination
  919. # Make it ugly pink so we will definitely see it
  920. Show
  921. Class Maps
  922. SetFontSize 45
  923. SetBackgroundColor 255 100 255
  924. SetTextColor 0 0 0
  925. PlayAlertSound 7 300
  926.  
  927.  
  928. # ------------------------------ Map Fragments ------------------------------------
  929.  
  930. # Uber Lab
  931. Show
  932. BaseType "Offering to the Goddess"
  933. SetFontSize 45
  934.  
  935. # Rare Vaal Fragments
  936. Show
  937. BaseType "Sacrifice at Midnight" "Mortal Grief" "Mortal Rage"
  938. SetFontSize 40
  939. SetBackgroundColor 80 80 80 220
  940. SetBorderColor 0 0 0
  941. PlayAlertSound 1 300
  942. Show
  943. BaseType "Mortal Hope" "Mortal Ignorance"
  944. SetFontSize 45
  945. SetBackgroundColor 200 200 200
  946. SetTextColor 0 0 0
  947. SetFontSize 48
  948. PlayAlertSound 6 300
  949.  
  950. # Fall of Oriath
  951. Show
  952. BaseType "Divine Vessel"
  953. SetFontSize 45
  954. SetBackgroundColor 200 200 200
  955. SetTextColor 0 0 0
  956. SetFontSize 48
  957. PlayAlertSound 6 300
  958.  
  959. # Atlas Fragments
  960. Show
  961. BaseType "Fragment of the "
  962. BaseType Phoenix Minotaur Chimera Hydra
  963. SetFontSize 45
  964. SetBackgroundColor 200 200 200
  965. SetTextColor 0 0 0
  966. SetFontSize 48
  967. PlayAlertSound 6 300
  968.  
  969. # Prophecy Fragments
  970. Show
  971. BaseType Key
  972. BaseType Eber Yriel Inya Volkuur
  973. SetFontSize 45
  974. SetBackgroundColor 200 200 200
  975. SetTextColor 0 0 0
  976. SetFontSize 48
  977. PlayAlertSound 6 300
  978.  
  979. # Highlight all other map fragments as non-recognized
  980. Show
  981. Class "Map Fragments"
  982. SetFontSize 40
  983. SetBackgroundColor 255 0 0
  984. SetTextColor 255 255 255
  985. SetBorderColor 255 255 255
  986. PlayAlertSound 1
  987.  
  988.  
  989.  
  990. # ----------------------------------- [UNIQUES] -----------------------------------
  991.  
  992. # Auto-generated with data from poe.ninja
  993.  
  994. # Top Tier Uniques (15c+)
  995. Show
  996. Rarity Unique
  997. BaseType "Granite Flask" "Crusader Boots" "Mosaic Kite Shield" "Ruby Amulet" "Sage Wand" "Terror Claw" "Eternal Sword" "Prismatic Ring" "Prophecy Wand" "Glorious Plate" "Imperial Claw" "Vaal Spirit Shield" "Imperial Staff" "Occultist's Vestment" "Deicide Mask" "Spine Bow" "Despot Axe" "Large Hybrid Flask" "Hubris Circlet" "Champion Kite Shield" "Amber Amulet" "Infernal Sword" "Maelström Staff" "Stibnite Flask" "Archon Kite Shield" "Jewelled Foil" "Paua Ring" "Siege Axe" "Assassin's Garb" "Imperial Maul" "Onyx Amulet" "Ruby Flask" "Nightmare Bascinet" "Leather Belt" "Ritual Sceptre" "Conjurer Boots" "Moonstone Ring" "Legion Gloves" "Agate Amulet" "Desert Brigandine" "Topaz Flask" "Void Axe" "Vaal Axe" "Lapis Amulet" "Cutlass" "Ezomyte Tower Shield" "Goathide Boots" "Sacrificial Garb" "Vaal Gauntlets" "Silver Flask" "Ebony Tower Shield" "Deerskin Gloves" "Rotfeather Talisman" "Two-Stone Ring" "Savant's Robe" "Strapped Mitts" "Sorcerer Boots" "Sapphire Flask" "Rawhide Boots" "Spike-Point Arrow Quiver" "Greatwolf Talisman" "Rustic Sash" "Imperial Bow" "Gladiator Plate"
  998. SetBackgroundColor 175 78 17
  999. SetTextColor 0 0 0
  1000. SetBorderColor 0 0 0
  1001. SetFontSize 45
  1002. PlayAlertSound 6 300
  1003.  
  1004. # Decent Uniques (2c+)
  1005. Show
  1006. Rarity Unique
  1007. BaseType "Crystal Sceptre" "Cloth Belt" "Penetrating Arrow Quiver" "Chain Belt" "Arcanist Gloves" "Diamond Ring" "Clasped Mitts" "Vaal Regalia" "Wyrmscale Doublet" "Citadel Bow" "Wool Gloves" "Gavel" "Jasper Chopper" "Iron Ring" "Bismuth Flask" "Fiend Dagger" "Steelhead" "Prophet Crown" "Ursine Pelt" "Ezomyte Burgonet" "Crystal Belt" "Long Staff" "Royal Axe" "Raven Mask" "Midnight Blade" "Branded Kite Shield" "Turquoise Amulet" "Titan Greaves" "Nubuck Boots" "Murder Mitts" "Unset Ring" "Carnal Sceptre" "Blinder" "Ruby Ring" "Topaz Ring" "Triumphant Lamellar" "Gold Ring" "Heavy Belt" "Rawhide Tower Shield" "Abyssal Axe" "Sharkskin Boots" "Highborn Staff" "Crude Bow" "Terror Maul" "Elegant Sword" "Two-Point Arrow Quiver" "Vaal Sceptre" "Vaal Blade" "Wereclaw Talisman" "Murder Boots" "Sapphire Ring" "Citrine Amulet" "Jade Amulet" "Judgement Staff" "Stealth Boots" "Simple Robe" "Crusader Gloves" "Gold Amulet" "Trapper Boots" "Full Wyrmscale" "Vaal Mask" "Royal Burgonet" "Zodiac Leather" "Jingling Spirit Shield"
  1008. SetFontSize 45
  1009. SetBackgroundColor 70 35 14 220
  1010. SetBorderColor 0 0 0
  1011. PlayAlertSound 6 300
  1012.  
  1013. # Mediocre Uniques (~1c)
  1014. Show
  1015. Rarity Unique
  1016. BaseType "Titanium Spirit Shield" "Amethyst Flask" "Ancient Gauntlets" "Ancient Greaves" "Coral Amulet" "Leather Cap" "Karui Sceptre" "Broadhead Arrow Quiver" "Wool Shoes" "Studded Belt" "Varnished Coat" "Meatgrinder" "Iron Gauntlets" "Coral Ring" "Steelscale Gauntlets" "Mind Cage" "Vanguard Belt" "Coiled Staff" "Amethyst Ring" "Conjurer Gloves" "Sanctified Mana Flask" "Tornado Wand" "Grand Mana Flask" "Platinum Sceptre" "Iron Staff" "Sanctified Life Flask" "Regicide Mask" "Harlequin Mask" "Engraved Wand" "Sinner Tricorne" "Painted Tower Shield" "Driftwood Wand" "Imperial Skean" "Fright Claw" "Serpentscale Gauntlets" "Corrugated Buckler" "Velvet Slippers" "Dusk Blade" "Coronal Leather" "Pine Buckler" "War Sword" "Lion Pelt" "Hallowed Hybrid Flask" "Exquisite Leather" "Black Maw Talisman" "Labrys" "Reinforced Greaves" "Slaughter Knife" "Praetor Crown" "Lacquered Helmet" "War Hammer" "Thresher Claw" "Festival Mask" "Sharkskin Tunic" "Steel Gauntlets" "Harbinger Bow" "Sundering Axe" "Astral Plate" "Pinnacle Tower Shield" "Spiraled Wand" "Cedar Tower Shield" "Dragonscale Boots" "Lacquered Garb"
  1017. SetFontSize 38
  1018.  
  1019. # Worthless Uniques (< 2 alch)
  1020. Show
  1021. Rarity Unique
  1022. BaseType "Estoc" "Stiletto" "Bronzescale Boots" "Crystal Wand" "Void Sceptre" "Timeworn Claw" "Shadow Axe" "Reaver Sword" "Baroque Round Shield" "Great Crown" "War Buckler" "Recurve Bow" "Vaal Hatchet" "Paua Amulet" "Carnal Armour" "Short Bow" "Quartz Wand" "Elegant Ringmail" "Ezomyte Blade" "Rock Breaker" "Highland Blade" "Bastard Sword" "Elder Sword" "Bronzescale Gauntlets" "Bone Bow" "Serpentine Staff" "Iron Mask" "Crusader Plate" "Gut Ripper" "Cutthroat's Garb" "Wrapped Mitts" "Colossal Tower Shield" "Platinum Kris" "Zealot Helmet" "Laminated Kite Shield" "Spiked Club" "Saintly Chainmail" "Deerskin Boots" "Goliath Gauntlets" "Tricorne" "Headsman Axe" "Death Bow" "Shagreen Boots" "Crusader Chainmail" "Jade Hatchet" "Decimation Bow" "Boot Blade" "Strapped Boots" "Ornate Mace" "Hellion's Paw" "Latticed Ringmail" "Bronze Sceptre" "Necromancer Circlet" "Serpentscale Boots" "Ironscale Boots" "Gladius" "Skinning Knife" "Buckskin Tunic" "Soldier Boots" "Wild Leather" "Painted Buckler" "Necromancer Silks" "Secutor Helm" "Sharktooth Arrow Quiver" "Woodsplitter" "Karui Chopper" "Slink Boots" "Whalebone Rapier" "Copper Plate" "Quicksilver Flask" "Serrated Arrow Quiver" "Golden Buckler" "Poleaxe" "Dragonscale Gauntlets" "Enameled Buckler" "Strapped Leather" "Visored Sallet" "Ornate Ringmail" "Holy Chainmail" "Studded Round Shield" "Royal Bow" "Soldier Helmet" "Brass Maul" "Assassin's Mitts" "Rusted Sword" "Siege Helmet" "Tarnished Spirit Shield" "Karui Maul" "Burnished Spiked Shield" "Goathide Gloves" "Goat's Horn" "Clasped Boots" "Cleaver" "Basket Rapier" "Gilded Sallet" "Corsair Sword" "Conquest Chainmail" "Vaal Buckler" "Carved Wand" "Soldier Gloves" "Reinforced Tower Shield" "Royal Skean" "Sabre" "Sage's Robe" "Tomahawk" "Iron Circlet" "Full Scale Armour" "Assassin Bow" "Velvet Gloves" "Tiger Sword" "Plank Kite Shield" "Harmonic Spirit Shield" "Gnarled Branch" "Flaying Knife" "Widowsilk Robe" "Shadow Sceptre" "Royal Staff" "Ivory Spirit Shield" "Great Helmet" "Jagged Foil" "Chain Gloves" "Awl" "Great Mallet" "Vile Staff" "Samite Helmet" "Primordial Staff" "Lathi" "Imbued Wand" "Golden Plate" "Etched Greatsword" "Goliath Greaves" "Scholar Boots" "Opal Wand" "Infernal Axe" "Dread Maul" "Antique Rapier" "Sledgehammer" "Vaal Claw" "Close Helmet" "Destiny Leather" "Silken Hood" "Ironscale Gauntlets" "Fire Arrow Quiver" "Auric Mace" "Blunt Arrow Quiver" "Compound Spiked Shield" "Lion Sword" "Greater Mana Flask" "Twilight Blade" "Silk Slippers" "Supreme Spiked Shield" "Golden Mask" "Lunaris Circlet" "Sulphur Flask" "Rotted Round Shield" "Nailed Fist" "Decorative Axe" "Dream Mace" "Titan Gauntlets" "Plate Vest" "Iron Hat" "Scholar's Robe" "Vine Circlet" "Brass Spirit Shield" "Legion Sword" "Legion Boots" "Ornate Sword" "Jagged Maul" "Thorium Spirit Shield" "Military Staff" "Full Dragonscale" "Long Bow" "Leather Hood" "Boot Knife" "Elegant Foil" "Spidersilk Robe" "Iron Sceptre" "Demon's Horn" "Wyrmscale Gauntlets" "Quartz Flask" "Silk Gloves" "Ranger Bow" "Mesh Boots" "Aventail Helmet"
  1023. SetFontSize 30
  1024.  
  1025. # Draw pink border around unknown Uniques
  1026. Show
  1027. Rarity Unique
  1028. SetBorderColor 255 100 255
  1029.  
  1030.  
  1031. # ================================== [CARDS] =============================================
  1032.  
  1033. # Manually hide troll cards
  1034. Hide
  1035. Class "Divination Card"
  1036. BaseType "The Carrion Crow"
  1037. SetTextColor 183 111 240
  1038. SetFontSize 24
  1039.  
  1040. # auto-generated from poe.ninja
  1041.  
  1042. # Strongly highlight very valuable cards (15c+)
  1043. Show
  1044. Class "Divination Card"
  1045. BaseType "The Fiend" "The Dragon's Heart" "The Queen" "The Doctor" "The Ethereal" "The Saint's Treasure" "The Immortal" "Abandoned Wealth" "The Offering" "The Last One Standing" "Hunter's Reward" "The Polymath" "Wealth and Power" "The Thaumaturgist" "The Hunger" "The Artist" "Mawr Blaidd" "The Spark and the Flame" "The Celestial Justicar" "Bowyer's Dream"
  1046. SetBackgroundColor 183 111 240
  1047. SetTextColor 0 0 0
  1048. SetFontSize 48
  1049. SetBorderColor 0 0 0
  1050. PlayAlertSound 6 300
  1051.  
  1052. # Highlight cards that are moderately valuable (1c+)
  1053. Show
  1054. Class "Divination Card"
  1055. BaseType "The One With All" "The Poet" "The Chains that Bind" "The Valley of Steel Boxes" "The Stormcaller" "Lucky Deck" "The Vast" "The Standoff" "Humility" "Dialla's Subjugation" "Atziri's Arsenal" "Last Hope" "The Valkyrie" "The Wrath" "Lingering Remnants" "Scholar of the Seas" "Merciless Armament" "The Cataclysm" "The Warlord" "The Wolven King's Bite" "The Brittle Emperor" "The Union" "Earth Drinker" "The Fletcher" "The Cursed King" "The Sephirot" "Lost Worlds" "The Formless Sea" "A Mother's Parting Gift" "Lysah's Respite" "The Wolf" "The Inventor" "Pride Before the Fall" "Chaotic Disposition" "Heterochromia" "The Soul" "The Hoarder" "The Conduit" "Time-Lost Relic" "The Dark Mage" "The Void" "The Porcupine" "The Aesthete" "Jack in the Box" "Emperor of Purity" "The King's Heart" "The Wretched" "The Risk" "The Spoiled Prince" "The Trial" "Lucky Connections" "The Cartographer" "The Body" "The Enlightened" "The Dapper Prodigy" "Vinia's Token"
  1056. SetBackgroundColor 64 40 84 220
  1057. SetBorderColor 0 0 0
  1058. SetTextColor 183 111 240
  1059. SetFontSize 38
  1060. PlayAlertSound 1 300
  1061.  
  1062. # Show cards normally that aren't very valuable (<1c)
  1063. Show
  1064. Class "Divination Card"
  1065. BaseType "The Survivalist" "Blind Venture" "Death" "The Inoculated" "The Metalsmith's Gift" "The Surgeon" "Her Mask" "Dying Anguish" "The Arena Champion" "The Scholar" "Gift of the Gemling Queen" "The Opulent" "The Road to Power" "Boundless Realms" "The Pack Leader" "Rats" "The Tower" "Turn the Other Cheek" "Doedre's Madness" "The Endurance" "Coveted Possession" "The Jester" "The Doppelganger" "The Garish Power" "Mitts" "Cartographer's Delight" "The Summoner" "The Betrayal" "The Visionary" "Emperor's Luck" "The Wolf's Shadow" "Three Faces in the Dark" "Anarchy's Price" "Light and Truth" "The Lion" "The Wolverine" "The Battle Born" "The Traitor" "The Avenger" "The Feast" "Loyalty" "Rain of Chaos" "The Lover" "Volatile Power" "The Forsaken" "Thunderous Skies" "The Incantation" "The Sun" "Call to the First Ones" "Hope" "The Hermit" "Gemcutter's Promise" "The Web" "The Gambler" "The Penitent" "The Watcher" "Hunter's Resolve" "The Carrion Crow" "The Dragon" "The Explorer" "The Gentleman" "Destined to Crumble" "The King's Blade" "The Calling" "The Pact" "The Lich" "The Catalyst" "The Drunken Aristocrat" "The Coming Storm" "Hubris" "Treasure Hunter" "The Scavenger" "The Siren" "The Harvester" "The Throne" "The Tyrant" "The Surveyor" "The Gladiator" "The Scarred Meadow" "Grave Knowledge" "The Oath" "The Lord in Black" "Rain Tempter" "Shard of Fate" "The Demoness" "The Rabid Rhoa" "The Wind" "The Sigil" "Glimmer of Hope" "Lantador's Lost Love" "Prosperity" "Struck by Lightning" "The Flora's Gift" "The Twins" "The Fox" "Tranquillity" "The Gemcutter" "The Encroaching Darkness" "Audacity" "The Mercenary" "The Lunaris Priestess" "Assassin's Favour" "Might is Right" "The Warden" "Birth of the Three"
  1066. SetTextColor 183 111 240
  1067.  
  1068. # Draw pink border around all cards not recognized by the filter
  1069. # (They are constantly adding new cards, and I'm too lazy even to add the cards that are already there)
  1070. Show
  1071. Class "Divination Card"
  1072. SetBorderColor 255 100 255
  1073. SetTextColor 183 111 240
  1074. PlayAlertSound 1 300
  1075.  
  1076.  
  1077.  
  1078. # Hide all Life, Mana and Hybrid flasks
  1079. Hide
  1080. BaseType Life Mana Hybrid
  1081. Rarity < Unique
  1082. Class Flask
  1083.  
  1084. # Show all utility flasks
  1085. Show
  1086. Class Flask
  1087.  
  1088. # -------------------------------- [GENERIC WHITELIST] --------------------------
  1089.  
  1090. # Always show Uniques (no special highlighting needed)
  1091. Show
  1092. Rarity Unique
  1093. PlayAlertSound 3
  1094.  
  1095. # Show all rares that weren't explicitly hidden
  1096. Show
  1097. Rarity Rare
  1098.  
  1099. # Hide all the other trash
  1100. # Use explicit blacklist of item classes to avoid hiding stuff we forgot to whitelist
  1101. Hide
  1102. Class Axes Bows Claws Daggers Maces Sceptres Staves Swords Wands "Body Armours" Shields Boots Gloves Helmets Quivers Amulets Belts Rings "Skill Gem"
  1103. SetFontSize 10
  1104.  
  1105. # Pink font and border for anything we somehow haven't covered (which would be a bug in the filter)
  1106. Show
  1107. SetTextColor 255 0 255
  1108. SetBorderColor 255 0 255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement