/Tukui/config/profiles.lua

http://github.com/Asphyxia/Tukui · Lua · 22 lines · 10 code · 3 blank · 9 comment · 4 complexity · bfc9e5add918a171f074a1b4af61aeef MD5 · raw file

  1. ----------------------------------------------------------------------------
  2. -- Per Class Config (overwrite general)
  3. -- Class need to be UPPERCASE
  4. ----------------------------------------------------------------------------
  5. local T, C, L = unpack(select(2, ...)) -- Import: T - functions, constants, variables; C - config; L - locales
  6. if T.myclass == "WARLOCK" then -- Change it to your class.
  7. -- do some config!
  8. end
  9. ----------------------------------------------------------------------------
  10. -- Per Character Name Config (overwrite general and class)
  11. -- Name need to be case sensitive
  12. ----------------------------------------------------------------------------
  13. if T.myname == "Asphyxîa" then -- Change it to your character name.
  14. C.unitframes.healcomm = true
  15. C.unitframes.showsolo = true
  16. C.unitframes.aggro = true
  17. C.unitframes.raidunitdebuffwatch = true
  18. C.unitframes.showplayerinparty = true
  19. end