Earlier Versions
Name | Size | Uploaded | Game Version | Downloads | |
0.2.5 release | 2.97 KB | Jun 28, 2015 | 6.2.0 | 7,209 | ![]() |
0.2.4 release | 2.97 KB | Feb 27, 2015 | 6.1.0 | 1,579 | ![]() |
0.2.3 release | 2.97 KB | Jan 10, 2015 | 6.0.3 | 1,030 | ![]() |
0.2.2 release | 2.97 KB | Mar 13, 2013 | 5.2.0 | 4,418 | ![]() |
0.2.1 release | 2.97 KB | Nov 28, 2012 | 5.1.0 | 1,322 | ![]() |
0.2 release | 3.05 KB | Aug 29, 2012 | 5.0.4 | 1,486 | ![]() |
0.1.2-beta beta | 2.92 KB | Nov 29, 2011 | 4.3.0 | 4,484 | ![]() |
0.1.1-beta beta | 3.26 KB | Jun 29, 2011 | 4.2.0 | 1,560 | ![]() |
0.1-beta beta | 3.11 KB | Jun 8, 2011 | 4.1.0 | 506 | ![]() |
0.2.8-alpha alpha | 2.91 KB | Sep 20, 2017 | 7.2.5 | 104 | ![]() |
0.2.8-alpha alpha | 2.82 KB | Aug 4, 2017 | 7.2.5 | 40 | ![]() |
r7 alpha | 3.13 KB | Jun 8, 2011 | 4.1.0 | 80 | ![]() |
r6 alpha | 3.07 KB | Jun 8, 2011 | 4.1.0 | 37 | ![]() |
r4 alpha | 3.05 KB | Jun 8, 2011 | 4.1.0 | 39 | ![]() |
0.0.1-alpha alpha | 11.03 KB | Jun 5, 2011 | 4.1.0 | 27 | ![]() |
0.0.1-alpha alpha | 10.97 KB | Jun 5, 2011 | 4.1.0 | 55 | ![]() |
Screenshots
Description
Interface for addons to include extra information on the GuildMemberInfo frame.
How to use
This is only for other addon authors that want to put extra information next to the guild frame when people are selected.
Load GuildMemberInfo
In your toc make GuildMemberInfo a dependency
## Dependencies: GuildMemberInfo
Register with GuildMemberInfo
bool = GMI:Register('AddonName', { lines = { uniqueLabel = { -- Required callback = function(GetGuildRosterInfo(i)) return newText; end, -- Optional label = 'Label', -- localized field label, default is uniqueLabel default = 'Default Value', height = ##, -- Special height consideration, default is 10, this requires testing onload = function(labelF, textF) yourFunc(labelF,textF) end, -- Function to run when the frame is created text = false, -- Disable creating the text frame, works well with onload }, }, });
Callback Example:
function yourCallback(name, ...) if true then return 'This is '..name; else -- Returning false doen't update the text return false; end end
To-Do
A way to unregister items
Available Modules
- GuildMemberInfo – TradeSkills: Adds the the primary professions of the player.
- GuildMemberInfo – SimpleILevel: Adds the last known SimpleILevel score of the player.
Add a comment