Mercurial > wow > lfg-premade-filter
changeset 8:9129e71852b0 v3
v3 docs update + toc
author | ovolkov |
---|---|
date | Sat, 24 Jan 2015 06:43:15 +0300 |
parents | 1c43d75054e7 |
children | 7bc12a08a3d4 |
files | LFGFilter.toc LFGFilter.txt |
diffstat | 2 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/LFGFilter.toc Sat Jan 24 01:36:06 2015 +0300 +++ b/LFGFilter.toc Sat Jan 24 06:43:15 2015 +0300 @@ -1,7 +1,7 @@ ## Interface: 60000 ## Title: LFG Filter for Premade Groups -## Version: v2 +## Version: v3 ## Notes: Allows you to filter search results with complex expressions and sorts premade groups found by raid and difficulty, grouping all similar raids together. ## Author: Oleg "Rowaa[SR13]" Volkov
--- a/LFGFilter.txt Sat Jan 24 01:36:06 2015 +0300 +++ b/LFGFilter.txt Sat Jan 24 06:43:15 2015 +0300 @@ -1,4 +1,4 @@ -LFG Filter for Premade Groups, v2 +LFG Filter for Premade Groups, v3 It's great to have built-in Premade Group finder (aka LFG internally) except all the groups are mixed together and you need to carefully scan list to find that one raid or difficulty you've interested in or use TEXT based filter and risk missing groups you'd want. @@ -24,9 +24,10 @@ * ilvl - minimum ilevel required by group. * defeated - amount of bosses defeated. * members - people already in group. - * tanks - amount of tanks. - * healers - amount of healers. - * damagers - amount of damagers. + * tanks/healers/damagers - amount of players in tank/healer/damager role. + * warriors/deathknights/paladins/monks/priests/shamans/druids/rogues/mages/warlocks/hunters - amount of players of respective class. + +For each variable that have plural name there's also a copy with singular name for convenience. So both "mages" and "mage" or "tanks" and "tank" will work, for example. === Short summary of Lua syntax === * and, or, not - logical operators. "highmaul and normal" will find Highmaul normal raids, "highmaul and (normal or heroic)" will find Highmaul normal and heroic and will hide mythic. @@ -35,7 +36,7 @@ * :find - a string function, true if requested substring is present. * :match - a string function, can be used for more complex searches with regular expressions. Look it up in Lua manual. * () can be used to group and define precedence. - + === Examples === * =highmaul and heroic and defeated == 0 ** Fresh Highmaul Heroic. @@ -50,6 +51,10 @@ ** Find groups with at least 3 members. It will skip some groups that's just starting, but will also reliably hide recruit ads and other spam. == Change log == +2014-01-24 v3 +* Support both plural and singular names for variables that hold amount of something. +* Add variables for number of players of specific class. + 2014-01-21 v2 * Complete filtering rework: now works with expressions entered directly into group search filter field.