I'd like to run for mayor. It's about time we get someone who can get the job done into office.
Clue interpretations soon.
None.
I vote WoAHorde, all hail the bull-moose party.
But his avatar says he's a spy. =o
as for mayor.. i'll have to go with nuderaider. for writing teh program.
None.
Just here for the activity... well not really
This sucks. Im a normal townie now? I coulda got 25/50 minerals as a mafia!
guy lifting weight (animated smiley):
O-IC
OI-C
"Oh, I see it"
Just here for the activity... well not really
Im running for Mayor!
And I vote Horde.
guy lifting weight (animated smiley):
O-IC
OI-C
"Oh, I see it"
Paravin. :: NudeRaider
Heegu :: NudeRaider
isolatedpurity :: NudeRaider
Zycorax :: Dapperdan
Vi3t-X :: DTBK
JaFF :: Dapperdan
JordanN :: NudeRaider
Loveless :: Dapperdan
(3)Greo :: NudeRaider
NerdyTerdy :: WoAHorde
// 10
A_of-s_t :: WoAHorde
cheeze :: NudeRaider
(6)Dark_Marine_123 :: WoAHorde
l)ark_ssj9kevin :: WoAHorde
(4)14 of 30 votes are in.
Day end: Not set.
power kill available on first night?
None.
We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch
Why the feck is everyone voting for an average player like NudeRaider? There's no reason to put any stock in the # clues yet. I think he's mafia and his fellow mafiaso's are voting for him.
We all know I'll die immediately if I don't get elected mayor, and we also know how helpful I can be to the town with my clue intrepreting if I'm a townie. Really, I'm the only player that automatically dies just for playing and not being protected, so I would think it fair to consider me the best choice for mayor. That and the fact that I'm one of the best mafia players we have around here. (I only have a normal townie role, how LAME, I probably won't pay attention to this game unless I become mayor, knowing my fate is sealed otherwise)
Thats dapper as we love him, always full of stupid accusations
The point is I am one of 3 that you can TRULY trust. No fake images, no asservations , no friendship bs, just logic. And I think no one can truly deny that the number clue is what we think (the initial idea cam from IP). Besides that it is everything we got. Or has anyone found better clues?
I cannot blame you for thinking im just an average player because I died first night both games I was a townie so, I had not much chance to prove myself. And when I was Mafia I tried to keep a low profile.
Btw this worked perfectly because I was the only one Nerdy didn't suspect when they unleashed their Boondock carnage. (Damn you Merrel for your godlike clue interpretation).
But as I already pointed out I found out 4 of 6 Mafia members last game. If you don't believe me, I still got my chat logs.
I may be not as experienced as you but I would be glad to have you as my advisor and I would do the best I can to keep you alive. If the special roles entrust themselves to me, that is. But with me being Mayor they don't need to fear that because I won't be giving away information as easily as some other people from some other mafia game... /no names
Btw. your argument that you would die if you're not Mayor just sounds as you were trying to save your skin.
I think it's likely there are only 3-4 mafia members. Look at the abilities. They also are allowed to use each ability as many times as they want. ggkthxbai much? I also think you are asssuming that the numbers are referring to player IDs way too much. Especially considering there are 86 possibilties with 5 mafia. Although I'm guessing there are only 4.
That could well be. I just checked what my prog says with 4 mafias. Again no more than the 3 usual 100% innocents but only 24 possibilities. Also there's no one appearing in EVERY possibility (with either number of Mafia).
We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch
Quote from Doktor Shotgun
I can has source?
Ofc. It's not pretty, but it works. Actually it's 1 program for every number of mafias.
I was too lazy to make a recursive code that finds all possibilities in a given range of number of mafia.
Here's what I did for 5 mafias:
(Everyone can use it freely, no copyrights or w/e)
#include <iostream.h>
#include <stdlib.h>
int main()
{
int matrix[30], member_IDs[30];
int max = 783, i[5],j,k,sum;
matrix[0] = 918;
matrix[1] = 562;
matrix[2] = 186;
matrix[3] = 409;
matrix[4] = 405;
matrix[5] = 1192;
matrix[6] = 330;
matrix[7] = 84;
matrix[8] = 327;
matrix[9] = 50;
matrix[10] = 143;
matrix[11] = 35;
matrix[12] = 265;
matrix[13] = 1430;
matrix[14] = 7;
matrix[15] = 3;
matrix[16] = 28;
matrix[17] = 29;
matrix[18] = 45;
matrix[19] = 125;
matrix[20] = 40;
matrix[21] = 256;
matrix[22] = 137;
matrix[23] = 478;
matrix[24] = 75;
matrix[25] = 43;
matrix[26] = 82;
matrix[27] = 1;
matrix[28] = 139;
matrix[29] = 447;
k = 1;
for (j = 0;j < 30;j++)
member_IDs[j] = 0;
cout << "Mafia IDs, 4 Members:\n";
for (i[0] = 0;i[0] < 27;i[0]++)
for (i[1] = i[0]+1;i[1] < 28;i[1]++)
for (i[2] = i[1]+1;i[2] < 29;i[2]++)
for (i[3] = i[2]+1;i[3] < 30;i[3]++)
// for (i[4] = i[3]+1;i[4] < 30;i[4]++)
{
sum = 0;
for (j = 0;j < 4;j++)
sum += matrix[i[j]];
if (sum == 783)
cout << "Possibility #" << k++ << "\n www.staredit.net/?member=" << matrix[i[0]] << "\n www.staredit.net/?member=" << matrix[i[1]] << "\n www.staredit.net/?member=" << matrix[i[2]] << "\n www.staredit.net/?member=" << matrix[i[3]] << "\n www.staredit.net/?member=" << matrix[i[4]] << endl;
if (sum == 783)
for (j = 0;j < 4;j++)
member_IDs[i[j]] += 1;
}
cout << "\n Innocent IDs: ";
for (j = 0;j < 30;j++)
cout << "\n www.staredit.net/?member=" << matrix[j] << " = " << member_IDs[j];
cout << "\n" << endl;
system("PAUSE");
}
We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch
Quote from isolatedpurity
power kill = dead mayor?
no, bodyguard protection cannot be broken with it.