Advertisement
bschug

bschug's Leveling Filter

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