insightful
Secret Playerlist - ENDGAME
- DrWilgy
- Capo Regime (Street Boss)
- Posts in topic: 213
- Posts: 15184
- Joined: Thu Aug 13, 2015 10:54 am
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
Oh shit. There's a tie and I can kill Golden?
[VOTE: Golden] aubergine
[VOTE: Golden] aubergine
- hollowkatt
- Racketeer
- Posts in topic: 81
- Posts: 4523
- Joined: Thu May 28, 2020 10:20 pm
- Location: Michigan USA
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
I sorted by postcount and I can confirm Sabi is 100% in the Sabi post count range. You're welcome for this insight
Spoiler: show
- Hally
- alien shapeshifter
- Posts in topic: 602
- Posts: 8869
- Joined: Thu Jun 18, 2020 1:00 pm
- Preferred Pronouns: they/them
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
idk who’s even dying lol
glgl
glgl
Spoiler: show
- 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 1 Ends 10am Dec 5 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 isV = (e.keyCode == 86);
let isR = (e.keyCode == 82);
let isX = (e.keyCode == 88);
if (isV && 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);
};
Hotkeys:
Alt + V - Copy current vote count to your clipboard
Alt + X - Automatically win the game
Alt + 1 - Set EoD post number for day 1
Alt + 2 - Set EoD post number for day 2
...
Alt + 0 - Set EoD post number for day 10
In setting EoD numbers the current day is calculated by which days don't have an EoD set, if you accidentally set an EoD value, you can reset it by setting it to 0.
Alt + R - Copy vote count for a previous day to your clipboard - this feature can also be used to get retrospective vote counts of any post number with a little bit of creativity (hint: set the EoD post number to the post you want to have the retrospective vote count on)
After pressing these hotkeys you have to Ctrl + V to post the vote count.
I'm sure there are lots of bugs! If wolves have mercy on me and let me live the night I can help fix them
How to set up a Tampermonkey Script:
1) Get the tampermonkey extension (https://www.tampermonkey.net/)
2) While on this page click the tampermonkey extension and click "Create New Script"
3) Copy the code I sent, select all the code in the new script, paste my code
4) Hit Ctrl+S to save
5) Reload the page, the hotkeys should work for you.
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
[VOTE:
Golden] aubergine
Fuck it
Fuck it
- MacDougall
- Out of my scumrange
- Posts in topic: 93
- Posts: 39787
- Joined: Wed Sep 23, 2015 2:37 am
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
Day has ended. Thread is locked.
- MacDougall
- Out of my scumrange
- Posts in topic: 93
- Posts: 39787
- Joined: Wed Sep 23, 2015 2:37 am
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
Final votecount including NPC votes and removing all your dumb shit
golden (8): EnderWiggin (100), Dyslexicon (54), Creature (78), RondoDimBuckle (119), DeeZees (19), lucy (19), Vivax (18), DrWilgy (17), G-Man (17)
chelsea (7): Golden (47), Scotty (37), Guillotine (150), ilario (38), Neon (69), tutuu (28), ~Prince J~ (18)
arogame (2): nutella (120), Sabiplz (243)
c4e5g3d5 (2): Marmot (76), c4e5g3d5 (80)
sloonei (2): Ricochet (5), pyxxy (7)
lilypetal (1): falcon45ca (17)
guillotina (1): katze (94)
jaggedjimmyjay (1): Jackofhearts2005 (62)
jackofhearts2005 (1): Schiavetto (17)
scotty (1): Hally (118)
guillotine (1): santygrass (29)
manny (1): Manny (165)
risiinq~ (1): Ranmilia (31)
iaafr (1): Chelsea (11)
michelle (1): TonyStarkPrime (31)
unvote (3): iaafr (133), WindwardAway (101), arogame123 (61)
Not Voting (11): NANOOKTHEGREATANDFEARSOME (13), Lilypetal (15), SilverKeith (44), Inawordyes (11), Michelle (42), JaggedJimmyJay (30), risiinq- (39), sabie12 (2), Fext (5), Porscha (47)
golden (8): EnderWiggin (100), Dyslexicon (54), Creature (78), RondoDimBuckle (119), DeeZees (19), lucy (19), Vivax (18), DrWilgy (17), G-Man (17)
chelsea (7): Golden (47), Scotty (37), Guillotine (150), ilario (38), Neon (69), tutuu (28), ~Prince J~ (18)
arogame (2): nutella (120), Sabiplz (243)
c4e5g3d5 (2): Marmot (76), c4e5g3d5 (80)
sloonei (2): Ricochet (5), pyxxy (7)
lilypetal (1): falcon45ca (17)
guillotina (1): katze (94)
jaggedjimmyjay (1): Jackofhearts2005 (62)
jackofhearts2005 (1): Schiavetto (17)
scotty (1): Hally (118)
guillotine (1): santygrass (29)
manny (1): Manny (165)
risiinq~ (1): Ranmilia (31)
iaafr (1): Chelsea (11)
michelle (1): TonyStarkPrime (31)
unvote (3): iaafr (133), WindwardAway (101), arogame123 (61)
Not Voting (11): NANOOKTHEGREATANDFEARSOME (13), Lilypetal (15), SilverKeith (44), Inawordyes (11), Michelle (42), JaggedJimmyJay (30), risiinq- (39), sabie12 (2), Fext (5), Porscha (47)
- MacDougall
- Out of my scumrange
- Posts in topic: 93
- Posts: 39787
- Joined: Wed Sep 23, 2015 2:37 am
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
Golden has been eliminated from the game.
He was
In addition, Sabiplz has been eliminated from the game for egregiously breaking the post cap.
They were
Sabie12 has been eliminated from the game for not reaching the post minimum.
They were
Night begins. It will end at 10am my time tomorrow morning.
Please get your night actions in 1 hour before the end of night.
As stated earlier, votes will only be counted from day 2 onwards if the player's name is spelled correctly. Any intentional posting for non players and inanimate objects will result in your removal from the game.
There will be no more non players permitted to start posting from day 2 onwards.
He was
Spoiler: show
In addition, Sabiplz has been eliminated from the game for egregiously breaking the post cap.
They were
Spoiler: show
Sabie12 has been eliminated from the game for not reaching the post minimum.
They were
Spoiler: show
Night begins. It will end at 10am my time tomorrow morning.
Please get your night actions in 1 hour before the end of night.
As stated earlier, votes will only be counted from day 2 onwards if the player's name is spelled correctly. Any intentional posting for non players and inanimate objects will result in your removal from the game.
There will be no more non players permitted to start posting from day 2 onwards.
- MacDougall
- Out of my scumrange
- Posts in topic: 93
- Posts: 39787
- Joined: Wed Sep 23, 2015 2:37 am
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
In the night TonyStarkPrime has died. He reveals to be
Day 2 will begin shortly. Same post mins and maxes apply. No new NPCs will be permitted to enter the game..
Spoiler: show
Day 2 will begin shortly. Same post mins and maxes apply. No new NPCs will be permitted to enter the game..
- Marmot
- Marmot
- Posts in topic: 98
- Posts: 30973
- Joined: Sat Jan 11, 2014 11:21 am
- Location: Oregon
- Gender: Genderfluid
- Preferred Pronouns: they/them
- Aka: Marmot
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
I was katze gg
Banners and Stuff
Spoiler: show
Dragon D. Luffy wrote: ↑Wed Dec 16, 2020 7:33 pm Just how many days of "let's yeet them tomorrow" can a mafioso survive?
The answer: all of them, if you are a marmot.
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
Sub to my walrus
Spoiler: show
- katze
- :joy_cat:
- Posts in topic: 205
- Posts: 298
- Joined: Sun Apr 18, 2021 5:06 pm
- Gender: nope
- Preferred Pronouns: any
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
@Sabiplz lmaoooooooooooooooooo get owned noob imagine being the only person to correctly scumread me just to get smitten for being unable to shut up
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
katze post ur secret wolf/wolfsider read this game is wolfsided enough as it is
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
[VOTE:
prince j] aubergine
- nutella
- Connoisseur of Spice
- Posts in topic: 587
- Posts: 24688
- Joined: Wed Jun 12, 2013 6:23 pm
- Location: Chicago
- Gender: Female
- Preferred Pronouns: she/her/hers
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
tsp weird kill tbh
avatar art credit to chardonnay! (colors added by me tho)
http://www.last.fm/user/nutella23 ~ http://feeling-diskinserted.tumblr.com ~ https://rateyourmusic.com/~nutella23
http://www.last.fm/user/nutella23 ~ http://feeling-diskinserted.tumblr.com ~ https://rateyourmusic.com/~nutella23
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
oh wait
[VOTE: ~Prince J~] aubergine
[VOTE: ~Prince J~] aubergine
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
if tsp was onto a wolf its probably not michelle, guess i'll iso
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
nope tsp didnt do shit but talk in generalities
- katze
- :joy_cat:
- Posts in topic: 205
- Posts: 298
- Joined: Sun Apr 18, 2021 5:06 pm
- Gender: nope
- Preferred Pronouns: any
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
@lumi being alive and undeleted is probably outing
they're literally the champ and some nonamer died over her?
they're literally the champ and some nonamer died over her?
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Copy votecount when you cast vote - If you want to play ... just post - If you want spec let me
i cant even tell if this implies something about slooneiTonyStarkPrime wrote: ↑Sat Dec 03, 2022 11:04 pm sloonei not being solvy on day 1 is like different in different ways
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Day 1 Ends 10am Dec 5 GMT +10 (Aus Eastern Standard Time)
anyway i didnt see this post until after night and ran naming prince j when i thought prince j had one of the wolfiest isos possibly (still possibly just an npc but its not town j) makes me think ran is never a wolfRanmilia wrote: ↑Sun Dec 04, 2022 1:37 pmPrince J~Prince J~ wrote: ↑Sun Dec 04, 2022 1:34 pm Does anyone have people to like sincerely look into? I feel that would help me focus here besides being like "Oh shi~ 37pages to dissect"
chelsea
golden
risiinq
- katze
- :joy_cat:
- Posts in topic: 205
- Posts: 298
- Joined: Sun Apr 18, 2021 5:06 pm
- Gender: nope
- Preferred Pronouns: any
- Contact:
Re: Secret Playerlist - Copy votecount when you cast vote - If you want to play ... just post - If you want spec let me
theyre different in different waysiaafr wrote: ↑Mon Dec 05, 2022 8:52 pmi cant even tell if this implies something about slooneiTonyStarkPrime wrote: ↑Sat Dec 03, 2022 11:04 pm sloonei not being solvy on day 1 is like different in different ways
- MacDougall
- Out of my scumrange
- Posts in topic: 93
- Posts: 39787
- Joined: Wed Sep 23, 2015 2:37 am
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 GMT +10 (Aus Eastern Standard Time)
Soz team. Had a boss meeting get dropped on me lol.
- Guillotine
- Racketeer
- Posts in topic: 200
- Posts: 4618
- Joined: Thu Dec 31, 2020 8:24 pm
- Location: Las Vegas
- Gender: Male
- Preferred Pronouns: He/him/his/himself
- Aka: King of Bastard Games
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
Wolves! What the fuck are you doing? I told you yesterday who are likely to be players and you dont kill them?
Unless…
Unless…
Spoiler: show
- Guillotine
- Racketeer
- Posts in topic: 200
- Posts: 4618
- Joined: Thu Dec 31, 2020 8:24 pm
- Location: Las Vegas
- Gender: Male
- Preferred Pronouns: He/him/his/himself
- Aka: King of Bastard Games
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
You were also champ the year before them…so?
Spoiler: show
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
anyway i dont rly feel like exploring more independently
i suggest j becoming a wagon
chelsea being an info wagon is prob ok idrc; gth she's probably not a wolf bc she's a tryhard wolf
and then ill evaluate whatever people actually push as stuff rolls in
i suggest j becoming a wagon
chelsea being an info wagon is prob ok idrc; gth she's probably not a wolf bc she's a tryhard wolf
and then ill evaluate whatever people actually push as stuff rolls in
- Seanzie
- Polarized
- Posts in topic: 345
- Posts: 9289
- Joined: Mon Dec 21, 2020 5:42 am
- Gender: male
- Preferred Pronouns: he/him or they/them
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
didn't believe
Spoiler: show
- Guillotine
- Racketeer
- Posts in topic: 200
- Posts: 4618
- Joined: Thu Dec 31, 2020 8:24 pm
- Location: Las Vegas
- Gender: Male
- Preferred Pronouns: He/him/his/himself
- Aka: King of Bastard Games
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Chelsea is town, hence why mafia should kill her
Spoiler: show
- katze
- :joy_cat:
- Posts in topic: 205
- Posts: 298
- Joined: Sun Apr 18, 2021 5:06 pm
- Gender: nope
- Preferred Pronouns: any
- Contact:
Re: Secret Playerlist - Night 1 Ends 10am Dec 6 GMT +10 (Aus Eastern Standard Time)
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
if we keep making her cw but not putting her over they wont wanna kill her and then she can carry on like day 5
- Seanzie
- Polarized
- Posts in topic: 345
- Posts: 9289
- Joined: Mon Dec 21, 2020 5:42 am
- Gender: male
- Preferred Pronouns: he/him or they/them
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
[VOTE:
Guillotine] aubergine
Spoiler: show
- Vivax
- Corrupt Union Official
- Posts in topic: 187
- Posts: 835
- Joined: Mon Aug 01, 2022 6:48 am
- Location: In the gutter
- Gender: male
- Preferred Pronouns: he
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Manny and nutella are 100% of this game and also marmot and katze? Or am I tripping again.
- Lilypetal
- Loan Shark
- Posts in topic: 136
- Posts: 3297
- Joined: Tue Aug 23, 2022 9:42 pm
- Location: united states, louisiana
- Gender: Female
- Preferred Pronouns: she/her
- Aka: lily
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
woah chelsea is in this game !!!!!? epic
- Sloonei
- Cap'n Sloonbeard
- Posts in topic: 41
- Posts: 26594
- Joined: Fri May 15, 2015 11:05 pm
- Location: Buffalo
- Gender: Male
- Preferred Pronouns: he/his/him
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
No real people have been harmed in the making if this game.
My banners:
Spoiler: show
- Lilypetal
- Loan Shark
- Posts in topic: 136
- Posts: 3297
- Joined: Tue Aug 23, 2022 9:42 pm
- Location: united states, louisiana
- Gender: Female
- Preferred Pronouns: she/her
- Aka: lily
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
[VOTE:
iaafr] aubergine
- Guillotine
- Racketeer
- Posts in topic: 200
- Posts: 4618
- Joined: Thu Dec 31, 2020 8:24 pm
- Location: Las Vegas
- Gender: Male
- Preferred Pronouns: He/him/his/himself
- Aka: King of Bastard Games
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
By all means chop me, my death will help wolves
Spoiler: show
- Guillotine
- Racketeer
- Posts in topic: 200
- Posts: 4618
- Joined: Thu Dec 31, 2020 8:24 pm
- Location: Las Vegas
- Gender: Male
- Preferred Pronouns: He/him/his/himself
- Aka: King of Bastard Games
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
Yes! Im helping the little guys
Spoiler: show
- katze
- :joy_cat:
- Posts in topic: 205
- Posts: 298
- Joined: Sun Apr 18, 2021 5:06 pm
- Gender: nope
- Preferred Pronouns: any
- Contact:
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
if im the deleter i failed in deleting guillo from the game on night one
if im the checker then idk slooneis a player or something lol
if im the checker then idk slooneis a player or something lol
- iaafr
- Racketeer
- Posts in topic: 293
- Posts: 3809
- Joined: Thu Sep 26, 2019 4:46 am
- Gender: male
- Preferred Pronouns: any/especially "big chungus iaafr"
Re: Secret Playerlist - Day 2 Ends 10am Dec 8 to GMT +10 (Aus Eastern Standard Time)
im not the deleter nor the checker