Tutorial -- Start Here!
- -- This directly loads demo screenshots
1 2 3 4 5
; and should take only a few seconds to process. - Click to enable-- This checkbox (and other controls) can also be found under
App Control
at the top-left corner. - Let's add an Attribute Filter. Under Attribute Filters,
- For “Type Pattern”, enter the word
focus
- For “Attribute Pattern”, enter the word
cooldown
- For “MinValue”, enter
5
- For “Score”, enter
10
- For “Type Pattern”, enter the word
- Click the button Add Filter.
- Notice that
GHOUL HEIRLOOM
is now assigned a score of10
and sorted first (leftmost) -- This is because: GHOUL HEIRLOOM
is an “Ancestral Rare Focus”, which matches “Type Pattern”focus
.GHOUL HEIRLOOM
's “7.0% Cooldown Reduction
” attribute matches “Attribute Pattern”cooldown
and “7.0
” is greater than or equal to “MinValue”5
.- On the other hand,
AMULET OF DISOBEDIENCE
(with an attribute of “9.2% Cooldown Reduction
”) still has a score of0
because it is an Amulet.
- Notice that
- Download additional demo screenshots:
6 7 8 9 10
; and load them from disk: -- This file input (and other controls) can also be found underApp Control
at the top-left corner. - Let's add another Attribute Filter. Under Attribute Filters,
- For “Type Pattern”, enter the characters
.*
(a dot followed by an asterisk) - For “Attribute Pattern”, enter the word
mana cost
- For “MinValue”, enter
5
- For “Score”, enter
20
- For “Type Pattern”, enter the characters
- Click the button Add Filter
- Notice that amulets
AMULET OF DISOBEDIENCE
,HERALD FLESH
and bootsPAIN HOOVES
are now each assigned a score of20
because of their “Mana Cost Reduction
” attributes. - The RegExp pattern
.*
(a dot followed by an asterisk) matches any string, so this new filter is applied to all types of items.
- Notice that amulets
- Feel free to experiment with theand-- These checkboxes (and other controls) can also be found under
App Control
at the top-left corner..