Download
(560Kb)
Download
Updated: 05-06-11 05:53 PM
Pictures
File Info
Updated:05-06-11 05:53 PM
Created:04-26-11 11:17 PM
Downloads:62,897
Favorites:88
MD5:

MikScrollingBattleText 4.1 (Fan Update)  Popular! (More than 5000 hits)

Version: 5.5.91d
by: Fiercy [More]

Updated again on 5/04/2011.

Mik has returned and is updating the addon. So please do not download this version unless you want the additional sounds that I put in.
Edit: Sounds removed for copyright issues. Libs are the most current though.



This addon is for those who are weak at heart when it comes to modifying code in complex addons :P Again this is a fan update, that's all. I Protonova of Rexxar (US) do not claim any responsibility or ownership for this addon. The creator is Mikord. I only updated it while Mikord is absent.


I am in no way claiming that I have updated this addon by myself or that I created this addon. This is a fan update and should be used with caution.

USE AT YOUR OWN RISK!

The update was detailed by Morsker on the Curse addon comments. You can see his post at http://wow.curse.com/downloads/wow-addons/details/mik-scrolling-battle-text.aspx.

I would also like to thank Zidomo for pointing out Morsker's solutions. As well as sp00n for the merge off-hand event fix.

I hope to see Mikord back and willing to sink some time on some new improvements. <3 MSBT!!! Can't raid without it lol.

[5.5.91b > 5.5.91c]
Updated Libs directory structure.
Removed extra sounds.

[5.5.91b > 5.5.91c]
Updated Libs to 4.1 code.
Added new selectable sounds.

[5.5.91a > 5.5.91b]
Updated ToC to 4.1
Fixes to off-hand merge events.

[5.5.91 > 5.5.91a]
4.1 fixes to combat event functions
Post A Reply Comment Options
Unread 04-27-11, 02:49 AM  
Adam77
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 32
Uploads: 3
Info Request

What did you update exactly? Does the old version works on 4.1?
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 06:00 AM  
Fiercy
A Cyclonian
 
Fiercy's Avatar
AddOn Author - Click to view AddOns

Forum posts: 40
File comments: 142
Uploads: 7
Re: Info Request

Originally posted by Adam77
What did you update exactly? Does the old version works on 4.1?
The old version does not work with the 4.1 patch. What I changed is detailed on the link provided in the description. Or look below :P

Originally posted by Zidomo
As to how to actually fix the three files properly, here's clear, accurate information from Curse provided by Morsker:

"On all three lines, insert a "hideCaster" between "event" and "sourceGUID". Make sure to get the commas right. So this:

event, sourceGUID,

becomes this:

event, hideCaster, sourceGUID,

---

MSBTCooldowns.lua
CLEU event handler
line 246

MSBTParser.lua
ParseLogMessage
line 344

MSBTTriggers.lua
HandleCombatLogTriggers
line 698
"
-------------------------------
If instead of the above you either did it yourself copy-pasting from earlier posts or you downloaded the earlier RAR file provided, MSBTCooldowns.lua must be changed to work properly.

As per the above, in MSBTCooldowns.lua change line 246 from this:

Code:
function eventFrame:COMBAT_LOG_EVENT_UNFILTERED(timestamp, event,  sourceGUID, sourceName, sourceFlags, recipientGUID, recipientName,  recipientFlags, skillID)
to this:
Code:
function eventFrame:COMBAT_LOG_EVENT_UNFILTERED(timestamp, event, hideCaster, sourceGUID, sourceName, sourceFlags, recipientGUID, recipientName, recipientFlags, skillID)
And will repost the other two lines done properly following Morsker's directions (that are posted properly by earlier people here):

In MSBTParser.lua, change line 344 from this:
Code:
local function ParseLogMessage(timestamp, event, sourceGUID,  sourceName, sourceFlags, recipientGUID, recipientName, recipientFlags,  ...)
to this:
Code:
local function ParseLogMessage(timestamp, event, hideCaster, sourceGUID, sourceName, sourceFlags, recipientGUID, recipientName, recipientFlags, ...)
-------------------------------
In MSBTTriggers.lua, change line 698 from this:
Code:
local function HandleCombatLogTriggers(timestamp, event,  sourceGUID, sourceName, sourceFlags, recipientGUID, recipientName,  recipientFlags, ...)
to this:
Code:
local function HandleCombatLogTriggers(timestamp, event, hideCaster, sourceGUID, sourceName, sourceFlags, recipientGUID, recipientName, recipientFlags, ...)
__________________
There are countless ingredients that make up the human body and mind, like all the components that make up me as an individual with my own personality. Sure, I have a face and voice to distinguish myself from others, but my thoughts and memories are unique only to me, and I carry a sense of my own destiny. Each of those things are just a small part of it. I collect information to use in my own way. All of that blends to create a mixture that forms me and gives rise to my conscience.
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 12:45 PM  
Petrah
A Pyroguard Emberseer
 
Petrah's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2988
File comments: 334
Uploads: 10
Thank you for the update.
__________________
♪~ ( ) I My Sonos!
AddOn Authors: If your addon spams the chat box with "Addon v8.3.4.5.3 now loaded!", please add an option to disable it!
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 01:08 PM  
Ametko
A Kobold Labourer
 
Ametko's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 9
Uploads: 2
Thank you so much! im mage, and i dont know what do without msbt.
it works fine for me!
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 02:19 PM  
sp00n
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 84
Uploads: 9
You could add the band-aid fix for offhand swings which I've posted in the official addon comment thread:

