Are there any plans to make the MT target windows more robust? The current commands/method of setting them through FuBar works, but it's tedious and time consuming, especially on pulls/bosses where you need a number of windows up. Also related to MT Target Windows, are there any options to change the layout to be more compact (Perhaps similar to the default CT-RA windows)?
I really love all the other parts of the mod--especially your interface for ready checks. I'm shocked how flawlessly it works with stock versions of CT_RA--No one has even had a clue that I ran a few raids with CT_RA completely disabled. Hope you keep up the great work! :)
Much needed feature: Force logout. Really needed for when you are attempting a boss like Loethab or Gothik and someone goes afk (not a dumbass, but an emergency) and doesn't get back and you are wasting flask/pot time. We usually have people ready to join the raid and log in but they can't because someone is in the instance afk.
Much needed feature: Force logout. Really needed for when you are attempting a boss like Loethab or Gothik and someone goes afk (not a dumbass, but an emergency) and doesn't get back and you are wasting flask/pot time. We usually have people ready to join the raid and log in but they can't because someone is in the instance afk.
Seconded. RDX does this, and I wish CTRA did too. But there's not reason oRA2 can't be (even more) better than CTRA, right?
I haven't been able to do much work on oRA2 lately due to SVN being flaky with the new server et all.
But...
* /rs is back in as a Leader module.
* MainTank frames now have the option to be colored by class.
* When classcolor is enabled you can set the color for Enemies. Default is some shade of red.
* AFK/DND with a message should be detected better now, this mainly affects XRS though :)
Cool Ammo - even better than my blue layout with classcolors, now I just set enemy color to the correct blue ;-) My horizontal layout is the last thing I have to edit in the Optional\MainTank.lua - would be great as option.
Cool Ammo - even better than my blue layout with classcolors, now I just set enemy color to the correct blue ;-) My horizontal layout is the last thing I have to edit in the Optional\MainTank.lua - would be great as option.
I've got that horizontal layout stuff saved I think, still need to add it.
Ok I might jsut be doing somethign wrong but I installed oRA2 and have been recieving 23 errors. Pic Below
As you can see the first is a string error in oRA2 core then followed by 22 load errors since it cant seem to find oRA. Am i mistaken thinking this was a solo addon or is oRA1 and ace still needed? Any help would be nice.
There is a Bug in Core.lua of oRA2 at line 307 the code should look like this:
-------------------------------
--  Checks Event Handlers  --
-------------------------------
-- Event handler for the AFK/DND/UNAFK/UNDND messages
-- Will update the roster for the player who sent the message
function oRA:oRA_UpdateAfkDnd(msg, author)
if not self:IsValidRequest( author, true) then return end
local u = self.roster:GetUnitObjectFromName(author)
if not u then return end
msg = self:CleanMessage(msg)
if string.find( msg, "^AFK(.*)") then
  u.ora_afk = true
elseif string.find( msg, "^DND(.*)") then
  u.ora_dnd = true
elseif string.find( msg, "^UNAFK(.*)") then
  u.ora_afk = nil
elseif string.find( msg, "^UNDND(.*)") then
  u.ora_dnd = nil
