Ok i'm just clearing this post out.
Here's what I did to fix the issue I was having:
parse_action_packet.lua in simplify_message():
Code:
if line_full and fields.number and fields.target and fields.actor then
msg = line_full
elseif line_aoebuff and fields.status and fields.target and fields.actor then
msg = line_aoebuff
elseif line_nonumber and not fields.number then
msg = line_nonumber
elseif line_noactor and not fields.actor then
msg = line_noactor
elseif line_noabil and not fields.ability then
msg = line_noabil
settings.xml:
Code:
<line_aoebuff>${actor} ${abil} ¨ ${target} (${status})</line_aoebuff>
<line_full>[${actor}] ${numb} ${abil} ¨ ${target}</line_full>
<line_noabil>AOE ${numb} ¨ ${target}</line_noabil>
<line_noactor>${abil} ${numb} ¨ ${target}</line_noactor>
<line_nonumber>[${actor}] ${abil} ¨ ${target}</line_nonumber>
where the dots are the code for ->
That makes the messages like the old version for buffs.