Page 61 of 173
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:02 am
by DeeZees
Like to the apples on the Dead Sea’s shore, all ashes to the taste
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:04 am
by MacDougall
Dear NPCs. In Macdouglia Voluntary Euthanasia is permitted and welcomed. If you wish to return to the Valhalla that is spec chat at any time, simply send me a message and I will pull the plug on your game and send you to be with the rest of your non-existent friends.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:06 am
by Ranmilia
Script in greasemonkey doesn't seem to do anything. Pressing Alt makes Firefox menus happen.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:06 am
by EnderWiggin
Ranmilia wrote: ↑Tue Dec 06, 2022 7:06 am
Script in greasemonkey doesn't seem to do anything. Pressing Alt makes Firefox menus happen.
try alt f4
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:08 am
by Ranmilia
Funny joke, definitely increases my desire to load extensions and scripts from people in mafia games
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:08 am
by DeeZees
MacDougall wrote: ↑Tue Dec 06, 2022 7:04 am
Dear NPCs. In Macdouglia Voluntary Euthanasia is permitted and welcomed. If you wish to return to the Valhalla that is spec chat at any time, simply send me a message and I will pull the plug on your game and send you to be with the rest of your non-existent friends.
When you find yourself in a hole, quit digging
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:08 am
by Lumi
Ranmilia wrote: ↑Tue Dec 06, 2022 7:06 am
Script in greasemonkey doesn't seem to do anything. Pressing Alt makes Firefox menus happen.
Oof, ya, tested it on chrome no firefox. What are hotkeys that work for you on firefox (e.g key combinations that don't do anything)
I can hotfix it for you
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:11 am
by DeeZees
Lumi wrote: ↑Tue Dec 06, 2022 7:08 am
Ranmilia wrote: ↑Tue Dec 06, 2022 7:06 am
Script in greasemonkey doesn't seem to do anything. Pressing Alt makes Firefox menus happen.
Oof, ya, tested it on chrome no firefox. What are hotkeys that work for you on firefox (e.g key combinations that don't do anything)
I can hotfix it for you
One persons ‘magic’ is another person's engineering.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:11 am
by DeeZees
[VOTE:
santygrass] aubergine
Betwixt the stirrup and the ground, Mercy I asked, mercy I found
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:12 am
by Ranmilia
No idea sadly :/ None of the current ones seem to do anything, are they supposed to have visual feedback or something? Alt is probably forbidden in general, pressing alt pops up the top menubar with File Edit View History Bookmarks Tools Help and further inputs are directed to those menus.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:12 am
by Ricochet
…
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:14 am
by DeeZees
santygrass wrote: ↑Tue Dec 06, 2022 12:28 am
I think my read on Guillo would be like 60% Npc , 40% Mafia player and you just always yeet that tbhtbh
I think that bothering to look for 'players' and them which of them could be 'mafia' is searching for 4 players in a pool of 40 is super premature and prone to failure.
So the correct play is to yeet who you know isnt town and carry on.
Thanks from coming to my TED Talk
Don’t judge someone until you’ve stood at his forge and worked with his hammer.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:16 am
by Lumi
Code: Select all
// ==UserScript==
// @name Secret Playerlist Vote Counter
// @namespace mailto:luminouslag@gmail.com
// @version 1.0
// @description Automatic Vote Counting for Secret Plyerlist Mafia game on The Syndicate
// @author Lumi
// @match https://mafiathesyndicate.com/viewtopic.php?*
// @icon https://www.google.com/s2/favicons?sz=64&domain=mafiathesyndicate.com
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_setClipboard
// ==/UserScript==
console.log('Script Initialized');
async function getDocument(thread, start) {
return await window.fetch(`https://mafiathesyndicate.com/viewtopic.php?t=${thread}&start=${start}`).then(r => r.text()).then(html => (new DOMParser()).parseFromString(html, 'text/html'));
}
function getDataFromPost(post) {
let postNum = post.getElementsByClassName('post-number')[0].textContent.match(/[0-9]+/g)[0];
let contentChildren = post.getElementsByClassName('content')[0].children;
let author = post.getElementsByClassName('author')[1].getElementsByTagName('a')[1].textContent;
let currentVoteTarget = null;
for (const contentChild of contentChildren) {
if (contentChild.classList.contains('mention')) {
let voteTarget = contentChild.textContent.replaceAll('\n','').matchAll(/\[VOTE: ([^\]]*)\]/g).next().value;
if (voteTarget) currentVoteTarget = voteTarget[1];
}
}
return {
number: postNum,
target: currentVoteTarget,
author: author,
};
}
function isCorrectThread(targetNum) {
let topicNum = document.getElementsByClassName("topic-title")[0].children[0].href.matchAll(/\?t=([0-9]+)&/g).next().value[1];
return topicNum == targetNum;
};
function getNumPosts() {
return parseInt(document.getElementsByClassName('pagination')[0].textContent.matchAll(/([0-9]*) posts/g).next().value[1]);
};
function getFirstPostNumOfThisPage() {
return parseInt(document.getElementsByClassName('post')[0].getElementsByClassName('post-number')[0].textContent.match(/[0-9]+/g)[0]);
}
function tallyPage(voteHistory, page) {
let posts = page.getElementsByClassName('post');
for (const post of posts) {
let postData = getDataFromPost(post);
if (parseInt(postData.number) == voteHistory.length + 1) {
voteHistory.push(postData);
}
}
return voteHistory;
}
function handleKeyUp(e) {
let isNum = (e.keyCode >= 48 && e.keyCode <= 57);
let isC = (e.keyCode == 67);
let isR = (e.keyCode == 82);
let isX = (e.keyCode == 88);
if (isC && e.altKey) {
let currentDay = 1;
for(let i=1; i<=10; i++) {
if (GM_getValue(`EoD${i}`, 0) != 0) currentDay++;
}
let voteCount = calcVoteCount(currentDay);
GM_setClipboard(voteCount);
} else if (isR && e.altKey) {
let day = parseInt(prompt('Enter Day Number'));
let voteCount = calcVoteCount(day);
GM_setClipboard(voteCount);
} else if ( isNum && e.altKey) {
let num = parseInt(e.key);
if (num == 0) num = 10;
let postNum = prompt(`Enter Post Number for EoD ${num}`)
GM_setValue(`EoD${num}`, parseInt(postNum));
} else if ( isX && e.altKey) {
window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
}
};
function calcVoteCount(day) {
let SoD = GM_getValue(`EoD${day-1}`, 0);
let EoD = GM_getValue(`EoD${day}`, 0);
voteHistory = JSON.parse(GM_getValue(`voteHistory`), '[]');
let voteTargets = {};
let postCounts = {};
for (const vote of voteHistory) {
if ((vote.number >= SoD || SoD == 0) && (vote.number <= EoD || EoD == 0)) {
if (!(vote.author in voteTargets)) {
voteTargets[vote.author] = null;
postCounts[vote.author] = 1;
} else {
postCounts[vote.author] += 1;
}
if (vote.target != null) voteTargets[vote.author] = [vote.target, vote.number];
}
}
let voteCount = {};
for (const [key, value] of Object.entries(voteTargets) ) {
if (value != null) {
let target = value[0].toLowerCase().trim();
if (target in voteCount) {
voteCount[target].push([key, value[1], postCounts[key]]);
} else {
voteCount[target] = [[key, value[1], postCounts[key]]];
}
} else {
if ('Not Voting' in voteCount) {
voteCount['Not Voting'].push([key, null, postCounts[key]]);
} else {
voteCount['Not Voting'] = [[key, null, postCounts[key]]];
}
}
}
return voteCountToString(voteCount);
}
function voteToString(vote) {
if (vote[1] == null) return `${vote[0]} (${vote[2]})`
return `[url=https://mafiathesyndicate.com/viewtopic.php?t=2451&start=${vote[1]-1}]${vote[0]}[/url] (${vote[2]})`
}
function voteCountToString(voteCount) {
let output = '';
for (const [key, value] of Object.entries(voteCount)) {
let valueStrings = [];
for (const vote of value) {
valueStrings.push(voteToString(vote));
}
output += `${key} (${value.length}): ${valueStrings.join(', ')}\n`
}
return output;
}
if (isCorrectThread(2451)) {
let voteHistory = JSON.parse(GM_getValue(`voteHistory`, '[]'));
let numPosts = getNumPosts();
let curVoteHistoryLength = voteHistory.length;
while (voteHistory.length < numPosts) {
let page = await getDocument(2451, voteHistory.length);
voteHistory = tallyPage(voteHistory, page);
if (voteHistory.length == curVoteHistoryLength) break;
}
GM_setValue(`voteHistory`, JSON.stringify(voteHistory));
document.addEventListener('keyup', handleKeyUp, false);
};
Firefox version. It uses Alt + C instead of Alt + V
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:17 am
by Lumi
Just installed firefox and got it running from Firefox.
When you press the hotkeys you have to press them both at the same time, if you press alt first followed by C or V then you'll end up in the menus, but if you hit them at the same time it should work.
Hitting Alt + 1 is a good way to test if you have the script loaded as it will give you a prompt to enter the post number for EoD 1
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:17 am
by DeeZees
santygrass wrote: ↑Mon Dec 05, 2022 11:41 pm
Yeh, thats kinda why I think its better to go at obv not towmy people and
not think much about it tbh
It’s one thing to surmise what happened, but we don’t speculate on that until ballistics confirms what happened …
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:18 am
by Lumi
I'll probably finish some basic UI to make it user friendly by EoD 2.
I just don't want to deal with CSS

Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:19 am
by Ranmilia
Still does not work, even when I do my best fighting game inputs to mash both keys simultaneously. Giving up now but thank you for your efforts <3
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:19 am
by Michelle
I don't think that will work on phone, can I let my votes without making the VC?
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:21 am
by Lumi
Michelle wrote: ↑Tue Dec 06, 2022 7:19 am
I don't think that will work on phone, can I let my votes without making the VC?
No, you have to get the USB-C to Keyboard phone adapter and plug in a keyboard to your phone, sorry Michelle
I'm sure it's fine
I'm also not the host, so

Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:22 am
by Michelle
EnderWiggin wrote: ↑Tue Dec 06, 2022 6:19 am
[VOTE:
Scotty] aubergine
I repeat Michelle is town.
I am slowly turning into Brad.
[VOTE:
Scotty] aubergine
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:23 am
by DeeZees
How can I, a drop of dew, vanish away in the air leaving you alone?
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:24 am
by Michelle
Lumi wrote: ↑Tue Dec 06, 2022 7:21 am
Michelle wrote: ↑Tue Dec 06, 2022 7:19 am
I don't think that will work on phone, can I let my votes without making the VC?
No, you have to get the USB-C to Keyboard phone adapter and plug in a keyboard to your phone, sorry Michelle
I'm sure it's fine
I'm also not the host, so


ok mom, i'll go to the store to buy the keyboard...
It will take some time till I get the money for it, probably next year at this moment of the year I'll be able to do it.

Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:25 am
by Michelle
DeeZees wrote: ↑Tue Dec 06, 2022 7:23 am
How can I, a drop of dew, vanish away in the air leaving you alone?
Stay here with us

Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:26 am
by EnderWiggin
Okay I feel really low level dumb for making the dumb altf4 joke now.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:27 am
by Lumi
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am
Okay I feel really low level dumb for making the dumb altf4 joke now.
I liked the joke

Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:27 am
by Ranmilia
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am
Okay I feel really low level dumb for making the dumb altf4 joke now.
It's all right let's move on. What do you think about Prince J?
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:27 am
by DeeZees
Michelle wrote: ↑Tue Dec 06, 2022 7:25 am
DeeZees wrote: ↑Tue Dec 06, 2022 7:23 am
How can I, a drop of dew, vanish away in the air leaving you alone?
Stay here with us
In democracy it's your vote that counts; in feudalism it's your count that votes
[VOTE:
Santygrass] aubergine
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:28 am
by Lumi
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am
Okay I feel really low level dumb for making the dumb altf4 joke now.
Also, fun fact, you were the first person I ever factional killed as wolf.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:28 am
by DeeZees
Michelle wrote: ↑Tue Dec 06, 2022 7:19 am
I don't think that will work on phone, can I let my votes without making the VC?
people ... believe that if it ain't broke, don't fix it. Engineers believe that if it ain't broke, it doesn't have enough features yet
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:39 am
by EnderWiggin
Ranmilia wrote: ↑Tue Dec 06, 2022 7:27 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am
Okay I feel really low level dumb for making the dumb altf4 joke now.
It's all right let's move on. What do you think about Prince J?
Wolfy?
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:39 am
by EnderWiggin
Lumi wrote: ↑Tue Dec 06, 2022 7:28 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am
Okay I feel really low level dumb for making the dumb altf4 joke now.
Also, fun fact, you were the first person I ever factional killed as wolf.
I remember that game. I nabbed your Godfather D1 and then died and watched the game get lost.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:40 am
by EnderWiggin
You played a pretty great wolf game for your first time tho.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:41 am
by Lumi
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:39 am
Lumi wrote: ↑Tue Dec 06, 2022 7:28 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am
Okay I feel really low level dumb for making the dumb altf4 joke now.
Also, fun fact, you were the first person I ever factional killed as wolf.
I remember that game. I nabbed your Godfather D1 and then died and watched the game get lost.
Credit to C4 (the godfather) giving the advice to kill you Night 1 before going down. He identified you as town's "glue guy" in that game and things just sort of fell apart for town without you.
EnderWiggin wrote: ↑Tue Dec 06, 2022 7:40 am
You played a pretty great wolf game for your first time tho.
<3
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 7:44 am
by EnderWiggin
That was back when I was putting all my effort into every game and was dying N1/N2 like every other game.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:05 am
by EnderWiggin
DZ is probably town.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:10 am
by Ranmilia
EnderWiggin wrote: ↑Tue Dec 06, 2022 8:05 am
DZ is probably town.
Why
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:12 am
by EnderWiggin
Ranmilia wrote: ↑Tue Dec 06, 2022 8:10 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 8:05 am
DZ is probably town.
Why
I checked his shower and there wasn't fur.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:20 am
by Ranmilia
EnderWiggin wrote: ↑Tue Dec 06, 2022 8:12 am
Ranmilia wrote: ↑Tue Dec 06, 2022 8:10 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 8:05 am
DZ is probably town.
Why
I checked his shower and there wasn't fur.
No. Seriously. Why. I'm looking back at your ISO and... you haven't explained a single one of your reads all game except "Michelle said a post was wolfy that I also thought was wolfy."
What are your, let's say top five strongest reads and reasons for each?
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:56 am
by Dyslexicon
MacDougall wrote: ↑Tue Dec 06, 2022 7:04 am
Dear NPCs. In Macdouglia Voluntary Euthanasia is permitted and welcomed. If you wish to return to the Valhalla that is spec chat at any time, simply send me a message and I will pull the plug on your game and send you to be with the rest of your non-existent friends.
Not an NPC, but thanks anyway

Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:57 am
by Dyslexicon
Michelle wrote: ↑Tue Dec 06, 2022 7:22 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 6:19 am
[VOTE:
Scotty] aubergine
I repeat Michelle is town.
I am slowly turning into Brad.
[VOTE:
Scotty] aubergine
[VOTE:
Scotty] aubergine
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 8:57 am
by Dyslexicon
Also, I was right in that Golden was …not town and fake news! =p
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:08 am
by Ranmilia
Greetings, Brother Dizzy. What tidings bear thee? Thou hast received thine wish on the first day, the gilded head. What now?
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:14 am
by tutuu
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:15 am
by EnderWiggin
Ranmilia wrote: ↑Tue Dec 06, 2022 8:20 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 8:12 am
Ranmilia wrote: ↑Tue Dec 06, 2022 8:10 am
EnderWiggin wrote: ↑Tue Dec 06, 2022 8:05 am
DZ is probably town.
Why
I checked his shower and there wasn't fur.
No. Seriously. Why. I'm looking back at your ISO and... you haven't explained a single one of your reads all game except "Michelle said a post was wolfy that I also thought was wolfy."
What are your, let's say top five strongest reads and reasons for each?
Reasons are for the weekend.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:17 am
by EnderWiggin
Top five strongest are probably Ran/Dizzy/Michelle town
Scotty wolf
And there probably is a 5th strong read but I can't remember it.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:17 am
by EnderWiggin
Oh yeah right I said DZ was town.
That can go in there too.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:20 am
by EnderWiggin
@RondoDimBuckle
You still gotta pretend to be in this game. You aren't dead yet.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:22 am
by EnderWiggin
No one else is posting so I claim this thread for all Ender-kind.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:22 am
by Dyslexicon
Ranmilia wrote: ↑Tue Dec 06, 2022 9:08 am
Greetings, Brother Dizzy. What tidings bear thee? Thou hast received thine wish on the first day, the gilded head. What now?
I have read no evil and I have seen no evil on this good day. Well, I have read and seen nothing at all this day. But I remember smelling something funny from Scotty’s room last day, so when I saw votes there I wanted to give it momentum with my CLOUT.
That’s pretty much all.
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Posted: Tue Dec 06, 2022 9:23 am
by EnderWiggin
I appreciate your clout brother dizzy