/Tukui/config/profiles.lua
http://github.com/Asphyxia/Tukui · Lua · 22 lines · 10 code · 3 blank · 9 comment · 4 complexity · bfc9e5add918a171f074a1b4af61aeef MD5 · raw file
- ----------------------------------------------------------------------------
- -- Per Class Config (overwrite general)
- -- Class need to be UPPERCASE
- ----------------------------------------------------------------------------
- local T, C, L = unpack(select(2, ...)) -- Import: T - functions, constants, variables; C - config; L - locales
- if T.myclass == "WARLOCK" then -- Change it to your class.
- -- do some config!
- end
- ----------------------------------------------------------------------------
- -- Per Character Name Config (overwrite general and class)
- -- Name need to be case sensitive
- ----------------------------------------------------------------------------
- if T.myname == "Asphyxîa" then -- Change it to your character name.
- C.unitframes.healcomm = true
- C.unitframes.showsolo = true
- C.unitframes.aggro = true
- C.unitframes.raidunitdebuffwatch = true
- C.unitframes.showplayerinparty = true
- end