Advertisement
Guest User

xCT Config

a guest
Nov 12th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. local addon, ns=...
  2. ns.config={
  3. ---------------------------------------------------------------------------------
  4. -- use ["option"] = true/false, to set options.
  5. -- options
  6. -- blizz damage options.
  7. ["blizzheadnumbers"] = false, -- use blizzard damage/healing output (above mob/player head)
  8. ["damagestyle"] = true, -- change default damage/healing font above mobs/player heads. you need to restart WoW to see changes! has no effect if blizzheadnumbers = false
  9. -- xCT outgoing damage/healing options
  10. ["damage"] = true, -- show outgoing damage in it's own frame
  11. ["healing"] = true, -- show outgoing healing in it's own frame
  12. ["showhots"] = true, -- show periodic healing effects in xCT healing frame.
  13. ["damagecolor"] = true, -- display damage numbers depending on school of magic, see http://www.wowwiki.com/API_COMBAT_LOG_EVENT
  14. ["critprefix"] = "|cffFF0000*|r", -- symbol that will be added before amount, if you deal critical strike/heal. leave "" for empty. default is red *
  15. ["critpostfix"] = "|cffFF0000*|r", -- postfix symbol, "" for empty.
  16. ["icons"] = true, -- show outgoing damage icons
  17. ["iconsize"] = 24, -- icon size of spells in outgoing damage frame, also has effect on dmg font size if it's set to "auto"
  18. ["petdamage"] = true, -- show your pet damage.
  19. ["dotdamage"] = true, -- show damage from your dots. someone asked an option to disable lol.
  20. ["treshold"] = 1, -- minimum damage to show in outgoing damage frame
  21. ["healtreshold"] = 1, -- minimum healing to show in incoming/outgoing healing messages.
  22.  
  23. -- appearence
  24. ["font"] = "Interface\\Addons\\IshtaraMedia\\IshtaraMedia\\fonts\\CharriotDeluxe.ttf", -- "Fonts\\ARIALN.ttf" is default WoW font.
  25. ["fontsize"] = 12,
  26. ["fontstyle"] = "OUTLINE,MONOCHROME", -- valid options are "OUTLINE", "MONOCHROME", "THICKOUTLINE", "OUTLINE,MONOCHROME", "THICKOUTLINE,MONOCHROME"
  27. ["damagefont"] = "Interface\\Addons\\IshtaraMedia\\IshtaraMedia\\fonts\\visitor1.ttf", -- "Fonts\\FRIZQT__.ttf" is default WoW damage font
  28. ["damagefontsize"] = "auto", -- size of xCT damage font. use "auto" to set it automatically depending on icon size, or use own value, 16 for example. if it's set to number value icons will change size.
  29. ["timevisible"] = 3, -- time (seconds) a single message will be visible. 3 is a good value.
  30. ["scrollable"] = false, -- allows you to scroll frame lines with mousewheel.
  31. ["maxlines"] = 64, -- max lines to keep in scrollable mode. more lines=more memory. nom nom nom.
  32.  
  33. -- justify messages in frames, valid values are "RIGHT" "LEFT" "CENTER"
  34. ["justify_1"] = "LEFT", -- incoming damage justify
  35. ["justify_2"] = "RIGHT", -- incoming healing justify
  36. ["justify_3"] = "CENTER", -- various messages justify (mana, rage, auras, etc)
  37. ["justify_4"] = "RIGHT", -- outgoing damage/healing justify
  38.  
  39. -- class modules and goodies
  40. ["stopvespam"] = false, -- automaticly turns off healing spam for priests in shadowform. HIDE THOSE GREEN NUMBERS PLX!
  41. ["dkrunes"] = true, -- show deatchknight rune recharge
  42. ["mergeaoespam"] = true, -- merges multiple aoe spam into single message, can be useful for dots too.
  43. ["mergeaoespamtime"] = 3, -- time in seconds aoe spell will be merged into single message. minimum is 1.
  44. ["killingblow"] = true, -- tells you about your killingblows (works only with ["damage"] = true,)
  45. ["dispel"] = true, -- tells you about your dispels (works only with ["damage"] = true,)
  46. ["interrupt"] = true, -- tells you about your interrupts (works only with ["damage"] = true,)
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement