Guest User

Untitled

a guest
Oct 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local E, C, L, DB = unpack(ElvUI) -- Import Functions/Constants, Config, Locales
  2. Tukui = {E, C, L} -- Add support for local T, C, L = unpack(Tukui)
  3.  
  4. TukuiMinimap = ElvuiMinimap
  5. TukuiActionBarBackground = ElvuiActionBarBackground
  6. TukuiInfoLeft = ElvuiInfoLeft
  7. TukuiInfoRight = ElvuiInfoRight
  8.  
  9. if IsAddOnLoaded("ElvUI_RaidDPS") then
  10.     TukuiPlayer = ElvDPS_player
  11.     TukuiTarget = ElvDPS_target
  12.     TukuiFocus = ElvDPS_focus
  13. elseif IsAddOnLoaded("ElvUI_RaidHeal") then
  14.     TukuiPlayer = ElvHeal_player
  15.     TukuiTarget = ElvHeal_target
  16.     TukuiFocus = ElvHeal_focus
  17. end
Add Comment
Please, Sign In to add comment