Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Orange Text Highlight API

I like to have my players use /me for all in character actions and conversation because the orange highlight makes it SOOOOOOO easy to read and differentiate. Im sure it must double my reading comprehension rate. Most of my players are newbies so they were easy to convince to do this as well. But one of my players is experienced. And that means she is set in her ways. In this case she refuses to use /me because she prefers a first person narrative. And hates having the name pop up beforehand. So Im asking if there is an API that triggers the orange highlight of /me without inserting the name at the beginning. 
1504791985

Edited 1504793172
Jakob
Sheet Author
API Scripter
The API cannot change messages already sent. You might be able to do something with a browser extension like Stylish, however... EDIT: You should be able to mimic the look of /me for normal messages by adding a rule in Stylish like this: .textchatcontainer div.message.general, .textchatcontainer div.message.general.you { font-style: italic; font-weight: bold; color: #DB831F; background-color: #F5E4D3; } The original CSS for /me messages also has text-align: center; included, but that may mess up the formatting, so I would not include it. This will make ALL messages look like /me emotes for you. EDIT2: This will still display the name in front of the message, because the name is shown by default. If you want to hide the name of the sender as well, you can add .textchatcontainer div.message.general span.by { display: none; }