Titan Panel
| Last Update: | July 18, 2008 (1 month ago) |
|---|---|
| Category: | Action Bars |
| Tags: | bar, bars, titan, and titanpanel |
| Project Manager: | GoG |
| Website: | visit |
| Current Version: | Titan Panel 3.2.6.20400 (for World of Warcraft 2.4.3) |
| Downloads Today: | 2,732 |
| Downloads Total: | 11,802,798 |
| Favorites: | 22,004 |
| Comments: | 2,767 |
- Screenshot
- More
- More Information
| Created On: | April 2, 2005 |
|---|---|
| Compatible: |
|
| Localized: |
|
- About Titan Panel
Table of Contents
About
This is the latest version of the new Titan Panel released by the Titan Development Team. The Titan Development Team consists of: HonorGoG, jaketodd422, M_Nyte_Templar (joejanko), Lothaer (Lothayer), oXid_FoX and Tristanian (TristTitan).
Titan Panel adds a control panel bar on the top and/or bottom of the screen and allows a framework for extensive plugin support.
Features
- The ability to have 1 or 2 bars at the top and/or the bottom of your screen.
- Many builtin plugins that provide a great core set of features.
- Easy to use menus and options to change features on the fly.
- Fully supported plugin system. All plugins on the bar are plug-n-play.
Bug Reports
Direct all issues and feature requests to the Google Code Titan development page.
Special Instructions
- Please read the included TitanPanelSetup-READ_ME_FIRST.txt file for any special instructions needed to use this version of Titan Panel.
Problem Escalation
- Please read the included TitanPanelSetup-READ_ME_FIRST.txt file for any special instructions.
- Please check the Titan Panel Portal for a list of any recent issues. These will appear on the main page.
- If you are still having issues, please follow the instructions under Bug Reports above.
Included
- Core:
- TitanAutoHide
- TitanAuxAutoHide
- TitanPanel
- TitanTrans
- TitanUIScale
- TitanVolume
- Embedded:
- LibRock-1.0
- LibRockTimer-1.0
- BuiltIns:
- TitanAmmo
- TitanBag
- TitanClock
- TitanCoords
- TitanGoldTracker
- TitanHonor
- TitanItemBonuses (w/BonusScanner)
- TitanLootType
- TitanPerformance
- TitanRegen
- TitanRepair
- TitanRider
- TitanStanceSets (w/WeaponQuickSwap)
- TitanXP
History
A few very dedicated people have maintained Titan Panel over the years. They are in order of chronological responsibility: TitanMod, Dark Imakuni and Adsertor.
- Downloads (23)
- Screenshots (3)
- Tickets
- 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.
- Recommended Addons
- RSS
Users who liked Titan Panel also liked these.
- 3,081 Auctioneer Auction & Economy, Mail, ...
- 3,959 Atlasloot Enhanced PvP, Map, Tradeskill, and ...
- 8,713 QuestHelper Map and Quest & Leveling
- 3,481 Atlas Map
- 2,996 X-Perl UnitFrames Unit Frames
- Similar Addons
- 1,993 HealBot Continued Buffs & Debuffs, Action Bars, ...
- 1,289 Bartender3 Action Bars
- 1,142 Bongos3 Action Bars
- 961 ItemRack Action Bars
- 914 Bongos2 Action Bars
- 8,713 QuestHelper Map and Quest & Leveling
- 4,262 GroupCalendar Group/Guild Management, Quest ...
- 3,959 Atlasloot Enhanced PvP, Map, Tradeskill, and ...
- 3,707 Omen Threat Meter Raids & Encounters
- 3,481 Atlas Map









