Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Clean, thematic, leveling loot filter
- # Game : Path of Exile
- # Version: 1.0
- # Author: Synnro
- #
- # How to use:
- # 1) Download and save as <name>.filter where <name> is the name you want to give the filter
- # 2) Place it in your C:\Users\<username>\Documents\My Games\Path of Exile folder
- # 3) Boot up the game
- # 4) Go to options > UI
- # 5) Scroll to bottom and specify the script you want
- #
- # What it does:
- # + Currency:
- # - Mirrors have inverted colors with bright white text and sound
- # - Eternals and Exalts have inverted colors and sound
- # - Chaos, Vaal orbs, Regals etc have a currency colored border and sound
- # - All other currency are shown normally
- #
- # + Items with valuable sockets:
- # - Chrome recipies have borders
- # - Six socket items have borders
- # - Five and Six link items have borders
- #
- # + Gems:
- # - Gems have inverted colors to look thematically similar
- # - Quality gems have a white border
- #
- # + Quest items:
- # - Quest items have inverted colors to look thematically similar
- #
- # + Maps:
- # - Have no border
- # - Now have a reddish background
- #
- # + Jewels:
- # - Now have a blueish background
- #
- # + Uniques:
- # - Now play a sound
- #
- # + Rares:
- # - Rares with ilvl > 60 ( chaos recipie ) have yellow border
- # - Rares with ilvl > 75 ( regal recipie ) have inverted colors
- # - All other rares are shown normally
- #
- # + Flasks:
- # - Utility flasks are always shown
- #
- # + Quality:
- # - Items with quality >= 14% are always shown
- #
- # + Belts, Rings and Amulets:
- # - Always shown
- #
- # + Others:
- # - Items ( not listed above ) that are five or more levels below the current drop zone are not shown
- # EG: no iron hats in maps
- #
- # F I S H I N G R O D #################################################################
- Show
- Class "Fishing Rod"
- SetTextColor 240 240 240
- SetBorderColor 240 240 240
- PlayAlertSound 1
- # C U R R E N C Y #####################################################################
- Show
- BaseType "Mirror of Kalandra"
- SetTextColor 255 255 255
- SetBackgroundColor 170 160 130
- SetBorderColor 255 255 255
- PlayAlertSound 1
- Show
- BaseType "Exalted Orb" "Eternal Orb" "Divine Orb" "Albino Rhoa Feather"
- SetTextColor 10 10 10
- SetBackgroundColor 170 160 130
- SetBorderColor 170 160 130
- PlayAlertSound 2
- Show
- BaseType "Chaos Orb" "Regal Orb" "Orb of Alchemy" "Orb of Fusing" "Gemcutter's Prism" "Vaal Orb"
- SetTextColor 170 160 130
- SetBackgroundColor 10 10 10
- SetBorderColor 170 160 130
- PlayAlertSound 3
- Show
- Class Currency
- SetTextColor 170 160 130
- SetBackgroundColor 10 10 10
- # S O C K E T S ########################################################################
- Show
- LinkedSockets >= 5
- SetBorderColor 240 240 240
- Show
- Sockets 6
- SetBorderColor 240 240 240
- Show
- SocketGroup RGB
- SetBorderColor 240 240 240
- # G E M S ##############################################################################
- Show
- Class Gem
- Quality > 0
- SetTextColor 240 240 240
- SetBackgroundColor 20 60 60
- SetBorderColor 240 240 240
- Show
- Class Gem
- SetTextColor 240 240 240
- SetBackgroundColor 20 60 60
- # M A P S ###############################################################################
- Show
- Class Map Fragments
- SetBackgroundColor 80 20 20
- SetBorderColor 80 20 20
- # J E W E L S ###########################################################################
- Show
- Class Jewel
- SetBackgroundColor 20 20 60
- # Q U E S T #############################################################################
- Show
- Class Quest
- SetBackgroundColor 20 80 20
- # U N I Q U E S #########################################################################
- Show
- Rarity Unique
- PlayAlertSound 9
- # R A R E S #############################################################################
- Show
- Rarity Rare
- ItemLevel >= 75
- SetTextColor 10 10 10
- SetBackgroundColor 255 255 120
- Show
- Rarity Rare
- ItemLevel >= 60
- SetBorderColor 255 255 120
- Show
- Rarity Rare
- # J E W E L E R Y ###########################################################
- Show
- Class Ring Amulet Belt
- # F L A S K S ################################################################
- Show
- Class Utility
- # Q U A L I T Y ################################################################
- Show
- Quality >= 14
- # T R A S H F I L T E R #####################################################################
- Hide
- ItemLevel >= 55
- DropLevel < 50
- Hide
- ItemLevel >= 50
- DropLevel < 45
- Hide
- ItemLevel >= 45
- DropLevel < 40
- Hide
- ItemLevel >= 40
- DropLevel < 35
- Hide
- ItemLevel >= 35
- DropLevel < 30
- Hide
- ItemLevel >= 30
- DropLevel < 25
- Hide
- ItemLevel >= 25
- DropLevel < 20
- Hide
- ItemLevel >= 20
- DropLevel < 15
- Hide
- ItemLevel >= 15
- DropLevel < 10
- Hide
- ItemLevel >= 10
- DropLevel < 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement