Files 11
Downloads 41,735
Favorites 205
View Feature Request
External access to left/center/right/rune tables (for use in myconfig.lua)
Feature #: 4113
File: EventHorizon_Vitals
Date: 04-21-10 11:05 AM
By: Myrathi
Status: Under Review
Currently, I have a myconfig.lua that hooks onto UnitAuraCS() - for the Priest class - that adds another counter to the right-side of the vitals pane. Unfortunately, the 'right' table is local to the main Vitals core and this requires me to hack the core.lua file:

core.lua:75-78:
Code:
  if i <= 3 then
    right[i] = frame:CreateFontString('EventHorizon_VitalsFSR'..i,'OVERLAY')
  end
I'm also writing a hack that'll shuffle the order of the DK runes (I prefer them BBFFUU), but that requires me to juggle which font string is assigned to which rune frame's .text member, which will requires me to assign names to each frame for access externally (similarly to the 'right' font strings, above).

Hence, if the rune frames and left/center/right font strings could all be named by default, they could be much more simply accessed externally.

Thanks!