comparison LFGFilter.txt @ 46:7d8a1cda524f v10

v10 docs + toc; ugh... I didn't package previous alpha as release back then?
author rowaasr13
date Sat, 17 Jun 2017 05:09:26 +0300
parents fcfee0b1a8d1
children 953dfe8341b1
comparison
equal deleted inserted replaced
45:82db5d724aa5 46:7d8a1cda524f
1 LFG Filter for Premade Groups, v9 1 LFG Filter for Premade Groups, v10
2 2
3 * http://www.curse.com/addons/wow/lfg-premade-filter 3 * http://www.curse.com/addons/wow/lfg-premade-filter
4 4
5 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. 5 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.
6 6
39 *** iron_maidens, im, maidens - The Iron Maidens 39 *** iron_maidens, im, maidens - The Iron Maidens
40 *** blackhand - Blackhand 40 *** blackhand - Blackhand
41 41
42 ** hellfire_citadel, hellfirecitadel, hellfire, hfc = Hellfire Citadel 42 ** hellfire_citadel, hellfirecitadel, hellfire, hfc = Hellfire Citadel
43 43
44 ** emerald_nightmare, en - Emerald Nightmare
45
46 ** trial_of_valor, tov - Trial of Valor
47
44 All raid and boss variables are as shown, no matter what language your client is. Boss values show defeated bosses, but there's two more values for convenience so you don't have to remember that. Just compare boss variable with "alive" or "dead", so if you need groups with Kargath Bladefist already cleared, use "kargath == dead". Generic boss1, boss2, etc. values are also available in any recognized raid even if I didn't add readable names yet. 48 All raid and boss variables are as shown, no matter what language your client is. Boss values show defeated bosses, but there's two more values for convenience so you don't have to remember that. Just compare boss variable with "alive" or "dead", so if you need groups with Kargath Bladefist already cleared, use "kargath == dead". Generic boss1, boss2, etc. values are also available in any recognized raid even if I didn't add readable names yet.
45 49
46 String values, all strings are automatically converted to lower case to simplify your searches. You can use string functions listed below: 50 String values:
47 * name - group's name - that big yellow text. 51 * name - group's name - that big yellow text.
48 * comment - longish comment entered by group leader, that place where people usually put "bring curve" or something. 52 * comment - longish comment entered by group leader, that place where people usually put "bring curve" or something.
49 * voice - name of voice chat program set by leader. Will be completely absent (nil) from groups without voice, so you first must check if it is present before trying to use string functions on it - e.g. "voice and voice:find('ts')". Obviously this can also be used as logical value to exclude any voice groups: "not voice". 53 * voice - name of voice chat program set by leader. Will be completely absent (nil) from groups without voice, so you first must check if it is present before trying to use string functions on it - e.g. "voice and voice:find('ts')". Obviously this can also be used as logical value to exclude any voice groups: "not voice".
54 All strings are automatically converted to lower case to simplify your searches. See list of functions you can use with strings below.
50 55
51 Number values: 56 Number values:
52 * ilvl - minimum ilevel required by group. 57 * ilvl - minimum ilevel required by group.
53 * defeated - amount of bosses defeated. 58 * defeated - amount of bosses defeated.
54 * members - people already in group. 59 * members - people already in group.
80 85
81 * =members > 3 86 * =members > 3
82 ** 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. 87 ** 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.
83 88
84 == Change log == 89 == Change log ==
90 2017-06-17 v10
91 * TOC update for 7.2.
92 * Emerald Nightmare and Trial of Valor tokens.
93 * Fix searching. New wrapping method shouldn't require maintenance every time Blizzard changes something.
94
85 2015-07-07 v9 95 2015-07-07 v9
86 * TOC update for 6.2. 96 * TOC update for 6.2.
87 * Fix incompatibility with new other language search in 6.2. 97 * Fix incompatibility with new other language search in 6.2.
88 * Hellfire Citadel raid tokens: hellfire_citadel, hellfirecitadel, hellfire, hfc. 98 * Hellfire Citadel raid tokens: hellfire_citadel, hellfirecitadel, hellfire, hfc.
89 99