I’d suggest just start each email message and IM with a heading of the fake email addresses/user names you’re using, and fake the differences that way. That should distinguish things enough.
To: email@fakefake.com
From: other@email.com
Blah blah here is my email.
You can change the font for sections of the game. The method of doing this isn’t supported by Choice of Games though.
I’d guess the method is similar to the method you use to code in tags that will make the text different font colours.
Only by changing the cs interpreter code.Look in the ui.js file and at the top there is a function called printxwithin it there is a series of .replace lines, like:
.replace(/\[i\\]/g, ‘<i>’).replace(/\[\/i\]/g, ‘</i>’)
You want to add two more, similar to this:
.replace(/\[blue\]/g, ‘<span style=“color:blue;”>’).replace(/\[\/blue\]/g, ‘</span>’);
Note that the semicolon is only necessary on your last line.Whether or not this sort of modification will work with published titles, I cannot say.
2 Likes