I digged into the code and found a workaround for the new "Off-Hand" swing merges (Mutilate, Frost Strike, et al).
The problem is actually twofold.

First, fixing the code to make MSBT aware of the new strikes:

FILE:
\AddOns\MikScrollingBattleText\MSBTMain.lua

FIND:
-- Setup the combat event.
(should be in line 1057)

INSERT BEFORE:
-- Fix "Off-Hand" swings
if (effectName and string_find(effectName, " Off%-Hand")) then
effectName = string_gsub(effectName, " Off%-Hand", "")
end


Now, the second problem is that the new swings obviously take longer to appear in the combat log. Thus we have to give MSBT more time to do the actual merger.

In the same file, find:
local MERGE_DELAY_TIME = 0.3

Change the 0.3 to 0.5.

Note that even with 0.5 the strikes will sometimes still show up as two seperate entries. Increase the value as you see fit.



These changes do not affect other combat parsers like Recount or Skada. It's MSBT only.
Also note that obviously this is for the English client only. For any other language, you'll have to change " Off%-Hand" to whatever it is called in your locale (the "%" escapes the "-" character, be sure to not forget it if you need to look for that character).
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 02:49 PM  
Caith
A Murloc Raider
 
Caith's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 332
Uploads: 1
Awesome thanks a lot!
__________________
FROZEN SHADOWLYN
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 04:40 PM  
Eolian
A Kobold Labourer
 
Eolian's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 114
Uploads: 4
Thnx for the update!
Last edited by Eolian : 04-27-11 at 04:45 PM.
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 08:58 PM  
Antiquw
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Confused >.<

Do I just download the old version or what? I'm so awful at trying to edit the addon itself.
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 12:11 AM  
Fiercy
A Cyclonian
 
Fiercy's Avatar
AddOn Author - Click to view AddOns

Forum posts: 40
File comments: 142
Uploads: 7
Re: Confused >.<

Originally posted by Antiquw
Do I just download the old version or what? I'm so awful at trying to edit the addon itself.
Nope just delete the old folders you had and install these. that's all.

@sp00n
I will add it as a supplemental patch file as soon as I test it further. But, I'm really hoping Mikord didn't abandon wow. u_u
__________________
There are countless ingredients that make up the human body and mind, like all the components that make up me as an individual with my own personality. Sure, I have a face and voice to distinguish myself from others, but my thoughts and memories are unique only to me, and I carry a sense of my own destiny. Each of those things are just a small part of it. I collect information to use in my own way. All of that blends to create a mixture that forms me and gives rise to my conscience.
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 05:15 AM  
Igor3K
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Thanks a lot, it works.

Honestly can't live without this addon :/
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 06:26 AM  
Fiercy
A Cyclonian
 
Fiercy's Avatar
AddOn Author - Click to view AddOns

Forum posts: 40
File comments: 142
Uploads: 7
I will be putting out another update shortly with an update to Pet parsing, DK's "Off-Hand" swing merges and the way other addons communicate with MSBT (e.g. notifications from addons).
__________________
There are countless ingredients that make up the human body and mind, like all the components that make up me as an individual with my own personality. Sure, I have a face and voice to distinguish myself from others, but my thoughts and memories are unique only to me, and I carry a sense of my own destiny. Each of those things are just a small part of it. I collect information to use in my own way. All of that blends to create a mixture that forms me and gives rise to my conscience.
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 08:58 AM  
Nallepuh
A Deviate Faerie Dragon

Forum posts: 19
File comments: 65
Uploads: 0
mik

Have Mikord dropped Mikscrollingtext addon or just taking a break?
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 12:29 PM  
tylerdyr
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Hey I have two Problems!

First the combo points are endless spamming at my warrior, I know that a warrior don't have CP but Meat Cleaver skill and so on what is countered by 1CP 2CP 3CP, you can follow me?

Second, it is some times really lagging especially on big groups of course I tested it!

There any possibilities to fix that?

Sincerely
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 03:25 PM  
Morsker
A Fallenroot Satyr
 
Morsker's Avatar
AddOn Author - Click to view AddOns

Forum posts: 22
File comments: 89
Uploads: 8
Re: mik

Originally posted by Nallepuh
Have Mikord dropped Mikscrollingtext addon or just taking a break?
We don't know. Fortunately the author checked the Allow Updates & AddOns box, so we can post fan updates here. I was pleasantly surprised to see that; the license on Curse doesn't allow it, but here it does. Of course we'd all rather he come back though!
Last edited by Morsker : 04-28-11 at 03:26 PM.
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 05:42 PM  
Fiercy
A Cyclonian
 
Fiercy's Avatar
AddOn Author - Click to view AddOns

Forum posts: 40
File comments: 142
Uploads: 7
@Nallepuh
Has Mikord dropped MSBT? I don't know. I am not in contact with him.

@tylerdyr
Those problems have nothing to do with MSBT. The lag is because of your system or more specifically your processor's speed. As for the CP question I don't follow. MSBT is not a combo point addon and will not track this. If it's a stacking buff idk try adding spellid: 12950 to the triggers.

@Morsker
Thanks for being the real updater
__________________
There are countless ingredients that make up the human body and mind, like all the components that make up me as an individual with my own personality. Sure, I have a face and voice to distinguish myself from others, but my thoughts and memories are unique only to me, and I carry a sense of my own destiny. Each of those things are just a small part of it. I collect information to use in my own way. All of that blends to create a mixture that forms me and gives rise to my conscience.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: