comparison LFGFilter.txt @ 33:ff7b66b7a51d v8

v8 docs + toc
author ovolkov
date Wed, 11 Mar 2015 03:51:19 +0300
parents 9cffb33ee2b8
children 52d931fe12a9
comparison
equal deleted inserted replaced
32:608f4d7f77d3 33:ff7b66b7a51d
1 LFG Filter for Premade Groups, v7 1 LFG Filter for Premade Groups, v8
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
26 *** twin_orgon, twins - Twin Orgon 26 *** twin_orgon, twins - Twin Orgon
27 *** koragh, breaker - Ko'ragh 27 *** koragh, breaker - Ko'ragh
28 *** imperator, margok - Imperator Mar'gok 28 *** imperator, margok - Imperator Mar'gok
29 29
30 ** blackrock_foundry, brf - Blackrock Foundrty 30 ** blackrock_foundry, brf - Blackrock Foundrty
31 *** Generic boss1 - boss10 values, human readable names coming soon 31 *** oregorger, oreg - Oregorger the Devourer
32 *** boss1 - Gruul 32 *** gruul - Gruul
33 *** ... etc ... 33 *** hansgar, franzok, hans, franz, hans_and_franz, twins - Hans'gar and Franzok
34 *** beastlord, darmac - Beastlord Darmac
35 *** flamebender, kagraz - Flamebender Ka'graz
36 *** operator, thogar - Operator Thogar
37 *** blast_furnace, bf, blast, furnace - Blast Furnace
38 *** kromog - Kromog, Legend of the Mountain
39 *** iron_maidens, im, maidens - The Iron Maidens
40 *** blackhand - Blackhand
34 41
35 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". 42 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.
36 43
37 String values, all strings are automatically converted to lower case to simplify your searches. You can use string functions listed below: 44 String values, all strings are automatically converted to lower case to simplify your searches. You can use string functions listed below:
38 * name - group's name - that big yellow text. 45 * name - group's name - that big yellow text.
39 * comment - longish comment entered by group leader, that place where people usually put "bring curve" or something. 46 * comment - longish comment entered by group leader, that place where people usually put "bring curve" or something.
47 * 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".
40 48
41 Number values: 49 Number values:
42 * ilvl - minimum ilevel required by group. 50 * ilvl - minimum ilevel required by group.
43 * defeated - amount of bosses defeated. 51 * defeated - amount of bosses defeated.
44 * members - people already in group. 52 * members - people already in group.
70 78
71 * =members > 3 79 * =members > 3
72 ** 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. 80 ** 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.
73 81
74 == Change log == 82 == Change log ==
83 2014-03-11 v8
84 * New "voice" string or nil value for voice chat set by leader.
85 * Readable names for BRF bosses.
86
75 2014-02-14 v7 87 2014-02-14 v7
76 * Fix "defeated". I filled it with alias to "dead", forgetting that I already use it as counter of defeated bosses. 88 * Fix "defeated". I filled it with alias to "dead", forgetting that I already use it as counter of defeated bosses.
77 89
78 2014-02-05 v6 90 2014-02-05 v6
79 * Generic boss1, boss2, etc. names for recognized instanced so there will be something to use while I write readable names. 91 * Generic boss1, boss2, etc. names for recognized instanced so there will be something to use while I write readable names.