Titan Panel [Guild]
| Last Update: | April 6, 2008 (1 month ago) |
|---|---|
| Category: | Group/Guild Management |
| Tags: | bar, guild, titan, and titanpanel |
| Project Manager: | SeGeDel |
| Current Version: | Titan Panel [Guild] Version 3.54b (for World of Warcraft 2.4.0) |
| Downloads Today: | 231 |
| Downloads Total: | 11,567 |
| Favorites: | 88 |
| Comments: | 13 |
- Screenshot
- More
- More Information
| Created On: | April 5, 2008 |
|---|---|
| Compatible: |
|
| Localized: |
|
- About Titan Panel [Guild]
THIS ADDON IS FROM chicogrande (jluzier@gmail.com)!
I have only done the changes to make it compatible with Patch 2.4
The outdated version can found here:
http://www.wowinterface.com/downloads/info4720-TitanPanelGuild.html
Titan Panel [Guild]: A simple guild list for the Titan Panel AddOn.
Requires: Titan Panel
Can be found at: http://wow.curse.com/downloads/details/618/
or: http://code.google.com/titanpanel
- Lists online guild members in a tooltip
- Menu shows names of online members, with click to /whisper functionality.
- Menu has options to /guild chat and /officer (/o) chat
- Menu has option to toggle Show offline members, which changes this setting in your Social frame, Guild tab
- Advanced menus to /w, /invite, /friend or /who guild members
- Shows default messages if the player is not a member of a guild
- Updates the guild listing every 5 minutes to accomodate the GuildRoster() delay and lag. The update only takes place if the player is 'idle' and not accessing conflicting UI frames or Titan elements
- Tooltip and right-click menu content is sortable using the Sort menu option, works like the guild frame
- Filters available for seeing only those guild members within your level range, your zone, or to look for members of a specific class
- Colors rank names (Advanced) or player names (Simple) based on rank index
- To save space, player can turn off menu options
Usage:
- In the right-click menu, click on a guild member name to send them a whisper
- Enable 'Show Advanced Menus' to create submenus for each online guild member based on rank
- Left-click on button to toggle the Friends Frame > Guild Tab
- When you have all settings configured to your liking, use 'Hide Options' to maximize your menu space.
- Downloads (6)
- Screenshots (1)
- Comments
- RSS
You need to login or register to post comments.
Benefits of Registration
- Interact with hundreds of thousands of other gamers on an open social network.
- Post your stories, news, images, videos, and other content to share.
- Create a network with your fellow gamers or join an existing one.
- Gain reputation for everything you do.
- Similar Addons
- 5,032 GroupCalendar Group/Guild Management, Quest ...
- 294 epgp (dkp reloaded) Group/Guild Management and ...
- 229 Seque's UI Group/Guild Management, Raids ...
- 174 GuildAds Group/Guild Management
- 161 Guild Event Manager Group/Guild Management
- 6,874 QuestHelper Map and Quest & Leveling
- 6,497 Omen Threat Meter Raids & Encounters
- 5,032 GroupCalendar Group/Guild Management, Quest ...
- 4,421 Atlasloot Enhanced Map and Tradeskill
- 4,150 Atlas Map