end
self:TriggerEvent("oRA_AfkDndUpdated")
end
The closing parenthesis of the string.find ist missing.
@Xylar: If you change the code like i postet oRA2 works.
Just wondered why a priest friend with oRA2 and german client wasn't reporting her candles on /rareg... recognized that the deDE locales where missing...
- FR localisation: I'm ready to do it (I think it's not done yet). Is there only text in the core to change or any other?
- MT: would there be an option to disable MT life bar in MT windows (and leaves only MT target and target of target)? or maybe it's possible but I couldn't find how to do it.
I'm using aguf. What I'm missing most: tooltip for buff remaining time, soulstone & battle rez timers. I don't which addon could handle that (I guess oRa2 as it's a raid info).
I'm wondering how i can get the ora MT & MTT boxes smaller, and to totally turn off the MTTT. they seem to be using up a ton of space on the screen, compared to ctra's MT/MTT boxes. Here's my 2 examples:
you can see how little space CTRA MT/MTT takes up compared to ORA's boxes. I even have the ORA scaled down to ~80% but they're still a lot "wider" than the CTRA ones.
i'm a huge screen real estate miser so any way i can cut down on space usage is great for me :)
i am running PerlClassicUnitFrames and Perl_Raid too. is there a way to make the ora MT boxes display thru there? Thanks for your help :)
In CTRaid the MTframes are get colored red if the maintank dont tank the target or the mt-target has target an other player as the maintank. There is no such function in the oRA2. Can you implement sich feature in oRA2, too?
reding this reply , it looks like there's no way to set PT's with ora2. btw is this in program? or is it just my error and didn't i see the way to set em ?
tnx 4 answering, and sorry if i asked one of the milion-times-asked-questions , lol ^^
Since oRA2 has no convenient way to set MTs, is there a very very basic mod that can do this? I just want to right-click on a raid frame (or something like this) and set the main tank. None of this manual typing some person's crazy 20 character keysmash. =P
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Am loving this mod great work to all that are working on this fantastic mod ;)
I really love all the other parts of the mod--especially your interface for ready checks. I'm shocked how flawlessly it works with stock versions of CT_RA--No one has even had a clue that I ran a few raids with CT_RA completely disabled. Hope you keep up the great work! :)
Seconded. RDX does this, and I wish CTRA did too. But there's not reason oRA2 can't be (even more) better than CTRA, right?
But...
* /rs is back in as a Leader module.
* MainTank frames now have the option to be colored by class.
* When classcolor is enabled you can set the color for Enemies. Default is some shade of red.
* AFK/DND with a message should be detected better now, this mainly affects XRS though :)
-Ammo
and on this topic, are more MT styles, at least those from oRa1, planned to be added?
My horizontal layout is the last thing I have to edit in the Optional\MainTank.lua - would be great as option.
uaxli, I'm going to be blunt: STOP ASKING FOR THE SAME THING EVERY TIME
read the TODO.txt included with oRA2.
-Ammo
I've got that horizontal layout stuff saved I think, still need to add it.
-Ammo
As you can see the first is a string error in oRA2 core then followed by 22 load errors since it cant seem to find oRA. Am i mistaken thinking this was a solo addon or is oRA1 and ace still needed? Any help would be nice.
Thanks
There is a Bug in Core.lua of oRA2 at line 307 the code should look like this:
The closing parenthesis of the string.find ist missing.
@Xylar: If you change the code like i postet oRA2 works.
greetings
Gorgoth
I've also adjusted the MT frames a bit, alignment problems should be fixed.
MT number now only appears on the MT frame itself, not on Target and ToT
Raidicons set on MTs will appear 'under' the number.
-Ammo
I added
to Item.lua in Leader and Participant. Seems to work for the candles... rest should be correct too.
That's a nice addon. Really.
Just few things:
- FR localisation: I'm ready to do it (I think it's not done yet). Is there only text in the core to change or any other?
- MT: would there be an option to disable MT life bar in MT windows (and leaves only MT target and target of target)? or maybe it's possible but I couldn't find how to do it.
I'm using aguf. What I'm missing most: tooltip for buff remaining time, soulstone & battle rez timers. I don't which addon could handle that (I guess oRa2 as it's a raid info).
you can see how little space CTRA MT/MTT takes up compared to ORA's boxes. I even have the ORA scaled down to ~80% but they're still a lot "wider" than the CTRA ones.
i'm a huge screen real estate miser so any way i can cut down on space usage is great for me :)
i am running PerlClassicUnitFrames and Perl_Raid too. is there a way to make the ora MT boxes display thru there? Thanks for your help :)
reding this reply , it looks like there's no way to set PT's with ora2. btw is this in program? or is it just my error and didn't i see the way to set em ?
tnx 4 answering, and sorry if i asked one of the milion-times-asked-questions , lol ^^