- +1
- Thumbs Down
- Thumbs Up
Lethosos saidHere's the quick and easy way to seperate your skins from the built-in list. I do these changes to keep any updates from overwriting the inital texture listing and allow any texture artists to just keep an updated LUA file included with their files.
Files: TitanPanel.lua, TitanPanel.xml, Localization.lua
New Files: TitanTexturesCustom.lua
Titanpanel.lua
---
Find the function TitanPanel_MainMenu.
Add under the texture settings options menu settings this code:
-- custom texture settings option menu
info = {};
info.text = TITAN_PANEL_MENU_CUSTOM_TEXTURE_SETTINGS;
info.value = "CustomSkinSettings";
info.hasArrow = 1;
UIDropDownMenu_AddButton(info);
Under that, in function TitanPanel_OptionsMenu, add under the END case for the IF statement "SkinSettings" this code:
if ( UIDROPDOWNMENU_MENU_VALUE == "CustomSkinSettings" ) then
for i,e in pairs(TITAN_AUX_CUSTOM_TEXTURES) do
info.text = e.name;
info.value = e.path;
info.func = TitanPanel_SetCustomTexture;
info.checked = TitanPanel_istexture(e.path);
UIDropDownMenu_AddButton(info,UIDROPDOWNMENU_MENU_LEVEL);
if e.path == "Interface\\AddOns\\Titan\\Artwork\\Custom\\" then
TitanPanelRightClickMenu_AddSpacer(UIDROPDOWNMENU_MENU_LEVEL);
TitanPanelRightClickMenu_AddTitle(TITAN_PANEL_MENU_SKINS, UIDROPDOWNMENU_MENU_LEVEL);
end
end
end
TitanPanel.xml
---
Add <Script file="TitanTextureCustom.lua"/> under the script call for TitanTexture.lua.
Localization.lua
---
Add this to the PANEL_MENU list:
TITAN_PANEL_MENU_CUSTOM_TEXTURE_SETTINGS = "Custom Skins";
TitanTexturesCustom.lua
--
Copy TitanTexture.lua and rename it TitanTexturesCustom.lua.
Change TITAN_CUSTOM_TEXTURES to TITAN_AUX_CUSTOM_TEXTURES.
Clear and populate the list with your custom textures.
Optional: Create a Custom folder in Titan\Artwork and add Custom\\ to the end of the paths in the list for every new texture you add. Don't forget to put the new textures in the Custom folder!
- +0
- Thumbs Down
- Thumbs Up
Tristanian saidNice "hack" ;) but ultimately you have a point, ideally Titan built-in textures should be kept separate from custom ones. At some point when we are done with some other changes we will include this functionality, natively.
- +0
- Thumbs Down
- Thumbs Up
Lethosos saidIdealistically, building it to allow seperate multiple LUA lists would be the optimal solution, as the only code-change on the player's side would be listing the new file somewhere in the Titan code.
But since I find most panels by other artists somewhat ugly, it's a moot point for myself. (Must remember to find the extra stuff I have and upload the lastest "build" to my art project.)
- +0
- Thumbs Down
- Thumbs Up
NotOnline said=( I cant find out how to put add-ons on my wow. please please please help me put them on
- +0
- Thumbs Down
- Thumbs Up
M_Nyte_Templar saidIn the About Titan Panel section above, there's an Install Guide tab. Click it for instructions.
- +0
- Thumbs Down
- Thumbs Up
Maischter saidthis change in the titangoldtracker xml fixes teh bug:
<Scripts>
<OnLoad>
SmallMoneyFrame_OnLoad();
TitanPanelGoldTrackerButton_OnLoad();
TitanPanelButton_OnLoad();
</OnLoad>
<OnShow>
TitanPanelGoldTrackerButton_OnShow();
TitanPanelButton_OnShow();
</OnShow>
<OnEvent>
TitanGoldTracker_OnEvent();
</OnEvent>
<OnHide>
if ( this.hasPickup == 1 ) then
CoinPickupFrame:Hide();
this.hasPickup = 0;
end
TitanPanelGoldTrackerButton_OnHide();
</OnHide>
</Scripts>
- +0
- Thumbs Down
- Thumbs Up
Maischter saidsince the new update:
Interface\FrameXML\MoneyFrame.lua:285: attempt to index local 'info' (a nil value):
(tail call): ?:
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:1082: in function `DepositBox_RefreshWindows'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:1008: in function `DepositBox_UpdateBagCashDisplay'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:959: in function `DepositBox_UpdateCashDisplay'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:474: in function `DepositBox_Titan_LoadState'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:858: in function `DepositBox_OnEvent'
<string>:"*:OnEvent":1: in function <[string "*:OnEvent"]:1>
---
nterface\FrameXML\MoneyFrame.lua:285: attempt to index local 'info' (a nil value):
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:1761: in function `MoneyFrame_Update'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:1082: in function `DepositBox_RefreshWindows'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:1008: in function `DepositBox_UpdateBagCashDisplay'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:959: in function `DepositBox_UpdateCashDisplay'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:474: in function `DepositBox_Titan_LoadState'
DepositBox-1.7.2 (With Titan Support)\DepositBox.lua:858: in function `DepositBox_OnEvent'
<string>:"*:OnEvent":1: in function <[string "*:OnEvent"]:1>
---
nterface\FrameXML\MoneyFrame.lua:285: attempt to index local 'info' (a nil value):
(tail call): ?:
TitanGoldTracker-4.0.0.30000 (2.3.2)\TitanGoldTracker.lua:419: in function `TitanPanelGoldTrackerButton_Initialize_Array'
TitanGoldTracker-4.0.0.30000 (2.3.2)\TitanGoldTracker.lua:136: in function `TitanGoldTracker_OnEvent'
<string>:"*:OnEvent":1: in function <[string "*:OnEvent"]:1>
- +0
- Thumbs Down
- Thumbs Up
puggan saidI found a Fubar addon, that id like to have in titan, someone here know about one, or maybe someone here can make one
the addon i found was: http://downloads.curse.com/details/13329/
- +0
- Thumbs Down
- Thumbs Up
kaisoul saidthank you for pointing that out i didn't even notice that little mistake i made.
it's working and i now have lots of sweet graphics to choose from.
- +0
- Thumbs Down
- Thumbs Up
HonorGoG saidAdd commas to the end of each line. You're not separating the elements for the table.
- +0
- Thumbs Down
- Thumbs Up
M_Nyte_Templar saidKaisoul, Instructions for getting additional skins to display can be found on our Google Code Wiki page: http://code.google.com/p/titanpanel/wiki/Titan_Custom_Skins
- +0
- Thumbs Down
- Thumbs Up
FightsLikeAGirl saidI'm having problems moving the plug-ins around on the titan bars. With older versions of the titan bar, I could move the plug-ins around and completely customize the order they appeared in and which bar they showed up on. Now, it won't work and everything is set to a default (and different than before) place. Is there a way to change this? How can I regain the functionality I had before?
I'm using Windows Vista, with the newest titan panel (and plug-in) upgrades. I'm using the latest version of WoW/BC with all patches applied.
- +0
- Thumbs Down
- Thumbs Up
FightsLikeAGirl saidSomeone in my guild answered this one for me. I wanted all of the plug-ins to show up on the bottom bar, not the top. Under options, make sure that both bars show up. Then right click on the bottom bar and select the items I want to show up there (in the order I want them to appear). I didn't want the top bar to show, so I moved the transparency options to the bottom panel, then selected top panel's transparency to maximum. Worked like a charm!
- +0
- Thumbs Down
- Thumbs Up
M_Nyte_Templar saidFights,
1. Uncheck all Bar options on Titan's right-click menu. You will get one bottom bar.
2. Display the plugins you want in any order.
3. Swap positions of plugins with left-click-and-drag.
An explanation of all the Titan options are included in the ReadMeFirst text file included with Titan.
- +0
- Thumbs Down
- Thumbs Up
romopunk saidNeed help.... ive tried installing the addon curse client, but when I go in the game the bar doesnt even show, i go to my addons folder and all the files are there, and when I try deleting them it says "cannot delete artwork access is denied" what does that even mean...
- +0
- Thumbs Down
- Thumbs Up
Afroman1289 saidI have Vista and get the same problem. I'm trying to find an XP program thing for cheap so I can downgrade this piece of shit Vista.
- +0
- Thumbs Down
- Thumbs Up
HonorGoG saidThat sounds like a Vista problem.
- +0
- Thumbs Down
- Thumbs Up
Whiteopal saidI have unchecked this addon for all characters on my account except one, but when i play this character titan panel counts the money from all the characters. why is this and what can i do to stop it happening?
- +0
- Thumbs Down
- Thumbs Up
M_Nyte_Templar said'opal, I believe that if you enter /titanpanel reset in your chat window, your problem will disappear. This deletes the old Saved Variables files that Titan uses to display this. The downside is that you will need to reconfigure Titan for the toon still using it.
- +0
- Thumbs Down
- Thumbs Up
Verbena9 saidDate: 2008-07-24 21:39:07
ID: 62
Error occured in: Global
Count: 1
Message: ..\AddOns\Atlas\AtlasTitan.lua line 57:
attempt to concatenate local 'retstr' (a nil value)
Debug:
[C]: ?
Atlas\AtlasTitan.lua:57: buttonTextFunction()
Titan\TitanPanelTemplate.lua:259: TitanPanelButton_SetButtonText()
Titan\TitanPanelTemplate.lua:239: TitanPanelButton_UpdateButton()
Titan\TitanPanelTemplate.lua:105: TitanPanelButton_OnShow()
[string "*:OnShow"]:1:
[string "*:OnShow"]:1
[C]: Show()
Titan\TitanPanel.lua:881: TitanPanel_InitPanelButtons()
Titan\TitanPanel.lua:167: TitanPanelBarButton_OnEvent()
[string "*:OnEvent"]:1:
[string "*:OnEvent"]:1
AddOns:
Atlas, v1.12.0
AtlasBattlegrounds, v1.12.0
AtlasDungeonLocs, v1.12.0
AtlasEntrances, v1.11.0
AtlasFlightPaths, v1.12.0
AtlasOutdoorRaids, v1.12.0
AtlasLoot, vAtlasLoot Enhanced v4.06.01
AucAdvanced, v5.0.PRE.3262
AucFilterBasic, v5.0.PRE.3262 (BillyGoat)
AucStatClassic, v5.0.PRE.3262 (BillyGoat)
AucStatPurchased, v5.0.PRE.3262 (BillyGoat)
AucStatSimple, v5.0.PRE.3262 (BillyGoat)
AucStatStdDev, v5.0.PRE.3262 (BillyGoat)
Auctioneer, v5.0.PRE.3262
BeanCounter, v5.0.PRE.3262 (BillyGoat)
BonusScanner, v3.5
CTMailMod, v3.02 (CTMod 2.0)
CTMapMod, v2.41 (CTMod 2.0)
DagAssist, v1.10
Enchantrix, v5.0.PRE.3262
EnchantrixBarker, v5.0.PRE.3262 (BillyGoat)
EnhTooltip, v5.0.PRE.3262
Informant, v5.0.PRE.3262
Ace2
FuBarPlugin20, v2.0 $Revision: 66041 $
MaterialsTracker, v20100.01
CEnemyCastBar
Omen, vOmen r79015 / Threat-2.0 r78949
Outfitter, v4.2.6
QuestHelper, v0.48
RatingBuster, v1.3.7 (r66013)
Stubby, v93
Swatter, v5.0.PRE.3262
TitanTradeCooldown, v2.4.001
TitanClassTracker
TitanHerb, v1.51
TitanMoney, v3.1.1.20200
TitanOutfitter
TitanQuests
TitanAmmo, v3.2.6.20400
TitanBag, v3.2.6.20400
TitanClock, v3.2.6.20400
TitanCoords, v3.2.6.20400
TitanGoldTracker, v3.2.6.20400 (2.3.2)
TitanHonor, v3.2.6.20400 (1.13)
TitanItemBonuses, v3.2.6.20400
TitanLootType, v3.2.6.20400
TitanPerformance, v3.2.6.20400
TitanRegen, v3.2.6.20400
TitanRepair, v3.2.6.20400
TitanRider, v3.2.6.20400
TitanStanceSets, v3.2.6.20400
TitanXP, v3.2.6.20400
Titan, v3.2.6.20400
TitanMatTracker, v2.2-0.5
WeaponQuickSwap