I've been trying for days now, and can't get this mod to parrot to work. No matter what I do, it just ignores it. I've confirmed I'm editing the right line, it's in this section:

Code:
Parrot:RegisterCombatEvent{
category = "Outgoing",
subCategory = L["Skills"],
name = "Skill damage",
localName = L["Skill damage"],
defaultTag = "[Amount] ([Skill])",
parserEvent = {
eventType = "Damage",
sourceID = "player",
recipientID_not = "player",
abilityName_not = false,
isDoT = false,
},
I've changed the

Code:
sourceID = "player",
to each of the following:

Code:
sourceName_match = "^T.ht.*$",
Code:
sourceName_match = "^T.ht%a*$",
Code:
sourceName_match = "^T%aht%a*$",
Code:
sourceName_match = "^T%aht.*$",
Code:
sourceName_match = "^T[eéêëè]ht.*$",
Code:
sourceName_match = "^T[eéêëè]ht%a*$",
I'm assuming the problem is I'm not getting the parsing right, as I have a different character in the second letter (e é ê ë è) and a different ending on my main. The following are my character names, if they're not showing in my signature for some reason:

Tehtsara
Téht
Têht
Tëht
Tèht


Update: I just attempted to go back to default, replaced my change with
Code:
sourceID = "player",
and I still couldn't bring up the outgoing tab in the addon config window. Then I uninstalled/reinstalled the addon and reloaded ui (While WoW was running even!) and I could bring up the outgoing tab in the config window. Figured I had messed up the lua file somehow, so I tried again. Changed the one line to
Code:
sourceName_match = "^T.ht.*$",
then did /rl. Same problem, no outgoing tab in the config window. Reverted the changes, reloaded ui, same problem! What in the world is going on? ?(

Update: Fixed that problem, wasn't using a proper text editor. Apparently wordpad isn't acceptable for editing .lua files. Still can't get the parsing to work though, it just doesn't want to work for me.