Update messages

This commit is contained in:
Asraelite 2023-06-05 11:42:57 +00:00
parent ea533015ba
commit f8d654b116
3 changed files with 19 additions and 33 deletions

View file

@ -70,6 +70,7 @@
"Pomegranate", "Pomegranate",
"Pomelo", "Pomelo",
"Quince", "Quince",
"Quandong",
"Raspberry", "Raspberry",
"Salmonberry", "Salmonberry",
"Rambutan", "Rambutan",
@ -188,8 +189,11 @@
"Porous" "Porous"
], ],
"q": [ "q": [
"Quivering", "Quirky",
"Queer" "Quiet",
"Quintessential",
"Questioning",
"Quaint"
], ],
"r": [ "r": [
"Radical", "Radical",

View file

@ -1,10 +1,8 @@
{ {
"roomEnter": [ "roomEnter": [
"@ has entered the room, the cunt.",
"Oh, looks like @ decided to show up.", "Oh, looks like @ decided to show up.",
"Here comes @.", "Here comes @.",
"Guys, it's over, @ is here", "Guys, it's over, @ is here",
"What a great time we're having. Aw crap, here's @.",
"@ has entered the room.", "@ has entered the room.",
"Some guy by the name of @ decided to show up.", "Some guy by the name of @ decided to show up.",
"A wild @ appeared!", "A wild @ appeared!",
@ -12,43 +10,26 @@
"Look out it's @!", "Look out it's @!",
"@ has come for a visit.", "@ has come for a visit.",
"Out of nowhere, @ arrives.", "Out of nowhere, @ arrives.",
"@ has penetrated the room.",
"@ showed up.", "@ showed up.",
"Good news, everyone, @ is here.", "Good news, everyone, @ is here.",
"@ joined the room.", "@ joined the room.",
"@ has arrived to play with y'all.", "@ has arrived to play with y'all.",
"@ entered the room, the audacity.",
"Someone let @ in again.", "Someone let @ in again.",
"@ has decided to participate.", "@ has decided to participate.",
"@ joined the game.", "@ joined the game.",
"You know @, the weird one? Yeah, he just joined.",
"Uh-oh spaghetti-o, it's @.", "Uh-oh spaghetti-o, it's @.",
"@ joined the room :/", "@ joined the room",
"May as well leave now, @ just joined.",
"@ decided to turn up.", "@ decided to turn up.",
"@ has popped by for a visit.", "@ has popped by for a visit.",
"And like that annoying friend who won't go away, @ arrives.", "@ now arrives, run for your lives.",
"@ now arrives, run for your lives", "@ has come by for a visit."
"@ joined the room. This is a \"good\" thing.",
"For fuck's sake, @ has joined again.",
"Well great, @ entered the room.",
"@ has entered the room, hopefully they'll leave soon.",
"@ didn't listen when we told them to go away and has joined.",
"@ has entered the game. They actually did it. Wow.",
"@ entered the room, but maybe it won't be as bad as last time.",
"Everybody clap for @, the shithead who has joined the room.",
"@ has come by for a visit. Joy of joys."
], ],
"roomLeave": [ "roomLeave": [
"@ has left, finally.", "@ has left.",
"@ has left the room.", "@ has left the room.",
"@ finally decided to leave.", "@ decided to leave.",
"@ is now gone, good ridance.", "@ disconnected.",
"@ disconnected. Good.",
"After much waiting, @ has finally left.",
"@ is gone. Hopefully it'll stay that way.", "@ is gone. Hopefully it'll stay that way.",
"Thankfully @ has left the room.", "@ has exited the game :)"
"@ has exited the game :)",
"@ left. Now hope they don't come back."
] ]
} }

View file

@ -27,7 +27,7 @@ class ServerInterface {
output = timestamp.gray + output; output = timestamp.gray + output;
// Clear and go to start of line. // Clear and go to start of line.
console.log('\x1b[2K\x1b[999D' + output); console.log('\x1b[2K\x1b[999D' + output);
fs.appendFile(this.logfile, timestamp + msg + '\n'); fs.appendFile(this.logfile, timestamp + msg + '\n', () => {});
} }
debug(msg) { debug(msg) {
@ -48,10 +48,11 @@ class ServerInterface {
get timestamp() { get timestamp() {
let d = new Date(); let d = new Date();
return `<${pad(d.getUTCHours(), 2)}:` + return '<' + d.toISOString() + '> ';
`${pad(d.getUTCMinutes(), 2)}:` + //return `<${pad(d.getUTCHours(), 2)}:` +
`${pad(d.getUTCSeconds(), 2)}.` + // `${pad(d.getUTCMinutes(), 2)}:` +
`${pad(('' + d.getUTCMilliseconds()).slice(0, 2), 2, true)}> `; // `${pad(d.getUTCSeconds(), 2)}.` +
// `${pad(('' + d.getUTCMilliseconds()).slice(0, 2), 2, true)}> `;
} }
get logfile() { get logfile() {