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.
not sure if I'm doing something wrong or if this addon doesn't do what I'm trying to do. But I'm trying to get the damage "I" do to a "mob" to rainbow from over the mobs head. So far I have been unsuccessful. I can get damage and healing done to me to rainbow over my head. But the damage over the mobs head appears to use the games default as if the addon isnt even touching it.
uhm ... that's what SCT Damage if for .. it's another mod :s
How do I configure SCT for extra attacks trough sword specialization ??
and I mean with manual configuration ... because I want to add a sound
How do I configure SCT for extra attacks trough sword specialization ??
"How do I configure SCT for extra attacks trough sword specialization ??"
Open sct.lua in the addons' folder. Search for "elseif (larg1=="EXTRA_ATTACKS") then" using the find function. You will be adding two "PlaySoundFile" lines of code. That block of code should end up looking like this:
elseif (larg1=="EXTRA_ATTACKS") then
if ( tonumber(larg2) > 1 ) then
self:Display_Event("SHOWEXECUTE", string_format("%s (%d)", self.LOCALS.ExtraAttack, larg2))
PlaySoundFile("Interface\\AddOns\\sct\\CustomSounds\\MortalKombat\\outstand.wav");
else
self:Display_Event("SHOWEXECUTE", self.LOCALS.ExtraAttack)
PlaySoundFile("Interface\\AddOns\\sct\\CustomSounds\\MortalKombat\\outstand.wav");
end
end
end
*NOTE: This example shows the path to my custom sound. You will have to use the proper directory structure for your own custom sound. Also, I'm not sure if you need two "PlaySoundFile" commands like that, but I've been too lazy to figure out which one is necessary and which one is extra. This works for me, so I'm not going to fix what isn't broken anyway.
Thanks very much for adding support for custom events, this is great, especially as the 2.4 combat log wreaked such havoc on "event announcement" mods. My only issue has been with the formatting; for example:
TestEvent
Search: Intellect
Display Text: TestEvent Spam! *1 by *2 on *3!
Printed Text actually output when I cast on myself: TestEvent Spam! Arcane Intellect by *2 on Belleboom!
It's not picking up the event, the spellname and the destination, just not the spell's source.
Buffs don't have source arguments. If you look at sct_event_config, you'll see nil for argument #2.
One thing I really liked that I don't see working anymore is when you make or loot something it used to give you an icon and count on the SCT which was very nice. I see that is gone. Any ideas on how to get that back?
The custom events are not good
If something procs twice in a row, it only gets displayed once. Meaning it won't get displayed again untill the first notification is offscreen.
And, someone, finally, tell me how to configure SCT for extra attacks trough sword specialization...
I am not sure if anyone else has this 'problem', it might just be me and my friend or it might be a configuration thing, however here is the deal:
My combat log no longer works. I have not been playing for several months, and I am sure I have missed something somewhere, so any help is appreciated, even if it is a link or something.
Thanks
отличный аддон :)
"Excellent Addon"
New version available at Greyhoof's space on WowInterface... see link above in "Support" message.
is the custom event function activated for Chinese wow clients?
it seems not to work when i play using wowcn client.
i got confused.
@fision112
Stue said: "And also "DAMAGETARGET" isnt restricted to YOUR and your PETS damage, it also shows when someone else is doing damage to your target."
I thot by the way i emphazised YOUR and PETS damage it would be clear i was referring to the official description in the config file. And ive tried it, even with selfonly=1, but i still see when other ppl sinister strike my target.
And i tried damage, debuffs, etc to capture interrupts but none of em work. If you do know tho let me know.
weis wer wie man mit dem deutschen client die macestun proccs angezeigt kriegt ?
I have a problem SCT showing ALL casting going on around me... Doesn't matter if I am in a party/raid/solo. anyone around me that is casting something shows in my message 2. I have tried to disable each option, but it still shows.
why i doesn't work for me??
Why does this addon says its out dated in the wow toon selection? i check the load out of date addons, but still lots of error... am i missing something?
The new custom combat events since 2.4 version dont cut it. They dont cover events such as stuns and interrupts (important as a rogue).
And also "DAMAGETARGET" isnt restricted to YOUR and your PETS damage, it also shows when someone else is doing damage to your target.
Cant you just make ALL combat events available for custom SCT events, not just the custom events you created containing only the basic events such as damage and heals.
Ive been using SCT custom events forever and i was always able to catch the event i wanted with parsing the combat message thru pattern matching. I realize that in 2.4 the combat log works differently now. Where is the problem? Or does it just require more work?
I hope it can be done!
Is there a way for me to know when I crit or to know how much damage I do?