WoW GuildMemberInfo addon Dragonflight/Wrath of the Lich King Classic 2024
logo
wow addon GuildMemberInfo

GuildMemberInfo

Game Version: 6.2.0
Total Downloads: 23,976
Updated: Jun 28, 2015
Created: Jun 5, 2011
download GuildMemberInfoDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
0.2.5 release 2.97 KB Jun 28, 2015 6.2.0 7,209 download GuildMemberInfo 0.2.5 releaseDownload
0.2.4 release 2.97 KB Feb 27, 2015 6.1.0 1,579 download GuildMemberInfo 0.2.4 releaseDownload
0.2.3 release 2.97 KB Jan 10, 2015 6.0.3 1,030 download GuildMemberInfo 0.2.3 releaseDownload
0.2.2 release 2.97 KB Mar 13, 2013 5.2.0 4,418 download GuildMemberInfo 0.2.2 releaseDownload
0.2.1 release 2.97 KB Nov 28, 2012 5.1.0 1,322 download GuildMemberInfo 0.2.1 releaseDownload
0.2 release 3.05 KB Aug 29, 2012 5.0.4 1,486 download GuildMemberInfo 0.2 releaseDownload
0.1.2-beta beta 2.92 KB Nov 29, 2011 4.3.0 4,484 download GuildMemberInfo 0.1.2-beta betaDownload
0.1.1-beta beta 3.26 KB Jun 29, 2011 4.2.0 1,560 download GuildMemberInfo 0.1.1-beta betaDownload
0.1-beta beta 3.11 KB Jun 8, 2011 4.1.0 506 download GuildMemberInfo 0.1-beta betaDownload
0.2.8-alpha alpha 2.91 KB Sep 20, 2017 7.2.5 104 download GuildMemberInfo 0.2.8-alpha alphaDownload
0.2.8-alpha alpha 2.82 KB Aug 4, 2017 7.2.5 40 download GuildMemberInfo 0.2.8-alpha alphaDownload
r7 alpha 3.13 KB Jun 8, 2011 4.1.0 80 download GuildMemberInfo r7 alphaDownload
r6 alpha 3.07 KB Jun 8, 2011 4.1.0 37 download GuildMemberInfo r6 alphaDownload
r4 alpha 3.05 KB Jun 8, 2011 4.1.0 39 download GuildMemberInfo r4 alphaDownload
0.0.1-alpha alpha 11.03 KB Jun 5, 2011 4.1.0 27 download GuildMemberInfo 0.0.1-alpha alphaDownload
0.0.1-alpha alpha 10.97 KB Jun 5, 2011 4.1.0 55 download GuildMemberInfo 0.0.1-alpha alphaDownload

Screenshots

Description

Share this:

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.

Comments

Add a comment