forum

Newbie Mafia 2! [Mafia Win!]

posted
Total Posts
635
show more
anonymous_old
Here's what I get with my coding so far:
:!g++ -g mafia.cpp && ./a.out
Setup:
Mafia:
Normal: 2
Role blocker: 0
Town:
Normal: 9
Doctor: 0
Mafia wins 64.790765% of the time with lynch on Day 1
Mafia wins 78.437500% of the time with no lynch on Day 1
Still need to code the Doctor in and the Role Blocker too. Cop is ignored and I probably won't code him because he doesn't really do anything to sway the statistics except in claims and investigations and things, which are human factors.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old
Final results;
:!for players in MRCDTTTTT MRTTTTTTT MMCTTTTTT MMDTTTTTT; do ./a.out $players; echo; done
Setup:
Mafia:
Normal: 1
Role blocker: 1
Town:
Normal: 6
Doctor: 1

Mafia wins 57.069781% of the time with lynch on Day 1
Mafia wins 65.034042% of the time with no lynch on Day 1

Setup:
Mafia:
Normal: 1
Role blocker: 1
Town:
Normal: 7
Doctor: 0

Mafia wins 70.158730% of the time with lynch on Day 1
Mafia wins 84.375000% of the time with no lynch on Day 1

Setup:
Mafia:
Normal: 2
Role blocker: 0
Town:
Normal: 7
Doctor: 0

Mafia wins 70.158730% of the time with lynch on Day 1
Mafia wins 84.375000% of the time with no lynch on Day 1

Setup:
Mafia:
Normal: 2
Role blocker: 0
Town:
Normal: 6
Doctor: 1

Mafia wins 54.693878% of the time with lynch on Day 1
Mafia wins 61.345564% of the time with no lynch on Day 1

So I guess it is bad for us not to lynch on the first day.

Source code:
#include <cstdio>

struct Players
{
enum { NumRoles = 4, NumMafiaRoles = 2, NumTownRoles = 2 };

union
{
struct
{
int mafiaNormal, mafiaRoleBlocker;
int townNormal, townDoctor;
};

struct
{
int mafiaRoles[NumMafiaRoles];
int townRoles[NumTownRoles];
};

int roles[NumRoles];
};

Players()
{
for(int i = 0; i < NumRoles; ++i)
roles[i] = 0;
}

int town() const
{
return townNormal + townDoctor;
}

int mafia() const
{
return mafiaNormal + mafiaRoleBlocker;
}

int total() const
{
return town() + mafia();
}
};

/* 1 = Mafia win; 0 = Town win. */
double checkPossibilities(Players players, bool lynch = true)
{
if(players.town() <= players.mafia())
return 1;

if(players.mafia() == 0)
return 0;

if(lynch)
{
double prob = 0;

for(int role = 0; role < Players::NumRoles; ++role)
{
if(players.roles[role] == 0)
continue;

double weight = (double)players.roles[role] / players.total();

Players newPlayers = players;
--newPlayers.roles[role];

prob += weight * checkPossibilities(newPlayers, false);
}

return prob;
}

/* Handle kills. */
double prob = 0;

for(int townRole = 0; townRole < Players::NumTownRoles; ++townRole)
{
if(players.townRoles[townRole] == 0)
continue;

double weight = (double)players.townRoles[townRole] / players.town();

if(townRole != 1) /* Doctor can't defend himself. */
{
weight *= 1 - (double)players.townDoctor / (players.total() - 1) /* Doctor(s) defends at random. */
* (1 - (double)players.mafiaRoleBlocker / (players.town())); /* Role blocker(s) block Doctor at random. */
}

Players newPlayers = players;
--newPlayers.townRoles[townRole];

prob += weight * checkPossibilities(newPlayers, true);
}

return prob;
}

Players playersFromString(const char *playerString)
{
Players players;

for(/* */; *playerString; ++playerString)
{
switch(*playerString)
{
case 'T':
case 'C':
++players.townNormal;
break;

case 'D':
++players.townDoctor;
break;

case 'M':
++players.mafiaNormal;
break;

case 'R':
++players.mafiaRoleBlocker;
break;
}
}

return players;
}

int main(int argc, char **argv)
{
if(argc != 2)
{
fprintf(stderr, "Argument must be string of players (_M_afia, _R_ole blocker, _T_own, _C_op, _D_octor) e.g. MDTTTTTTT\n");
return 1;
}

Players players = playersFromString(argv[1]);

printf("Setup:\n");

printf("\tMafia:\n");
printf("\t\tNormal: %d\n", players.mafiaNormal);
printf("\t\tRole blocker: %d\n", players.mafiaRoleBlocker);

printf("\tTown:\n");
printf("\t\tNormal: %d\n", players.townNormal);
printf("\t\tDoctor: %d\n", players.townDoctor);

printf("\n");

printf("Mafia wins %f%% of the time with lynch on Day 1\n", checkPossibilities(players, true) * 100);
printf("Mafia wins %f%% of the time with no lynch on Day 1\n", checkPossibilities(players, false) * 100);

return 0;
}
BagelBob_old

strager wrote:

nardi11011 wrote:

One thing I don't get: why did strager reveal his role instead of just saying "I was looking at the PM in the OP and was just wondering"?
Because I don't like lying.
I call BS, you meant to claim your roll. I was in the IRC with you before the game started. You could have sent your question as a PM to Suburu. You could have easily said that you were just curious. While lies generally do not help the town, the doctor role-claiming on the first day is worse.

