Advertisement
Guest User

PoE Loot Filter - Basic 1.0

a guest
Apr 30th, 2015
1,541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. #PoE Loot Filter - Basic Level 60-65+
  2.  
  3. #Installation Instructions
  4. #Put script in your relevant user directory
  5. #C:\Users\...\Documents\My Games\Path of Exile
  6. #Paste this script in a file with the .filter suffix, like Item.filter
  7. #Go to PoE, go to UI, scroll to bottom, set item filter to the script name, in this case "Item"
  8.  
  9. #Overrides
  10.  
  11. #Uber-Rares and Quest Items
  12.  
  13. Show
  14. Class "Quest Items"
  15.  
  16. Show
  17. BaseType "Mirror of Kalandra" "Rhoa Feather" "Fishing Rod"
  18. SetTextColor 40 40 0
  19. SetBackgroundColor 123 240 240
  20. PlayAlertSound 5
  21.  
  22. #Currency and Sockets
  23.  
  24. Show
  25. BaseType "Eternal Orb" "Divine Orb" "Exalted Orb"
  26. SetTextColor 81 47 9
  27. SetBackgroundColor 230 160 32
  28. PlayAlertSound 5
  29. Show
  30. Class Currency
  31. SetTextColor 20 20 20
  32. SetBackgroundColor 180 160 146
  33. Show
  34. LinkedSockets > 4
  35. SetBorderColor 255 43 255
  36. PlayAlertSound 1
  37. Show
  38. Sockets 6
  39. SetBorderColor 255 0 0
  40. Show
  41. SocketGroup RGB
  42. SetBorderColor 255 0 0
  43.  
  44.  
  45. #Gems and Jewels
  46.  
  47. Show
  48. Class Gems
  49. Quality > 0
  50. SetBorderColor 255 0 0
  51. Show
  52. Class Gems
  53. Show
  54. Class Jewel
  55. SetBorderColor 6 251 0
  56.  
  57. #Uniques and Rares
  58.  
  59. Show
  60. Rarity Unique
  61. PlayAlertSound 8
  62. Show
  63. ItemLevel >= 60
  64. Rarity Rare
  65. SetBorderColor 255 0 0
  66. Show
  67. Rarity Rare
  68.  
  69. #Flasks
  70.  
  71. Show
  72. BaseType "Flask"
  73. Quality >= 10
  74. SetTextColor 150 150 150
  75. SetBorderColor 255 0 0
  76.  
  77. Show
  78. BaseType "Flask"
  79. BaseType "Amethyst" "Diamond" "Granite" "Jade" "Quartz" "Quicksilver" "Ruby" "Sapphire" "Topaz"
  80. SetTextColor 150 150 150
  81.  
  82. Show
  83. BaseType Flask
  84. BaseType "Divine Life" "Eternal Life"
  85. SetTextColor 150 150 150
  86.  
  87. #Maps
  88.  
  89. Show
  90. Class Maps
  91. PlayAlertSound 2
  92. Show
  93. Class Maps "Map Fragments"
  94.  
  95. #Chisel Recipe
  96.  
  97. Show
  98. Rarity Normal
  99. BaseType "Gavel" "Rock Breaker" "Stone Hammer"
  100. SetBorderColor 255 0 0
  101.  
  102. #Normal Items and Chance Bases
  103.  
  104. Show
  105. Rarity Normal
  106. ItemLevel >= 50
  107. BaseType "Gavel" "Occultist's Vestment" "Vile Staff" "Judgement Staff" "Prophecy Wand"
  108. SetTextColor 255 255 255
  109. SetBackgroundColor 75 75 75
  110.  
  111. Show
  112. Rarity Normal
  113. BaseType "Sacrificial Garb"
  114.  
  115. #Hide the Rest
  116. Hide
  117.  
  118. #Debug Mode
  119. #Show
  120. # SetBackgroundColor 60 60 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement