Secret Playerlist - ENDGAME
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Like to the apples on the Dead Sea’s shore, all ashes to the taste
- MacDougall
- Out of my scumrange
- Posts in topic: 93
- Posts: 39913
- Joined: Wed Sep 23, 2015 2:37 am
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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.
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Script in greasemonkey doesn't seem to do anything. Pressing Alt makes Firefox menus happen.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
try alt f4
We can only trust the truth. Everything else is a lie.
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Funny joke, definitely increases my desire to load extensions and scripts from people in mafia games
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
When you find yourself in a hole, quit diggingMacDougall 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.
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
[VOTE:
santygrass] aubergine
Betwixt the stirrup and the ground, Mercy I asked, mercy I found
Betwixt the stirrup and the ground, Mercy I asked, mercy I found
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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.
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Don’t judge someone until you’ve stood at his forge and worked with his hammer.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
- Lumi
- Corrupt Union Official
- Posts in topic: 259
- Posts: 626
- Joined: Fri Feb 11, 2022 10:08 pm
- Preferred Pronouns: she/her/they/them
- Aka: Luminous
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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);
};
- Lumi
- Corrupt Union Official
- Posts in topic: 259
- Posts: 626
- Joined: Fri Feb 11, 2022 10:08 pm
- Preferred Pronouns: she/her/they/them
- Aka: Luminous
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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
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
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
It’s one thing to surmise what happened, but we don’t speculate on that until ballistics confirms what happened …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
- Lumi
- Corrupt Union Official
- Posts in topic: 259
- Posts: 626
- Joined: Fri Feb 11, 2022 10:08 pm
- Preferred Pronouns: she/her/they/them
- Aka: Luminous
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
I'll probably finish some basic UI to make it user friendly by EoD 2.
I just don't want to deal with CSS
I just don't want to deal with CSS
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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
- Michelle
- Made Man
- Posts in topic: 417
- Posts: 8437
- Joined: Wed Jul 17, 2019 7:18 am
- Location: in my shell
- Gender: Female
- Preferred Pronouns: She/her/hers/herself
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
I don't think that will work on phone, can I let my votes without making the VC?
- Michelle
- Made Man
- Posts in topic: 417
- Posts: 8437
- Joined: Wed Jul 17, 2019 7:18 am
- Location: in my shell
- Gender: Female
- Preferred Pronouns: She/her/hers/herself
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
[VOTE: Scotty] aubergineEnderWiggin wrote: ↑Tue Dec 06, 2022 6:19 am [VOTE: Scotty] aubergine
I repeat Michelle is town.
I am slowly turning into Brad.
- DeeZees
- Corrupt Union Official
- Posts in topic: 228
- Posts: 706
- Joined: Thu Sep 22, 2022 2:34 am
- Gender: he
- Preferred Pronouns: he/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
How can I, a drop of dew, vanish away in the air leaving you alone?
- Michelle
- Made Man
- Posts in topic: 417
- Posts: 8437
- Joined: Wed Jul 17, 2019 7:18 am
- Location: in my shell
- Gender: Female
- Preferred Pronouns: She/her/hers/herself
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)

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.

- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Okay I feel really low level dumb for making the dumb altf4 joke now.
We can only trust the truth. Everything else is a lie.
- Lumi
- Corrupt Union Official
- Posts in topic: 259
- Posts: 626
- Joined: Fri Feb 11, 2022 10:08 pm
- Preferred Pronouns: she/her/they/them
- Aka: Luminous
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
I liked the jokeEnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am Okay I feel really low level dumb for making the dumb altf4 joke now.
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
It's all right let's move on. What do you think about Prince J?EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am Okay I feel really low level dumb for making the dumb altf4 joke now.
- Lumi
- Corrupt Union Official
- Posts in topic: 259
- Posts: 626
- Joined: Fri Feb 11, 2022 10:08 pm
- Preferred Pronouns: she/her/they/them
- Aka: Luminous
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Also, fun fact, you were the first person I ever factional killed as wolf.EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am Okay I feel really low level dumb for making the dumb altf4 joke now.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Wolfy?Ranmilia wrote: ↑Tue Dec 06, 2022 7:27 amIt's all right let's move on. What do you think about Prince J?EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am Okay I feel really low level dumb for making the dumb altf4 joke now.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
I remember that game. I nabbed your Godfather D1 and then died and watched the game get lost.Lumi wrote: ↑Tue Dec 06, 2022 7:28 amAlso, fun fact, you were the first person I ever factional killed as wolf.EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am Okay I feel really low level dumb for making the dumb altf4 joke now.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
You played a pretty great wolf game for your first time tho.
We can only trust the truth. Everything else is a lie.
- Lumi
- Corrupt Union Official
- Posts in topic: 259
- Posts: 626
- Joined: Fri Feb 11, 2022 10:08 pm
- Preferred Pronouns: she/her/they/them
- Aka: Luminous
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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:39 amI remember that game. I nabbed your Godfather D1 and then died and watched the game get lost.Lumi wrote: ↑Tue Dec 06, 2022 7:28 amAlso, fun fact, you were the first person I ever factional killed as wolf.EnderWiggin wrote: ↑Tue Dec 06, 2022 7:26 am Okay I feel really low level dumb for making the dumb altf4 joke now.
<3EnderWiggin wrote: ↑Tue Dec 06, 2022 7:40 am You played a pretty great wolf game for your first time tho.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
That was back when I was putting all my effort into every game and was dying N1/N2 like every other game.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
DZ is probably town.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
We can only trust the truth. Everything else is a lie.
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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."EnderWiggin wrote: ↑Tue Dec 06, 2022 8:12 amI checked his shower and there wasn't fur.
What are your, let's say top five strongest reads and reasons for each?
- Dyslexicon
- <3
- Posts in topic: 109
- Posts: 12805
- Joined: Wed Apr 13, 2016 2:12 am
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Not an NPC, but thanks anywayMacDougall 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.

- Dyslexicon
- <3
- Posts in topic: 109
- Posts: 12805
- Joined: Wed Apr 13, 2016 2:12 am
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
[VOTE: Scotty] aubergineMichelle wrote: ↑Tue Dec 06, 2022 7:22 am[VOTE: Scotty] aubergineEnderWiggin wrote: ↑Tue Dec 06, 2022 6:19 am [VOTE: Scotty] aubergine
I repeat Michelle is town.
I am slowly turning into Brad.
- Dyslexicon
- <3
- Posts in topic: 109
- Posts: 12805
- Joined: Wed Apr 13, 2016 2:12 am
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Also, I was right in that Golden was …not town and fake news! =p
- Ranmilia
- Corrupt Union Official
- Posts in topic: 221
- Posts: 834
- Joined: Thu Aug 27, 2020 7:48 pm
- Location: Texas
- Gender: Female
- Preferred Pronouns: she/her/they
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Greetings, Brother Dizzy. What tidings bear thee? Thou hast received thine wish on the first day, the gilded head. What now?
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Reasons are for the weekend.Ranmilia wrote: ↑Tue Dec 06, 2022 8:20 amNo. 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."EnderWiggin wrote: ↑Tue Dec 06, 2022 8:12 amI checked his shower and there wasn't fur.
What are your, let's say top five strongest reads and reasons for each?
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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.
Scotty wolf
And there probably is a 5th strong read but I can't remember it.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Oh yeah right I said DZ was town.
That can go in there too.
That can go in there too.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
@RondoDimBuckle
You still gotta pretend to be in this game. You aren't dead yet.
You still gotta pretend to be in this game. You aren't dead yet.
We can only trust the truth. Everything else is a lie.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
No one else is posting so I claim this thread for all Ender-kind.
We can only trust the truth. Everything else is a lie.
- Dyslexicon
- <3
- Posts in topic: 109
- Posts: 12805
- Joined: Wed Apr 13, 2016 2:12 am
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
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.
- EnderWiggin
- Made Man
- Posts in topic: 240
- Posts: 6853
- Joined: Wed Jun 09, 2021 10:53 pm
- Gender: Male
- Preferred Pronouns: He/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
I appreciate your clout brother dizzy
We can only trust the truth. Everything else is a lie.