Also, why are you ignoring these two posts?

Neither of those two pieces of code deals with our set-up. Why are you wasting time with things that don't apply? You can code all day, but when you get down to it, we aren't lynching someone at random. All that code does is consume time and block discussion.
Derekku
strager, are you NOT fucking listening? There's no point in coding over 9000 lines of code. No lynch day 1 = Free kill for mafia.

Should we also NOT lynch day 2? Day 3? :evil:

Like SFG said, I'm starting to wonder about you, strager :|
anonymous_old

Derekku Chan wrote:

strager, are you NOT fucking listening? There's no point in coding over 9000 lines of code. No lynch day 1 = Free kill for mafia.

Should we also NOT lynch day 2? Day 3? :evil:

Like SFG said, I'm starting to wonder about you, strager :|
Read what I wrote:

strager wrote:

Saturos-fangirl wrote:

if we don't lynch today, the mafia get a free kill. im starting to really wonder about you, strager.
That may be true, but with eight players total and one Mafia you'll observe:
:!g++ -g mafia.cpp && ./a.out
Setup:
Mafia:
Normal: 1
Role blocker: 0
Town:
Normal: 7
Doctor: 0
Mafia wins 54.687500% of the time with lynch on Day 1
Mafia wins 45.714286% of the time with no lynch on Day 1
BagelBob_old
What you seem to be missing is
A) We have nine people and
B) we aren't going to lynch at random
Echo
No lynch d1 is disadvantageous for town. Plus, a lynch also shows voting patterns, which helps later on in the game to identify mafia. Please don't post pages of code, no one's going to read it anyway.
Derekku
strager, you don't seem to realize that in every setup for this game, there are TWO mafia. Unless you think that one of them is going to kill the other at night, then I don't know what the hell you're trying to get at.
anonymous_old

BagelBob wrote:

strager wrote:

nardi11011 wrote:

One thing I don't get: why did strager reveal his role instead of just saying "I was looking at the PM in the OP and was just wondering"?
Because I don't like lying.
I call BS, you meant to claim your roll. I was in the IRC with you before the game started. You could have sent your question as a PM to Suburu. You could have easily said that you were just curious. While lies generally do not help the town, the doctor role-claiming on the first day is worse.
One, before the game started, I didn't have the Doctor PM.
Two, if I lied, I would have to stay with that lie. I would rather stay with the truth.
Three, claiming Doctor was an accident. I've said this several times I think.

BagelBob wrote:

Also, why are you ignoring these two posts?
The second post I may have missed. I have nothing to comment on it though.
The first post I thought I responded to, but apparently I didn't. Here's my response:

BagelBob wrote:

From what I see in that post, I can only think that you're voting for Echo because Echo was attacking you. Is this correct? Is there anything else that I'm missing?
That is correct.

BagelBob wrote:

And again, Why are Derekku and 0_o above 50? Why are the rest of us below 50? Was that whole chart just BS?
It was relative suspicion at the time. The list can be disregarded now as my opinion has changed, though.

BagelBob wrote:

But you didn't leave them out, and now you ought to explain what you said. Who mixed up a sequence of events and which sequence of events was it? What is it that you misunderstood? Do you need clarification on some matter?
Echo misunderstood. He thought I was saying he thought I was a Mafia because he voted for me, and this is what he posted. What I had THOUGHT he posted was that I should tell him why he voted for me, or something, which was really confusing.

When I finally posted that, though, I DID understand what he meant. The few lines which probably confused people were saying I at first DIDN'T understand but now (and at the time I hit the submit button for that post) I DID.

BagelBob wrote:

This section is just a re-statement. I don't see any explanations, nor a need for any. Of course Echo thinks that you're a mafia. My first clue was the case, my second was the vote. I know you didn't think that Echo thought you were a vanilla townie. There was a whole section about whether or not you were fake-claiming as a townie, with Echo definitively of the mind that that would be a bad idea. You're saying that to make it look like Echo is lynching a townie. You should have at least said doctor, since that's what you're claiming to be.
Again, I wasn't trying to explain anything. I WAS re-stating.

BagelBob wrote:

A quick-lynch, such as the one you described, would generally be an obvious scum-tell.
Circular reasoning?

BagelBob wrote:

Really, adam and Echo bandwagoning? Adam was the first one to vote for you, and Echo has been making the case.
I never said that. The exact thing you quoted:

strager wrote:

All I meant to say there that one or two of adam, Echo, nardi, and SFG were bandwagonning as a Mafia, not all of them.

BagelBob wrote:

your junk about random voting is this:
In chronological order:

strager wrote:

In the first case I deduce one of these to be a Mafia: adam, SFG, nardi
In the third case I deduce these are probably NOT Mafia (because they didn't jump on the bandwagon): Derekku, 0_o

For the first case it seems as if adam's vote was random and SFG's vote was only somewhat random, as was nardi's. So my suspicions for the latter two are above my suspicions for adam. From that I really can't say much more though.

For the third case, 0_o seems to be really trying to defend me which either means he's deceitful (and will kill me at night) or genuinely trying to help the town. I'm not foolish enough to denounce the former but based on my observation above he may be a Townie more than a Mafia.
I really don't know what to think of Derekku because he hasn't been doing much from what I can see, really. He could be bad at analysis, not have information to discuss, or is smart enough not to talk because he may leak information. So ... not really sure.

BagelBob wrote:

In addition, did you mean that adam, SFG, and nardii's votes looked like bandwagon votes? You state that you think 0_o and Derekuu were not on the bandwagon, but then you throw junk about random voting. Adam's vote started out random, but he kept posting and saying that he was reading the thread and agreed with Echo's logic.

strager wrote:

BagelBob wrote:

You state that you think 0_o and Derekuu were not on the bandwagon, but then you throw junk about random voting.
Where is this "junk about random voting?"
The random voting part was for the first case, and the 0_o and Derekku part was for the third case.

----------
(Back to the original post.)

BagelBob wrote:

Neither of those two pieces of code deals with our set-up. Why are you wasting time with things that don't apply? You can code all day, but when you get down to it, we aren't lynching someone at random.
On the first day the first lynch is probably random anyway.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
Derekku

strager wrote:

Also, some games only have one Mafia and some have three or more. (I know this specific game has two Mafia, but the game of Mafia doesn't have that ultimate rule. I was stating an example earlier.)
Then what's the fucking point of going through all of this? This game of mafia has TWO people as mafia. =|

EDIT: It should be common sense that it's a bad choice. =)
0_o
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

0_o wrote:

I think he was just pointing out that there are situations where not lynching would be in our best interests (like if there was one mafia), and he did these calculations to see if this also applied to our situation. And now we know it doesn't.

Chill out guys :P
Right.

Derekku Chan wrote:

strager wrote:

Also, some games only have one Mafia and some have three or more. (I know this specific game has two Mafia, but the game of Mafia doesn't have that ultimate rule. I was stating an example earlier.)
Then what's the fucking point of going through all of this? This game of mafia has TWO people as mafia. =|

EDIT: It should be common sense that it's a bad choice. =)
Observe my post with my final results. >_>
Derekku
In that one situation with 1 mafia where it would be better to not lynch day 1, it doesn't make sense to me. How would that work? If you don't lynch day 1, the mafia gets a free kill. At least by lynching day 1 you have a chance of killing the mafia.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old
I feel obligated to post this, hopefully to clarify what some players may know from experience or whatever:

#forumshit wrote:

20:56 < BagelBob> strager
20:57 < strager> yo
20:57 < BagelBob> the reason that it turns out that no lynch is good for your 1 maf 7 town
20:57 < BagelBob> is because it's an even number of people
20:57 < strager> I know
20:57 < strager> But I know that only for one-Mafia games.
20:57 < strager> I wanted to check for OUR games.
20:57 < BagelBob> we have an odd number of people
BagelBob_old

strager wrote:

I feel obligated to post this, hopefully to clarify what some players may know from experience or whatever:

#forumshit wrote:

20:56 < BagelBob> strager
20:57 < strager> yo
20:57 < BagelBob> the reason that it turns out that no lynch is good for your 1 maf 7 town
20:57 < BagelBob> is because it's an even number of people
20:57 < strager> I know
20:57 < strager> But I know that only for one-Mafia games.
20:57 < strager> I wanted to check for OUR games.
20:57 < BagelBob> we have an odd number of people
Right, because if we did have 1 scum and 7 town, if we lynced every day, lylo would be 3 town 1 scum, instead of 2 town 1 scum. What you keep posting is an 8 person game. We do not have an 8 person game. Stop posting code.
0_o
This map has been deleted on the request of its creator. It is no longer available.
Yuukari-Banteki

0_o wrote:

EDIT: and if you think about it, his theory on strager's bandwagon (Echo, SFG, adam, nardi) does make some sense. Wouldn't you think a mafia member would jump at the chance to lynch the potential doctor? I think it's very likely that both of the mafia members are in that group.
this does make sense, im going to go back to voting on adam like i should have been doing all along. 67% chance of hitting a mafia sounds great to me, and since im pretty sure Echo is vanilla, that means adam and nardi are the mafia members.

tl;dr vote adam, FOS nardi
Topic Starter
LadySuburu
Votecount 5:

strager - 3 (adam, nardi, Echo)
adam - 2 (0_o, SFG)
SFG - 1 (BagelBob)
nardi - 1 (Derekku)

Not voting: 2 - (Olinad, strager)

Fixed, and now when I copypasta it'll be fixed.
anonymous_old
K moar:

#forumshit wrote:

20:21 < strager> I try to help you guys but you discredit me entirely
20:21 < strager> Because it's "common sense"
20:23 < Derekku_Chan> I just don't understand
20:23 < Derekku_Chan> What you were trying to do
20:23 < Derekku_Chan> :/
20:24 < strager|irc> viewtopic.php?p=142855#p142855
20:24 < strager|irc> Read the first white box
20:24 < Derekku_Chan> Yes, I see
20:24 < strager|irc> and the bold after that
20:24 < Derekku_Chan> Yes
20:25 < Derekku_Chan> I just don't get what the point of coding it to check it was
20:25 < Derekku_Chan> >_>
20:25 < strager|irc> viewtopic.php?p=142843#p142843
20:25 < strager|irc> it is POSSIBLE for SOME GAMES for "common sense" to be wrong
20:25 < strager|irc> I was checking if that was the case for THIS GAME.
20:26 < Derekku_Chan> but still, it's a free kill for mafia
20:26 < Derekku_Chan> so i don't get the point
20:26 < Derekku_Chan> lynch or be killed, that's how the game works xd
20:27 < strager|irc> STATISTICS.
20:27 < strager|irc> 20:25 < strager|irc> it is POSSIBLE for SOME GAMES for "common sense" to be wrong
20:27 < Derekku_Chan> Whatever
20:27 < Derekku_Chan> Sorry to upset you
20:27 < strager|irc> And thus statistically it is in the best interest of the town to not vote for the first day
20:28 < strager|irc> in that situation
20:28 < Derekku_Chan> Even though that makes no sense to me
20:28 < Derekku_Chan> :<
20:28 < strager|irc> Then stop posting about things you don't understand
20:28 < strager|irc> Well
20:28 < strager|irc> Stop discrediting things you don't understand.
20:32 < Derekku_Chan> Well, you were supposed to explain it :>
20:33 < strager|irc> I DID.
20:33 < strager|irc> Unless you wanted to know how it works
20:33 < Derekku_Chan> Pretty much
20:33 < strager|irc> In which case I never got that hint.
20:33 < strager|irc> Post asking
20:35 < Derekku_Chan> post'd
20:35 < strager|irc> Coding the program to tell how it thinks
20:35 < strager|irc> atn
20:35 < strager|irc> atm
20:35 < Derekku_Chan> xd

[later]

21:15 < Derekku_Chan> OH
21:15 < Derekku_Chan> that's what you mean
21:16 < Derekku_Chan> but still, at least you'd have a chance of killing someone if you lynched day 1
21:16 < Derekku_Chan> so it really doesnt matter xd
21:16 < Derekku_Chan> killing mafia*
21:16 < strager|irc> Derekku_Chan: Yes
21:16 < strager|irc> Derekku_Chan: That's handled in the probability
Unrelated chat removed. If you want the logs verbatum just ask.
anonymous_old

BagelBob wrote:

strager wrote:

I feel obligated to post this, hopefully to clarify what some players may know from experience or whatever:

#forumshit wrote:

20:56 < BagelBob> strager
20:57 < strager> yo
20:57 < BagelBob> the reason that it turns out that no lynch is good for your 1 maf 7 town
20:57 < BagelBob> is because it's an even number of people
20:57 < strager> I know
20:57 < strager> But I know that only for one-Mafia games.
20:57 < strager> I wanted to check for OUR games.
20:57 < BagelBob> we have an odd number of people
Right, because if we did have 1 scum and 7 town, if we lynced every day, lylo would be 3 town 1 scum, instead of 2 town 1 scum. What you keep posting is an 8 person game. We do not have an 8 person game. Stop posting code.
My final results are based on the four possible game setups.

0_o wrote:

Actually, I think your numbers may be off strager, if you scroll down here http://en.wikipedia.org/wiki?title=Talk ... party_game)
it says that 9 players with 2 mafia, the town has approximately 21.5% shot at winning.
With 8 players and 2 mafia, it's 29.8%.

So this means that from a statistical point of view, our odds in fact do go up if we choose not to lynch, since it will make it an even number of players (which is conformed to have better odds)
I personally trust my code more than such low percentages. That'd be a VERY unbalanced game.

EDIT: Actually I don't trust my code for the roleblocker part but I'm not pro at statistics there.
0_o
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

0_o wrote:

Actually, I think your numbers may be off strager, if you scroll down here http://en.wikipedia.org/wiki?title=Talk ... party_game)
it says that 9 players with 2 mafia, the town has approximately 21.5% shot at winning.
With 8 players and 2 mafia, it's 29.8%.
Actually it says "9 villagers and 2 mafia" for 21.5%, not 9 players.

According to that page:
7 villagers and 2 mafia: 15.6% Town win
6 villagers and 2 mafia: 22.8% Town win

The jump up is pretty significant still, but again, I don't trust it.

EDIT: (Just saw 0_o's last post.) Hmm, I see. I'll look into my program more.
adam2046
I do not understand why I am the mafia if Echo is a vanilla, Nardi even less (since I know nothing about him and never see him post much)

Facts and figures please?
BagelBob_old

strager wrote:

One, before the game started, I didn't have the Doctor PM.
Two, if I lied, I would have to stay with that lie. I would rather stay with the truth.
Three, claiming Doctor was an accident. I've said this several times I think.
To put this simply, I don't believe you.



strager wrote:

BagelBob wrote:

Also, why are you ignoring these two posts?
The second post I may have missed. I have nothing to comment on it though.
You don't care that you said nardi would have been suspicious if he defended himself in advance, when you defended yourself in advance?



strager wrote:

The first post I thought I responded to, but apparently I didn't. Here's my response:

BagelBob wrote:

From what I see in that post, I can only think that you're voting for Echo because Echo was attacking you. Is this correct? Is there anything else that I'm missing?
That is correct.

BagelBob wrote:

And again, Why are Derekku and 0_o above 50? Why are the rest of us below 50? Was that whole chart just BS?
It was relative suspicion at the time. The list can be disregarded now as my opinion has changed, though.
And again,

BagelBob wrote:

And again, Why are Derekku and 0_o above 50? Why are the rest of us below 50? Was that whole chart just BS?


strager wrote:

BagelBob wrote:

This section is just a re-statement. I don't see any explanations, nor a need for any. Of course Echo thinks that you're a mafia. My first clue was the case, my second was the vote. I know you didn't think that Echo thought you were a vanilla townie. There was a whole section about whether or not you were fake-claiming as a townie, with Echo definitively of the mind that that would be a bad idea. You're saying that to make it look like Echo is lynching a townie. You should have at least said doctor, since that's what you're claiming to be.
Again, I wasn't trying to explain anything. I WAS re-stating.

strager wrote:

Yes, I was explaining why I said something, because Echo asked for an explanation (Echo's quote expanded for clarification):
Would you care to contradict yourself again?



strager wrote:

BagelBob wrote:

A quick-lynch, such as the one you described, would generally be an obvious scum-tell.
Circular reasoning?
It would be circular reasoning if I was saying he was scum because he didn't quick lynch.
I'm saying "If he quick-lynches, then he's probably a scum." This is logical because a townie wouldn't quick-lynch someone who claimed doctor.
You're saying that I'm saying "No one quick-lynched, thus they must not be scum because scum would quick-lynch" which is circular reasoning.



strager wrote:

BagelBob wrote:

Really, adam and Echo bandwagoning? Adam was the first one to vote for you, and Echo has been making the case.
I never said that. The exact thing you quoted:

strager wrote:

All I meant to say there that one or two of adam, Echo, nardi, and SFG were bandwagonning as a Mafia, not all of them.
Your exact quote says that one or two of (names) was bandwagoning. Adam and Echo are two of those names. That statement includes an accusation of adam and Echo bandwagoning.



strager wrote:

BagelBob wrote:

your junk about random voting is this:
In chronological order:

strager wrote:

In the first case I deduce one of these to be a Mafia: adam, SFG, nardi
In the third case I deduce these are probably NOT Mafia (because they didn't jump on the bandwagon): Derekku, 0_o

For the first case it seems as if adam's vote was random and SFG's vote was only somewhat random, as was nardi's. So my suspicions for the latter two are above my suspicions for adam. From that I really can't say much more though.

For the third case, 0_o seems to be really trying to defend me which either means he's deceitful (and will kill me at night) or genuinely trying to help the town. I'm not foolish enough to denounce the former but based on my observation above he may be a Townie more than a Mafia.
I really don't know what to think of Derekku because he hasn't been doing much from what I can see, really. He could be bad at analysis, not have information to discuss, or is smart enough not to talk because he may leak information. So ... not really sure.

BagelBob wrote:

In addition, did you mean that adam, SFG, and nardii's votes looked like bandwagon votes? You state that you think 0_o and Derekuu were not on the bandwagon, but then you throw junk about random voting. Adam's vote started out random, but he kept posting and saying that he was reading the thread and agreed with Echo's logic.

strager wrote:

BagelBob wrote:

You state that you think 0_o and Derekuu were not on the bandwagon, but then you throw junk about random voting.
Where is this "junk about random voting?"
The random voting part was for the first case, and the 0_o and Derekku part was for the third case.
What is this? You asked what the junk about random voting was and I pasted it. Why is this here? What are you trying to say with it?



strager wrote:

On the first day the first lynch is probably random anyway.
It might be in some games, but in this game, you claimed doctor, which greatly changes things.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
0_o

adam2046 wrote:

I do not understand why I am the mafia if Echo is a vanilla, Nardi even less (since I know nothing about him and never see him post much)

Facts and figures please?
I assume you are referring to this:

Saturos-fangirl wrote:

0_o wrote:

EDIT: and if you think about it, his theory on strager's bandwagon (Echo, SFG, adam, nardi) does make some sense. Wouldn't you think a mafia member would jump at the chance to lynch the potential doctor? I think it's very likely that both of the mafia members are in that group.
this does make sense, im going to go back to voting on adam like i should have been doing all along. 67% chance of hitting a mafia sounds great to me, and since im pretty sure Echo is vanilla, that means adam and nardi are the mafia members.

tl;dr vote adam, FOS nardi
If we are going by the mentioned bandwagon theory, SFG knows (or says) she isn't mafia, and if she thinks Echo is a vanilla, then that leaves both you and nardi as the potential mafia, since no one else jumped in on the chance to lynch strager.
anonymous_old
I'm going to mostly not comment on BagelBob's post because me explaining why I said something would be restating what I already said, then he'll just ask why I said that again.
BagelBob_old
I'm wondering how they came up with that table of numbers. With 5 players and 1 mafia, you've got an 80% chance of hitting town on day 1 and 66% of hitting town on day 2. That gives ~47% chance of hitting scum if you lynch randomly. I can't understand.
Echo
This map has been deleted on the request of its creator. It is no longer available.
Echo
This map has been deleted on the request of its creator. It is no longer available.
BagelBob_old
For one, I wasn't talking about our game on the IRC. I was telling strager that his comments didn't apply to our game.
For another, I refuse to read strager and derekuu's conversation on the IRC.
anonymous_old

Echo wrote:

Even if strager is innocent, the mafia wouldn't jump on since that'd be a huge scum tell.
So you're saying whoever DIDN'T jump on is a Mafia?
BagelBob_old
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
Topic Starter
LadySuburu
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

Echo wrote:

Three things only.

0_o wrote:

EDIT: and if you think about it, his theory on strager's bandwagon (Echo, SFG, adam, nardi) does make some sense. Wouldn't you think a mafia member would jump at the chance to lynch the potential doctor? I think it's very likely that both of the mafia members are in that group.
I already answered this back here when SFG asked the same question.
I'm not quite sure how that answers the question. Maybe I'm reading the other post wrong or am looking for the wrong thing.

Echo wrote:

And strager/derekku/bagel are talking about the game in IRC, which is against the rules (simple "posted" lines are ok, I guess, but entire convos are a big no-no. ALL proper conversation MUST be in this thread for all to see).
It was pretty much a mistake and it didn't really do anything other than urge Derekku to post asking HOW my program worked, and him saying "oh okay" in IRC. For BagelBob's mini-convo I was just pointing something out which may have cleared up some confusion.

Echo wrote:

edit: I see Suburu has modified the rules slightly, but I still have no guarantee that that is all they talked about in IRC. Post all logs please preferably as an attachment.
I assume you don't want the entire .log file? I'll crop out the part with Derekku and I talking (with unrelated lines included, and a bit before and after) and post in a bit.

Echo wrote:

And finally NO MORE PERCENTAGES they are completely irrelevant
I'll post whatever I want.
0_o

Echo wrote:

If strager is mafia, then of course we won't have the mafia jumping on.
True, this only applies if you believe strager is innocent. And I do.

strager wrote:

Even if strager is innocent, the mafia wouldn't jump on since that'd be a huge scum tell.
Well in that case no one is gonna be lynched since anyone who delivers the final blow is gonna be considered mafia :|
anonymous_old

0_o wrote:

Echo wrote:

If strager is mafia, then of course we won't have the mafia jumping on.
True, this only applies if you believe strager is innocent. And I do.
wat

(Bold added.)

0_o wrote:

strager wrote:

Even if strager is innocent, the mafia wouldn't jump on since that'd be a huge scum tell.
Well in that case no one is gonna be lynched since anyone who delivers the final blow is gonna be considered mafia :|
0_o has a point here. Being the last to vote may be a scum tell but that doesn't mean that's the only thing it could be. There's even a chance no Mafia is voting for the person (in case they are a Mafia), but that wasn't the case earlier with me being voted to L-1.
BagelBob_old
With SFG having switched to believing strager(at least for now), there aren't enough votes to lynch strager.
Regarding the decision between adam and nardi:

Adam has been here since the beginning of the game. He first voted for strager in a random vote, but then when strager started to act suspicious, he stated his thoughts and has since continued posting and keeping up with the game.

nardi, on the other hand, showed up for a little bit and voted strager without adding anything new. He has since posted a few times, but mostly just says he doesn't know what to think, that he's in the middle of the road, despite still voting for strager.
Thus, for bandwagoning and lurking, I

Unvote: strager
Vote: nardi
Echo

0_o wrote:

strager wrote:

Even if strager is innocent, the mafia wouldn't jump on since that'd be a huge scum tell.
Well in that case no one is gonna be lynched since anyone who delivers the final blow is gonna be considered mafia :|
Nope. It depends on the context; if the last person votes with a valid reason, then it's sweet.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
Echo
Anyone could still be mafia. But if they have a valid reason, then they probably aren't mafia.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
BagelBob_old
Yes, otherwise it's bandwagoning or a random vote.
0_o

Echo wrote:

0_o wrote:

strager wrote:

Even if strager is innocent, the mafia wouldn't jump on since that'd be a huge scum tell.
Well in that case no one is gonna be lynched since anyone who delivers the final blow is gonna be considered mafia :|
Nope. It depends on the context; if the last person votes with a valid reason, then it's sweet.
So.. you are saying that the mafia is incapable of coming up with a valid reason to lynch someone?

EDIT: also Bagelbob has a good point with nardi, unless he posts something convincing soon my vote's gonna switch...
Yuukari-Banteki
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

Saturos-fangirl wrote:

to other M2 players: this is the last day before we need to have a decision. if we do not decide, the mafia will get a free nightkill while we dither around not lynching people. Change your vote before time runs out~ (wow that sounded DOOM-y lol)
Due to Olinad being replaced the voting period will likely be extended.
Yuukari-Banteki
we dont know that yet and better safe than sorry imho
0_o
Meh, I'm good with nardi.

unvote
vote nardi
anonymous_old
Woah there.

Hasty.

I have noticed nardi in the "Users browsing the forum" at the bottom on several occasions and he hasn't posted. So here's what I think.

If he is a Townie, he's going a pretty horrible job at "blending in." He stands out as a lurker and doesn't even attempt to post anything meaningful.
If he is a Mafia, he's trying to sabotage the game by the same cause so Mafia loses. That's Pretty Gay (tm).

I really doubt a Mafia would sabotage his buddy like that so I'm leaning toward the possibility of him being a Townie.

Yes, I'm defending nardi, but it's not like he's here so he can to defend himself anyway. =\

EDIT: [strike] and added "to" to make sentence more understandable.
0_o
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

0_o wrote:

From what I remember looking through the first WW game, when adam and yoshikart were mafia, adam was on L-1 and yoshikart didn't say a thing. In fact, every post that he made was either a vote or a vote change, with little to no explaination. So don't think that being quiet means they are innocent; they are just as likely to be a wolf who is afraid of posting something suspicious.
Interesting. I didn't mean to imply that not talking removed suspicion but you have a point about not wanting to slip up in a post. Caution is a bad thing, I guess?

0_o wrote:

That, and throwing someone on L-2 is a pretty effective way of getting them to speak up ;)
So that's what you did with me? xD
0_o
This map has been deleted on the request of its creator. It is no longer available.
Derekku
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

Derekku Chan wrote:

0_o wrote:

That, and throwing someone on L-2 is a pretty effective way of getting them to speak up ;)
nardi is on L-1 ;/
Derekku, 0_o, SFG, BagelBob.

Yeah, L-1.
BagelBob_old

strager wrote:

Woah there.

Hasty.

I have noticed nardi in the "Users browsing the forum" at the bottom on several occasions and he hasn't posted. So here's what I think.

If he is a Townie, he's going a pretty horrible job at "blending in." He stands out as a lurker and doesn't even attempt to post anything meaningful.
If he is a Mafia, he's trying to sabotage the game by the same cause so Mafia loses. That's Pretty Gay (tm).

I really doubt a Mafia would sabotage his buddy like that so I'm leaning toward the possibility of him being a Townie.

Yes, I'm defending nardi, but it's not like he's here so he can to defend himself anyway. =\

EDIT: [strike] and added "to" to make sentence more understandable.
When you say "his buddy" who are you referring to? (nardi is "a Mafia" in that sentence, yes?)

Also, I don't want to lynch him before he gets a chance to speak so
Unvote Nardi
Echo

0_o wrote:

So.. you are saying that the mafia is incapable of coming up with a valid reason to lynch someone?
That is exactly what I'm saying. There should be no evidence in posts against townies, which means mafia won't be able to bring up a valid reason to lynch a townie.

lynch strager plox vote strager if i'm not voting him already >.> (can't keep up with my unvotes)
0_o

Echo wrote:

0_o wrote:

So.. you are saying that the mafia is incapable of coming up with a valid reason to lynch someone?
That is exactly what I'm saying. There should be no evidence in posts against townies, which means mafia won't be able to bring up a valid reason to lynch a townie.
Why not? Humans come up with "evidence" against other humans to lynch them, the only difference is that the mafia actually knows that they are lynching a human.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
BagelBob_old
strager, when you say "his buddy" who are you referring to?
anonymous_old

BagelBob wrote:

strager wrote:

Woah there.

Hasty.

I have noticed nardi in the "Users browsing the forum" at the bottom on several occasions and he hasn't posted. So here's what I think.

If he is a Townie, he's going a pretty horrible job at "blending in." He stands out as a lurker and doesn't even attempt to post anything meaningful.
If he is a Mafia, he's trying to sabotage the game by the same cause so Mafia loses. That's Pretty Gay (tm).

I really doubt a Mafia would sabotage his buddy like that so I'm leaning toward the possibility of him being a Townie.

Yes, I'm defending nardi, but it's not like he's here so he can to defend himself anyway. =\

EDIT: [strike] and added "to" to make sentence more understandable.
When you say "his buddy" who are you referring to? (nardi is "a Mafia" in that sentence, yes?)
"His buddy" being the other Mafia.
BagelBob_old
I'm sorry, I read that wrong.

"If he is a Mafia, he's trying to sabotage the game by the same cause so Mafia loses."
This reasoning escapes me so much, I must have changed Mafia loses to Town loses just to keep my sanity.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
Echo

strager/agreeing with 0_o's post wrote:

Indeed. Echo himself used my mistakes as evidence that I am a Mafia, which contradicts what he says here.
Um lol? You are mafia. No contradiction whatsoever.

Whereas I've conjured up a single sentence with enough evidence to send you to kingdom come, none of which you've satisfactorily defended against, you've brought none of my posts against me. Until you do that, what I've said stands true.

Vote: strager
FOS: 0_o
anonymous_old

Echo wrote:

strager/agreeing with 0_o's post wrote:

Indeed. Echo himself used my mistakes as evidence that I am a Mafia, which contradicts what he says here.
Um lol? You are mafia. No contradiction whatsoever.
Ah, kill me, I misread what you wrote. Sorry. x_x

Echo wrote:

Until you do that, what I've said stands true.
True until proven false is your word?
Echo
I see you've ignored the most important part.

I'll give you a hint, it's the bolded half sentence in the second unquoted paragraph.
anonymous_old

Echo wrote:

I'll give you a hint, it's the bolded half sentence in the second unquoted paragraph.
I could almost say the same.
Echo

Echo wrote:

Whereas I've conjured up a single sentence with enough evidence to send you to kingdom come, none of which you've satisfactorily defended against, you've brought none of my posts against me.
You be the judge.

I would like you to do two things:
  1. refute my 3 points in the linked post
  2. attack me with my posts
anonymous_old
Judges can't rule for a case in which they are the defendant.

strager wrote:

True until proven false is your word?
EDIT:

Echo wrote:

I would like you to do two things:
  1. refute my 3 points in the linked post
  2. attack me with my posts
Well you're not getting it.
Echo
In this game, everything is true until proven false.

If everything is false until proven true, you won't be able to get past day 1.
Derekku
Hey guise I have the best idea.

strager and echo are both mafia and are just trying to confuse us all lol

jk
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
Derekku

strager wrote:

Derekku Chan wrote:

jk
I hope not?
You hope I'm not joking? That means you are mafia? :<
Echo
@derekku: then lynch strager today and me tomorrow. It's not like you can lynch two people on the same day. If we're both mafia, it won't make a difference. I don't mind dying, if it'll help townies win. It's a team game after all.

@strager: then tell me why anyone should be listening to you.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
anonymous_old

Echo wrote:

@derekku: then lynch strager today and me tomorrow. It's not like you can lynch two people on the same day. If we're both mafia, it won't make a difference. I don't mind dying, if it'll help townies win. It's a team game after all.
If you want to take one for the team, why don't you do it now?

Here, I'll help.

Vote: Echo

Echo wrote:

@strager: then tell me why anyone should be listening to you.
What are you citing to come to this 'conclusion' exactly?
0_o

strager wrote:

Derekku Chan wrote:

That means you are mafia? :<
I am not a Mafia.
Funny, that's exactly what someone who is in the mafia would say

vote stra-

lol
Echo
You're refusing to defend yourself against my evidence, and you're refusing to bring any evidence against me, yet you claim you are townie and I am mafia?

I think the simple answer is that there is no evidence you can use to defend yourself, and there is no evidence you can bring against me. Which means you are mafia, and I am townie.
0_o
Actually Echo..

0_o wrote:

Echo wrote:

0_o wrote:

So.. you are saying that the mafia is incapable of coming up with a valid reason to lynch someone?
That is exactly what I'm saying. There should be no evidence in posts against townies, which means mafia won't be able to bring up a valid reason to lynch a townie.
Why not? Humans come up with "evidence" against other humans to lynch them, the only difference is that the mafia actually knows that they are lynching a human.
any response to this?
Echo
Townies will be able to convincingly bring evidence to show that the evidence used against them is misguided.
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
Derekku

Echo wrote:

You're refusing to defend yourself against my evidence, and you're refusing to bring any evidence against me, yet you claim you are townie and I am mafia?

I think the simple answer is that there is no evidence you can use to defend yourself, and there is no evidence you can bring against me. Which means you are mafia, and I am townie.
Echo brings up good points. :/

Vot- Nah.

FOS: strager (because it wasn't already obvious </sarcasm>)
anonymous_old

Echo wrote:

Townies will be able to convincingly bring evidence to show that the evidence used against them is misguided.
I think you're mistaken.

Townies will be able to present a LACK of evidence in the claims of those against them.
Derekku

strager wrote:

Echo wrote:

You're refusing to defend yourself against my evidence, and you're refusing to bring any evidence against me, yet you claim you are townie and I am mafia?

I think the simple answer is that there is no evidence you can use to defend yourself, and there is no evidence you can bring against me. Which means you are mafia, and I am townie.
That doesn't explain this at all:

Echo wrote:

@strager: then tell me why anyone should be listening to you.
which is what I asked about.

You're saying even if I defend myself I shouldn't be believed, and even if I attack you I shouldn't be believed?
You're not defending yourself good enough. If you do it right, people will believe you. =)
Echo
Stop twisting my words.

I'm saying if you can't defend yourself, then there is no reason why anyone should believe what you say. If you can defend yourself, then that proves you're not mafia, and what you say holds legitimate value.

  1. Assume what everyone is saying is true
  2. Find evidence to show that a person is likely lying. From this point on assume everything he says is false.
  3. That person defends himself.
  4. Given that the person does so convincingly, assume from this point on everything he says is true. Otherwise, he is likely mafia and should be lynched.
anonymous_old

Echo wrote:

Stop twisting my words.
But it's so fun.

Echo wrote:

I'm saying if you can't defend yourself, then there is no reason why anyone should believe what you say. If you can defend yourself, then that proves you're not mafia, and what you say holds legitimate value.
I'm sure a Mafia can convincingly defend themself too, smart one.

Echo wrote:

  1. Assume what everyone is saying is true
  2. Find evidence to show that a person is likely lying. From this point on assume everything he says is false.
  3. That person defends himself.
  4. Given that the person does so convincingly, assume from this point on everything he says is true. Otherwise, he is likely mafia and should be lynched.
And this logic has gotten you how far in Mafia games?
Echo

strager wrote:

Echo wrote:

I'm saying if you can't defend yourself, then there is no reason why anyone should believe what you say. If you can defend yourself, then that proves you're not mafia, and what you say holds legitimate value.
I'm sure a Mafia can convincingly defend themself too, smart one.
Good to see you know you're not doing a very good job of it.

strager wrote:

Echo wrote:

  1. Assume what everyone is saying is true
  2. Find evidence to show that a person is likely lying. From this point on assume everything he says is false.
  3. That person defends himself.
  4. Given that the person does so convincingly, assume from this point on everything he says is true. Otherwise, he is likely mafia and should be lynched.
And this logic has gotten you how far in Mafia games?
page 26 so far, I believe
anonymous_old
This map has been deleted on the request of its creator. It is no longer available.
0_o
And this logic has gotten you how far in Mafia games?
His logic does get him killed quickly in mafia games, but it's usually because the assassins are scared of him ;)
Trust me, I know.

EDIT: bleh I think I misunderstood that post anyway. good night.
adam2046
I only won in Mafia 1 because I had the strategic forsight to take Echo (important to the structual integrity of the humans) out day 1 if he had been kept alive I would have lost on LyLo.

That, is exactly where Echo's logic would have gotten him.
Echo
I would also like to selfishly request that the real doctor, if such a role exists, protect me during the night.
Derekku
I'm with adam/0_o. Echo is effing good at these games, and that's why he keeps getting killed off quickly; People are scared of him. :P

Why I'm still up at 5:30am I don't know.

/me falls asleep
Echo
If you're relying on me, or are biased in any way just because you think I'm good at this game (honestly, I'm not that good), then you're completely missing the point.

Now if you're scared of me, that's a different story ^^

BOO
adam2046
I am quite definitley not relying on you, first time I heavily suspect you of being Mafia, I will lynch you.
Echo
よろしくおねがいしま~す
nardii
This map has been deleted on the request of its creator. It is no longer available.
Derekku

nardi11011 wrote:

Echo wrote:

よろしくおねがいしま~す
QFT

like i know what it means
Please remember me IIRC
show more
Please sign in to reply.

New reply