|
Vurakan
|
#7446
Wednesday January 11, 2006 at 07:15 |
68 Paladin
|
OK as promised here is the fix for Honor+:
quote: I can't tell you whether it will function correctly for the Battlefield stuff but it gets you back your display of honor at least.
Open Titan\TitanHonorPlus.lua
Search for GetBattleFieldStatus and you will find two places that have the following line:
local status, _, _ = GetBattlefieldStatus();
For the first instance around line number 371, replace this with the following lines:
local i,status; for i=1, MAX_BATTLEFIELD_QUEUES do if ( not ( status == "active" ) ) then status, _, _ = GetBattlefieldStatus(i); end end
(note that this is 4 lines starting "local", "for", "if", and "end" in case you have wrapping problems)
The replacement for the second case at line number 444 is almost the same:
local status,i; for i=1, MAX_BATTLEFIELD_QUEUES do if ( not ( status == "confirm" ) ) then status, _, _ = GetBattlefieldStatus(i); end end
I read online that the new GetBattleFieldStatus now requires a queue number, so this loops over all queues and returns whether any of them have the status desired.
Let me know if this does or dosn't fix your problems.
Also you might want to go here and try the new version of Honor+ here ( WARNING: I cant speak for the intergrity of this file as I haven't tried it my self and I am at work so USER BEWARE) NEW HONOR+ VERSION FOR TITAN
Hope this helps you all and Good Luck!]
-Vurakan
-- Vurakan Fafnir 68 Paladin of the Hrafn Warband Former RQ Paladin Grouplead and Sublead Armorsmith
|
| |
|
|
|
Averil
|
#7447
Wednesday January 11, 2006 at 11:53 |
generic geek girl
|
There's a new official version of TitanPanel out that fixes the honor display. It does not fix, however, auto-joining the BGs. That's still broken.
curse-gaming should have it.
|
| |
|
|