Advertisement
Guest User

Path of exile loot filter

a guest
Apr 30th, 2015
2,828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.00 KB | None | 0 0
  1. # Clean, thematic, leveling loot filter
  2. # Game :   Path of Exile
  3. # Version: 1.0
  4. # Author:  Synnro
  5. #
  6. # How to use:
  7. # 1) Download and save as <name>.filter where <name> is the name you want to give the filter
  8. # 2) Place it in your C:\Users\<username>\Documents\My Games\Path of Exile folder
  9. # 3) Boot up the game
  10. # 4) Go to options > UI
  11. # 5) Scroll to bottom and specify the script you want
  12. #
  13. # What it does:
  14. # + Currency:
  15. #   - Mirrors have inverted colors with bright white text and sound
  16. #   - Eternals and Exalts have inverted colors and sound
  17. #   - Chaos, Vaal orbs, Regals etc have a currency colored border and sound
  18. #   - All other currency are shown normally
  19. #
  20. # + Items with valuable sockets:
  21. #   - Chrome recipies have borders
  22. #   - Six socket items have borders
  23. #   - Five and Six link items have borders
  24. #
  25. # + Gems:
  26. #   - Gems have inverted colors to look thematically similar
  27. #   - Quality gems have a white border
  28. #
  29. # + Quest items:
  30. #   - Quest items have inverted colors to look thematically similar
  31. #
  32. # + Maps:
  33. #   - Have no border
  34. #   - Now have a reddish background
  35. #
  36. # + Jewels:
  37. #   - Now have a blueish background
  38. #
  39. # + Uniques:
  40. #   - Now play a sound
  41. #
  42. # + Rares:
  43. #   - Rares with ilvl > 60 ( chaos recipie ) have yellow border
  44. #   - Rares with ilvl > 75 ( regal recipie ) have inverted colors
  45. #   - All other rares are shown normally
  46. #
  47. # + Flasks:
  48. #   - Utility flasks are always shown
  49. #
  50. # + Quality:
  51. #   - Items with quality >= 14% are always shown
  52. #
  53. # + Belts, Rings and Amulets:
  54. #   - Always shown
  55. #
  56. # + Others:
  57. #   - Items ( not listed above ) that are five or more levels below the current drop zone are not shown
  58. #          EG: no iron hats in maps
  59. #
  60.  
  61. # F I S H I N G R O D #################################################################
  62. Show
  63.     Class "Fishing Rod"
  64.     SetTextColor 240 240 240
  65.     SetBorderColor 240 240 240
  66.     PlayAlertSound 1
  67.  
  68. # C U R R E N C Y #####################################################################
  69. Show
  70.     BaseType "Mirror of Kalandra"
  71.     SetTextColor 255 255 255
  72.     SetBackgroundColor 170 160 130
  73.     SetBorderColor 255 255 255
  74.     PlayAlertSound 1
  75.  
  76. Show
  77.     BaseType "Exalted Orb" "Eternal Orb" "Divine Orb" "Albino Rhoa Feather"
  78.     SetTextColor 10 10 10
  79.     SetBackgroundColor 170 160 130
  80.     SetBorderColor 170 160 130
  81.     PlayAlertSound 2
  82.  
  83. Show
  84.     BaseType "Chaos Orb" "Regal Orb" "Orb of Alchemy" "Orb of Fusing" "Gemcutter's Prism" "Vaal Orb"
  85.     SetTextColor 170 160 130
  86.     SetBackgroundColor 10 10 10
  87.     SetBorderColor 170 160 130
  88.     PlayAlertSound 3
  89.  
  90. Show
  91.     Class Currency
  92.     SetTextColor 170 160 130
  93.     SetBackgroundColor 10 10 10
  94.  
  95. # S O C K E T S ########################################################################
  96. Show
  97.     LinkedSockets >= 5
  98.     SetBorderColor 240 240 240
  99. Show
  100.     Sockets 6
  101.     SetBorderColor 240 240 240
  102. Show
  103.     SocketGroup RGB
  104.     SetBorderColor 240 240 240
  105.  
  106.  
  107. # G E M S ##############################################################################
  108. Show
  109.     Class Gem
  110.     Quality > 0
  111.     SetTextColor 240 240 240
  112.     SetBackgroundColor 20 60 60
  113.     SetBorderColor 240 240 240
  114.  
  115. Show
  116.     Class Gem
  117.     SetTextColor 240 240 240
  118.     SetBackgroundColor 20 60 60
  119.  
  120.  
  121. # M A P S ###############################################################################
  122. Show
  123.     Class Map Fragments
  124.     SetBackgroundColor 80 20 20
  125.     SetBorderColor 80 20 20
  126.  
  127. # J E W E L S ###########################################################################
  128. Show
  129.     Class Jewel
  130.     SetBackgroundColor 20 20 60
  131.  
  132. # Q U E S T #############################################################################
  133. Show
  134.     Class Quest
  135.     SetBackgroundColor 20 80 20
  136.  
  137. # U N I Q U E S #########################################################################
  138. Show
  139.     Rarity Unique
  140.     PlayAlertSound 9
  141.  
  142. # R A R E S #############################################################################
  143. Show
  144.     Rarity Rare
  145.     ItemLevel >= 75
  146.     SetTextColor 10 10 10
  147.     SetBackgroundColor 255 255 120
  148.  
  149. Show
  150.     Rarity Rare
  151.     ItemLevel >= 60
  152.     SetBorderColor 255 255 120
  153.  
  154. Show
  155.     Rarity Rare
  156.  
  157. # J E W E L E R Y ###########################################################
  158. Show
  159.     Class Ring Amulet Belt
  160.  
  161. # F L A S K S ################################################################
  162. Show
  163.     Class Utility
  164.  
  165. # Q U A L I T Y ################################################################
  166. Show
  167.     Quality >= 14
  168.  
  169.  
  170. # T R A S H F I L T E R #####################################################################
  171.  
  172. Hide
  173.     ItemLevel >= 55
  174.     DropLevel < 50
  175. Hide
  176.     ItemLevel >= 50
  177.     DropLevel < 45
  178. Hide
  179.     ItemLevel >= 45
  180.     DropLevel < 40
  181. Hide
  182.     ItemLevel >= 40
  183.     DropLevel < 35
  184. Hide
  185.     ItemLevel >= 35
  186.     DropLevel < 30
  187. Hide
  188.     ItemLevel >= 30
  189.     DropLevel < 25
  190. Hide
  191.     ItemLevel >= 25
  192.     DropLevel < 20
  193. Hide
  194.     ItemLevel >= 20
  195.     DropLevel < 15
  196. Hide
  197.     ItemLevel >= 15
  198.     DropLevel < 10
  199. Hide
  200.     ItemLevel >= 10
  201.     DropLevel < 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement