Advertisement
Guest User

Untitled

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