ScrollingCombatText
Please read and use the main SCT site for news, bugs, and feature requests. I don't read these forums hardly ever.
Be sure to check out SCTD 2.0 if you want SCT to show your damage.
Also check out my simple but enhanced combat log EavesDrop
What is it?
A fairly simple but very configurable mod that adds damage, heals, and events (dodge, parry, windfury, etc...) as scrolling text above you character model, much like what already happens above your target. This makes it so you do not have to watch (or use) your regular combat chat window and gives it a "Final Fantasy" feel.
Why use 5.0 over WoW's new built in Floating Combat Text ? - SCT 5.0 is a complete rewrite of the mod from the ground up. Its is now based in the Ace2 framework and rewitten with more performance in mind. On top of that, it offers features far above and beyond what WoW's FCT can do. FCT is great if you just need a lightweight SCT with limited options, but using SCT's new Lightmode can get you the same performance with almost all of SCT's normal features.
What can it do?
- Damage messages
- Heals (incoming and outgoing) and Overhealing (with healer ID's), with filtering for small heals.
- Spell Damage/Resists and Damage Type
- All "Miss" events (dodge, block, immune, etc...)
- Custom Colors for all text events
- Config file to setup custom events (self and target), capture data, and display it.
- Debuff/Buff gain and loss Messages
- Low Health and Mana Warnings with values, and optional sounds
- Rage/Mana/Energy Gains
- Enter and Leave Combat Messages
- Rogue Combo Points, 5 CP Alert Message
- Class Skill alerts (Execute, Overpower, CounterAttack, etc...)
- Honor, Reputation, Skill Gain
- Eight Animation Types (Verticle, Rainbow, Horizontal, Angled Down, Angled Up, Sprinkler, Curved HUD, Angled HUD)
- Four Fonts
- Two seperate Animation frames, each with their own settings. Assign any Event to either.
- Ability to flag any event as critical or as a text messages
- Sliders for text size, opacity, animation speed, movement speed, and on screen placement (with custom editbox)
- Lightmode, for when you care most about performance (at the loss of a few features).
- Now Based in Ace2.
- CTMod, MyAddons, Cosmos, Cosmos2 support
- Settings saved per character by default, but supports all Ace2 Profiles
- Load/Delete settings from another character. Load built in Profiles.
- Localized to work in almost all WoW clients.
How do I use it?
First unzip it into your interface\addons directory. For more info on installing, please read install.txt. Now just run WoW and once logged in, type /sctmenu to get the options screen.
SCT_EVENT_CONFIG.LUA is used to setup custom message events. Please open up the file (notepad, etc...) and read the opening section to understand how to use it all. PLEASE NOTE - THIS IS THE MOST IMPORTANT FILE IN SCT. IF YOU DON'T READ IT AND USE IT, THEN YOU ARE MISSING OUT ON A TON OF WHAT SCT HAS TO OFFER IN CUSTOMIZATION
/sctdisplay is used to create your own custom messages. Useage: /sctdisplay 'message' red(0-10) green(0-10) blue(0-10) Example: /sctdisplay 'Heal Me' 10 0 0 - This will display 'Heal Me' in bright red
FAQ
How do I get My Crits or My Hits to show? I would suggest you get SCTD: http://www.wowinterface.com/downloads/fileinfo.php?id=4913
My custom event doesn't work. What's wrong? - Make sure you have the text exactly right, punctuation and capitalization matters. If you need help learning how to capture data, please see the examples or try this site http://lua-users.org/wiki/PatternsTutorial. If its still not working, please read about SCT_Event_Debug and SCT_Event_List in the bottom half of SCT_EVENT_CONFIG.LUA to learn how to add almost any chat event to SCT's search capabilities
How do I change the text for parry, block, etc...? - open up the localiztions.lua file and look for the event you want to change. Then change the text to whatever you like. As of 4.1, you may also now add a custom event for these. As of 5.0 You will get notifications automatically for event specfic skills like Overpower, CounterAttack, etc...
How do I get get text to scroll? I only see numbers! - Make sure the "Show Events as Message" option is unchecked. This is only if you want events to appear as static text (not scrolling/animated)
I don't understand what the 2 frames are for! - Each frame lets you set different features. So you can set frame one using Sprinker animation and Default font, while frame 2 can be using Veritcle animation and Adventure font. You can then assign each event to a specfic frame using the radio buttons next to the events.
There's too many options. Help someone new see how things work! - Try out some of the new built in profiles. While on the options screen, click the "Profiles" button. At the top of the window will be a listing of some default profiles to try out. Maybe you'll fine one you like or it will spark some ideas for you to try.
How do I change the fonts? - You can now select from four fonts on the options page. You can also change the font of message and apply the font to the in game damage font used for your damage (requires relog)
I don't like friendly nameplates on. How do I make my heals appear over who I heal? - Friendly nameplates have to be on in order to show your heals. SCT will turn them on if you turn on the option, but you must manually turn them off if you don't like it (see Target keybindings).
I don't like the new spell icons, how do I turn them off? - There is an option to turn them off under the animation tab.
Support
Please post all errors and suggestions on http://grayhoof.wowinterface.com/ using the provided forms. Please post all questions and comments on the offical SCT thread.
I had a bit a bit of problems getting SCT's show damage on nameplates to work.
However, after removing this from line 12 in sct_unitpos.lua:
and (nameplate.UnitFrame:IsVisible())
Everything worked great, and it's a huge improvement over the old version (I had rewritten my old using LibNameplateRegistry). LibNameplateRegistry is clearly no longer needed.
Great work, Greyhoof!
Sorry was using the wrong account (I thought I had deleted the old one long ago haha)
Anyway, wanna add for you Greyhoof: The reason for me removing that is it doesn't actually seem to do anything other than introduce incopatibilities with some nameplate addons, like KUI.
I'll take a look. The reason it was there was because sometimes the nameplate would be "off screen" and it would try and make SCT scroll somewhere that wasn't visible. May no longer be an issue with the new nameplates.
Thank you.
In the meantime, I've found another thing that might prove helpful.
Even with this change, I noticed heals weren't showing over names as they should. SCTD was fine, but SCT was not.
To fix it, simply go into sct.lua and edit all cases of
if (db["NAMEPLATES"]) then parent = self:GetNameplate(self:CleanName(destName, destFlags)) end
to
if (db["NAMEPLATES"]) then parent = self:GetNameplate(destGUID) end
since you removed the function that finds a nameplate based on the name.
I believe there are 2 instances of this. One in ParseCombat and one in ParseReflect.
NOTE
v7.0 had an updated file missing. If you don't need the options menu it is ok, but will error if you open the options.
v7.01 should be posted soon with the correction, just waiting for the packager to pick up the changes and distribute.
Mega thanks for updating your mod Grayhoof - been using SCT/SCTD for years and always my go to - felt odd not having it for Legion.
See.
Thanks @Fizzlemizz, I forked greyhoofs repo and made applied all your changes.
For a new release with all changes see here:
Thaodan/scrolling-combat-text/releases
Fizzlemizz thanks for posting the required changes to make the addon work. For now the only thing that doesn't work is disabling the default damage numbers (I use sctd also). It's not a big deal just letting you, or the author know of the issue :)
doesnt work in 7.0.3
any updates?
This addon doesn't seem to work on Legion beta. Anyone know a fix? It's like the old problem pre wod/cata where /SCT doesn't load anything.
To get you going, in SCT.lua, replace the current POWER_STRINGS table (starting at line 158) with:
At the bottom of that file there are two SetCVar statements.
replace the section with:
Similar changes are required in SctD.lua if you are using SctD.
Hey, just wanted to say thanks for this.
SCT seems to work now, however once i tried to access the sct_options it gives me another lua-error (instead of loading the options-interface).
I haven't opened the options yet, probably later today. I'll see if it's easily fixable but in the meantime you should be able to copy your sct.lua file from your live WoW\WTF\Account\[user id]\SavedVariables folder over to Beta.
Open \Sct_Options\locals\localization.lua.
At lines 189-205 replace all those options with the ones in my original post but don't delete the last line "[0] = "Any",".
This should get the options working but I haven't tested them all.
Edit: Sometimes the options open to the Blizzard options not sct and when you select sct, the options are empty. Just close and type "/sct menu" again.
Edit2: my original post said \Sct\locals\localization.lua
Hey. It seems to work (though im getting the occasional lua-error when accessing the options)
Thanks again
Changes need to be made starting with my first post below ("To get you going...") and working up for line numbers to make sense.
Workaround for DeathKnights because they only have one rune type now (it should be properly coded but...)
Change line 56 too:
Line 190 change too:
Lines 378-382 change to:
Is there a way to block Blood Tap from showing up on Messages? I really want to know when I get trinket buffs but Blood Tap spams messages so it's hard to notice when I get those important buffs.
Try adding custom event with Blood Tap and leave display field empty.
Great addon! But I'm having a problem:
Outgoing DMG is not showing. I've tried loading every single premade profile as well and have tried also toggling Blizzard's combat text off and on but nothing :(