View Single Post
10-19-15, 01:23 PM   #4
Banknorris
A Chromatic Dragonspawn
 
Banknorris's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 153
Maybe you can replace the function CombatText_AddMessage, this will taint Blizzard_CombatText.lua but hopefully there is no secure stuff involved. This also assumes you can identify the separator in the message parameter of this function. I mean

Code:
CombatText_AddMessage_old = CombatText_AddMessage
function CombatText_AddMessage(message, scrollFunction, r, g, b, displayType, isStaggered)
    --code to identify if message contain LARGE_NUMBER_SEPERATOR and replace it
    return CombatText_AddMessage_old(message, scrollFunction, r, g, b, displayType, isStaggered)
end
__________________
"In this world nothing can be said to be certain, except that fractional reserve banking is a Ponzi scheme and that you won't believe it." - Mandrill

Last edited by Banknorris : 10-19-15 at 01:31 PM.
  Reply With Quote