Denathil "The Mutt" Verasi  said:  That would work, but as I said it is only a small annoyance nothing major ^_^  You have at least two simple options, requires modifying the PowerCardScript, not the CharacterImporter.   Option 1 - Does not require script modification. Have your players edit each power. Very simple solution as HoneyBadger has done well by allowing custom tags. Have your guys put as the first tag in the script. --Actor|Joe Bob    Option 2 - Requires two line changes in the PowerCardScript, Only you have to make the change and it will work for everyone. Very simple to do.  Drawback is that it must be done each time you update the script. There are two lines.  You must change both. Change: 							 sendChat("", "/direct " + DisplayCard); To:  sendChat(msg.who, "/direct " + DisplayCard); Now the power card should display as if they had sent a chat message.   On a side note to HoneyBadger, would it be ok to add an option to the PowerCardScript.  Something like:   var DisplayWho = false;  // enable if you want the PowerCard to display who sent it.
sendChat(DisplayWho ? msg.who : "", "/direct " + DisplayCard);