- +0
- Thumbs Down
- Thumbs Up
Maischter saidone more fix...
all locals have to be
classListValues = {"All",
only the word "all" does work with the filter...
- +0
- Thumbs Down
- Thumbs Up
SeGeDel saidonce more i've to say: thx...
only the localized classListValues had to be corrected...
- +0
- Thumbs Down
- Thumbs Up
Maischter saidhere an fix for the ingame classlist filter..:
-- BC: No longer a difference between Horde/Alliance classes (Shaman/Paladin)
--hordeClassValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock"};
--allianceClassValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Priest", "Warlock", "Paladin"};
if (GetLocale() == "deDE") then
classListLabels = {"Alle",
"Krieger",
"Kriegerin",
"Magier",
"Magierin",
"Schurke",
"Schurkin",
"Druide",
"Druidin",
"J\195\164ger",
"J\195\164gerin",
"Schamane",
"Schamanin",
"Priester",
"Priesterin",
"Hexenmeister",
"Hexenmeisterin",
"Paladin"};
classListValues = {"All", "Krieger", "Kriegerin", "Magier", "Magierin", "Schurke", "Schurkin", "Druide", "Druidin", "J\195\164ger", "J\195\164gerin", "Schamane", "Schamanin", "Priester", "Priesterin", "Hexenmeister", "Hexenmeisterin", "Paladin"};
elseif (GetLocale() == "frFR") then
classListLabels = {"All",
"Druide",
"Druidesse",
"Chasseur",
"Chasseuse",
"Mage",
"Paladin",
"Pr\195\170tre",
"Pr\195\170tresse",
"Voleur",
"Voleuse",
"Chaman",
"Chamane",
"D\195\169moniste",
"Guerrier",
"Guerri\195\171re"}; -- \195\171 ?= รจ
classListValues = {"All", "Warrior", "Warrior", "Mage", "Mage", "Rogue", "Rogue", "Druid", "Druid", "Hunter", "Hunter", "Shaman", "Shaman", "Priest", "Priest", "Warlock", "Warlock", "Paladin"};
elseif (GetLocale() == "esES") then
classListLabels = {"Todas",
"Druida",
"Cazador",
"Cazadora",
"Mago",
"Maga",
"Palad\195\173n",
"Sacerdote",
"Sacerdotisa",
"P\195\173caro",
"P\195\173cara",
"Cham\195\161n",
"Brujo",
"Bruja",
"Guerrero",
"Guerrera"};
classListValues = {"All", "Warrior", "Warrior", "Mage", "Mage", "Rogue", "Rogue", "Druid", "Druid", "Hunter", "Hunter", "Shaman", "Shaman", "Priest", "Priest", "Warlock", "Warlock", "Paladin"};
else
classListValues = {"All", "Warrior", "Warrior", "Mage", "Mage", "Rogue", "Rogue", "Druid", "Druid", "Hunter", "Hunter", "Shaman", "Shaman", "Priest", "Priest", "Warlock", "Warlock", "Paladin"};
classListLabels = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Paladin"};
end
- +0
- Thumbs Down
- Thumbs Up
SeGeDel saidthis happens using copy&paste ;-) thx
- +0
- Thumbs Down
- Thumbs Up
Maischter saidin the last version
[7] = "|cff9482CA",
[8] = "|cff9482ca",
have the same color?
- +0
- Thumbs Down
- Thumbs Up
Pasttor saidWork perfect, have a little bug of no remember the sort, always sort by level when start session but no is important :):)
Thank you.
- +1
- Thumbs Down
- Thumbs Up
SeGeDel saidi've just uploaded a new version. i hope every "big bug" is now removed.
- +0
- Thumbs Down
- Thumbs Up
Pasttor saidI dont no this error but now work PERFECT :) if i see any more error i post here ;)
I remember a little error of older version......when i sort the list by name for example the addon no remember the seleccion to next sesion..... my english is very bad, is possible you no undestand me xDDDD
Thx
- +1
- Thumbs Down
- Thumbs Up
SeGeDel saidthe second error is already fixed... for the first one i need some time... i will look for it
- +0
- Thumbs Down
- Thumbs Up
Pasttor saidThank you very much, for me this addon is very important :) Thx again
- +0
- Thumbs Down
- Thumbs Up
Pasttor saidNow i put you version and now i have more errors....
Date: 2008-04-06 12:45:27
ID: 64
Error occured in: Global
Count: 1
Message: ..\AddOns\TitanGuild\TitanGuild.lua line 220:
bad argument #1 to 'format' (string expected, got nil)
Debug:
[C]: ?
[C]: format()
TitanGuild\TitanGuild.lua:220: buttonTextFunction()
Titan\TitanPanelTemplate.lua:259: TitanPanelButton_SetButtonText()
Titan\TitanPanelTemplate.lua:239: TitanPanelButton_UpdateButton()
TitanGuild\TitanGuild.lua:133: TitanPanelGuildButton_OnEvent()
[string "*:OnEvent"]:1:
[string "*:OnEvent"]:1
And this too.....
Date: 2008-04-06 12:45:20
ID: 61
Error occured in: Global
Count: 1
Message: ..\AddOns\TitanGuild\localization.lua line 120:
unfinished string near '"] = 1,'
Debug:
[C]: ?
Thx for you work :)
- +0
- Thumbs Down
- Thumbs Up
SeGeDel said@Maischter: I've looked up: http://www.wowwiki.com/Class_colors
i hope its now standard
@Pasttor: I havn't tried it, but I think so. Localized strings are included.
- +0
- Thumbs Down
- Thumbs Up
Pasttor saidThis version work in spanish??.
Thx
- +0
- Thumbs Down
- Thumbs Up
Maischter saidmhh sorry colorcode for shamn seems to be wrong...
[1] = "|cffFF7D0A",
[2] = "|cffABD473",
[3] = "|cff69CCF0",
[4] = "|cffF58CBA",
[5] = "|cffffffff",
[6] = "|cffFFF569",
[7] = "|cff2459FF",
[8] = "|cff9482CA",
[9] = "|cffC79C6E",
should do it better
- +0
- Thumbs Down
- Thumbs Up
SeGeDel saidthx. (is changed)
- +0
- Thumbs Down
- Thumbs Up
Maischter saidhere the corrected class colors:
"|cffabd473", -- 1 = Hunter -- was aad372
"|cff9482ca", -- 2 = Warlock -- was 9382C9
"|cffffffff", -- 3 = Priest
"|cfff58cba", -- 4 = Paladin -- was cfff48cba
"|cff69ccf0", -- 5 = Mage -- was 68ccef
"|cfffff569", -- 6 = Rogue -- fff468
"|cffff7d0a", -- 7 = Druid -- ff7c0a
"|cff00dbba", -- 8 = Shaman -- was cfff48cba
"|cffc79c6e" -- 9 = Warrior -- c69b6d
- +0
- Thumbs Down
- Thumbs Up
SeGeDel saidI#ve uploaded again. Better luck this time ;-)
- +0
- Thumbs Down
- Thumbs Up
ChristieThePup saidIs anyone else having problems downloading this? I've tried just about everything, and no luck.