Advertisement
Guest User

ZIGGYD's LOOT FILTER V 0.6d

a guest
May 21st, 2015
2,355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. # ZIGGYD's LOOT FILTER
  2.  
  3. # Designed to be as lightweight as possible, modifiable and true to the original game.
  4. # Will later incorporate teaching crafting recipes and strategies as well.
  5.  
  6.  
  7.  
  8. # Jewels
  9. # Giving Jewels border color to distinguish them from other items
  10. Show
  11. BaseType "Crimson Jewel" "Cobalt Jewel" "Viridian Jewel"
  12. SetBorderColor 157 0 157
  13. PlayAlertSound 2
  14.  
  15. #High End Currency
  16. Show
  17. BaseType "Exalted Orb" "Eternal Orb" "Divine Orb"
  18. SetBackgroundColor 163 152 129
  19. SetTextColor 0 0 0
  20. SetBorderColor 0 0 0
  21. PlayAlertSound 7
  22. SetFontSize 39
  23.  
  24. Show
  25. BaseType "Chaos Orb" "Gemcutter's Prism" "Regal Orb" "Orb of Alchemy" "Vaal Orb"
  26. SetBackgroundColor 163 152 129
  27. SetTextColor 0 0 0
  28. SetBorderColor 0 0 0
  29.  
  30. Show
  31. BaseType "Mirror of Kalandra"
  32. SetBackgroundColor 255 128 255
  33. SetTextColor 0 0 0
  34. SetBorderColor 0 0 0
  35. SetFontSize 42
  36. PlayAlertSound 8
  37.  
  38.  
  39. #Vendor Recipes
  40. #Quality Recipes all have same grey border
  41. Show
  42. Class "Gloves" "Helmets" "Boots" "Daggers" "Wands" "Claws" "One Hand Swords" "One Hand Maces"
  43. SocketGroup RGB
  44. LinkedSockets >= 3
  45. SetBorderColor 170 158 130
  46.  
  47. Show
  48. BaseType "Spirit Shield" "Buckler" "Spiked Shield"
  49. SocketGroup RGB
  50. LinkedSockets >= 3
  51. SetBorderColor 170 158 130
  52.  
  53. Show
  54. Sockets = 6
  55. LinkedSockets < 5
  56. SetBorderColor 170 158 130
  57.  
  58. Show
  59. BaseType "Gavel" "Stone Hammer" "Rock Breaker"
  60. Rarity Normal
  61. SetTextColor 159 159 159
  62. SetBorderColor 170 158 130
  63.  
  64. Show
  65. Class "Gloves" "Helmets" "Boots" "Daggers" "Wands" "Claws" "One Hand Swords" "One Hand Maces"
  66. Quality = 20
  67. SetBorderColor 170 158 130
  68.  
  69. Show
  70. BaseType "Spirit Shield" "Buckler" "Spiked Shield"
  71. Quality = 20
  72. SetBorderColor 170 158 130
  73.  
  74. Show
  75. Class Flask
  76. Quality >= 10
  77. SetBorderColor 170 158 130
  78.  
  79.  
  80. #Essentials
  81.  
  82. Show
  83. Rarity Unique
  84.  
  85. Show
  86. Class Gem
  87. Quality >= 5
  88. SetBorderColor 0 128 128
  89.  
  90. Show
  91. Class "Quest Items" "Map" "Map Fragments" "Currency" "Gems"
  92.  
  93. Show
  94. LinkedSockets = 6
  95. SetFontSize 42
  96.  
  97. Show
  98. LinkedSockets = 5
  99. SetFontSize 39
  100.  
  101. Show
  102. Class "Fishing Rods"
  103. SetTextColor 255 128 255
  104. SetBorderColor 255 128 255
  105.  
  106.  
  107. #Showing All Rares Above 45
  108. Show
  109. ItemLevel >= 45
  110. Rarity Rare
  111.  
  112.  
  113. #Crafting Bases
  114. Show
  115. LinkedSockets >= 4
  116.  
  117. Show
  118. BaseType "Sai" "Fleshripper" "Eclipse Staff" "Dragoon Sword" "Gemini Claw" "Exquisite Blade" "Midgard Mace" "Maraketh Bow" "Tiger Hook" "Profane Wand" "Runic Hatchet" "Sambar Sceptre" "Coronal Maul" "Sacrificial Garb"
  119.  
  120.  
  121.  
  122. #Chance Orb Bases
  123. Show
  124. BaseType "Occultist's Vestment" "Spine Bow" "Prophecy Wand" "Judgement Staff" "Amethyst Ring"
  125. Rarity Normal
  126. SetBorderColor 175 96 37
  127.  
  128.  
  129. #USEFUL FLASKS
  130. Show
  131. Class "Utility Flasks"
  132.  
  133. Hide
  134. BaseType "Eternal Life Flask" "Divine Life Flask"
  135. ItemLevel >= 75
  136.  
  137. Show
  138. BaseType "Eternal Life Flask" "Divine Life Flask"
  139.  
  140. Hide
  141. BaseType "Hallowed Life Flask"
  142. ItemLevel >= 61
  143.  
  144. Show
  145. BaseType "Hallowed Life Flask"
  146.  
  147.  
  148. #Leveling
  149. #Basically disables filtering for new characters
  150. Show
  151. ItemLevel <= 45
  152.  
  153.  
  154. #Bad Jewellery Bases
  155. Show
  156. BaseType "Paua Ring" "Coral Amulet" "Studded Belt" "Cloth Belt"
  157. Rarity Normal
  158. SetBackgroundColor 17 17 17 100
  159. SetFontSize 22
  160.  
  161. #Showing all other jewellery
  162. Show
  163. Class "Rings" "Amulets" "Belts"
  164.  
  165. #Everything Else of No Value
  166. Show
  167. SetBackgroundColor 17 17 17 100
  168. SetFontSize 22
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement