Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Highlight High-Value Currency with Correct Colors and "Tink" Sound
- Show
- BaseType "Orb of Alchemy"
- SetFontSize 50
- SetTextColor 255 0 0 # Red text
- SetBorderColor 255 0 0 # Red border
- SetBackgroundColor 255 255 255 # White background
- PlayAlertSound 6 300 # Correct "tink" sound
- Show
- BaseType "Exalted Orb" "Chaos Orb" "Orb of Annulment" "Mirror of Kalandra"
- SetFontSize 50
- SetTextColor 255 0 0 # Red text
- SetBorderColor 255 0 0 # Red border
- SetBackgroundColor 255 255 255 # White background
- PlayAlertSound 6 300 # Correct "tink" sound
- # Highlight Gold (Reverted to Previous Style)
- Show
- BaseType "Gold"
- SetFontSize 25 # Half size
- SetTextColor 0 0 0 # Black text
- SetBorderColor 0 0 0 # Black border
- SetBackgroundColor 255 223 0 # Brighter golden background
- # Highlight Scroll of Wisdom
- Show
- BaseType "Scroll of Wisdom"
- SetFontSize 50
- SetTextColor 0 0 0
- SetBorderColor 0 0 0
- SetBackgroundColor 184 134 11 # Dark golden color
- # Highlight Rune Items with Light Green Color
- Show
- BaseType "Rune"
- SetFontSize 50
- SetTextColor 0 0 0 # Black text color
- SetBorderColor 0 0 0 # Black border color
- SetBackgroundColor 111 255 111 # Light green background
- PlayAlertSound 2 150 # Halved volume for runes
- # Highlight Belts and Amulets with High Contrast and Noise
- Show
- Class "Belt" "Amulet" "Ring"
- SetFontSize 45
- SetTextColor 255 255 255 # White text
- SetBorderColor 0 255 0 # Bright green border
- SetBackgroundColor 0 0 0 # Black background
- PlayAlertSound 3 300 # Subtle sound for belts and amulets
- # Highlight Currency Items with Subtle Brown/Gold Color (Excludes Specific BaseTypes Above)
- Show
- Class "Currency"
- SetFontSize 40 # Reduced font size
- SetTextColor 139 69 19 # RGB for brown color
- SetBorderColor 255 223 0 # RGB for gold border
- SetBackgroundColor 204 164 0 # RGB for darker gold background
- PlayAlertSound 2 150 # Halved volume for generic currency
- # Highlight Socketed Items (1 or More Sockets) with Subtle Grey
- Show
- Sockets > 0
- SetFontSize 35 # Smaller font size
- SetTextColor 169 169 169 # RGB for dark grey text
- SetBorderColor 105 105 105 # RGB for dim grey border
- SetBackgroundColor 211 211 211 # RGB for light grey background
- # Highlight Quality Items with Antique Gold Theme (Excluding Flasks)
- Show
- Quality > 0
- SetFontSize 35
- SetTextColor 184 134 11 # RGB for dark goldenrod text
- SetBorderColor 139 101 8 # RGB for saddle brown border
- SetBackgroundColor 218 165 32 # RGB for goldenrod background
Advertisement
Add Comment
Please, Sign In to add comment