It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Sign me up if spots still available. Love me some fallout flavor!
Interesting setup Lift, sign me up please! :)
avatar
bler144:
avatar
JoeSapphire: what's a vampire's favourite mafia player?
Paaarrrrrrrrty Host!


Oh wait, you said vampire.
avatar
Lifthrasil: Let's say, dedo was killed by ZFR. But GH roleblocked dedo that Night.
Wtf guys!
Post edited October 06, 2020 by dedoporno
avatar
Lifthrasil: Let's say, dedo was killed by ZFR. But GH roleblocked dedo that Night.
avatar
dedoporno: Wtf guys!
Don't worry. I just used you as an example because I would totally kill you early in future games if I were scum! You've become too dangerous! ;-)
avatar
Lifthrasil: Don't worry. I just used you as an example because I would totally kill you early in future games if I were scum! You've become too dangerous! ;-)
Then I better play while you can't get to me. Sign me up.
avatar
bucktoothgamer: Sign me up if spots still available. Love me some fallout flavor!
Welcome!

avatar
Hunter65536: Interesting setup Lift, sign me up please! :)
Glad to have you back!

avatar
Lifthrasil: Don't worry. I just used you as an example because I would totally kill you early in future games if I were scum! You've become too dangerous! ;-)
avatar
dedoporno: Then I better play while you can't get to me. Sign me up.
Good idea. As a mod I won't be in danger from you seeing through me. :-)
avatar
Lifthrasil: 3. Track'er / Watch'er: someone who likes to watch women at Night. Chooses a target. If the target is female, he will Watch her. If the target is male, he will Track him to see whether the target visits some woman.
Does that mean these roles only go to men? What is the scum version of the role called? Shoot'er?
avatar
ZFR: So what happens if the character tracks a male who visits a male. Will he get the result?
It's none of your business what Joe and I are doing with our free time!


avatar
Lifthrasil: If the male visits a male the Watch'er/Track'er gets bored and goes home.
Oh, so it's not about Joe and me after all.

avatar
Lifthrasil: Oh, and the DNA of the victim is revealed to the CSI.
DNA will definitely be revealed.
avatar
Hunter65536: Interesting setup Lift, sign me up please! :)
Yes!
Post edited October 06, 2020 by dedoporno
avatar
Lifthrasil: 3. Track'er / Watch'er: someone who likes to watch women at Night. Chooses a target. If the target is female, he will Watch her. If the target is male, he will Track him to see whether the target visits some woman.
avatar
dedoporno: Does that mean these roles only go to men?
Why should it? Why shouldn't a woman like to watch other women too?

By the way, gender will be assigned randomly and will not be connected with roles or faction.
avatar
Lifthrasil: Why should it? Why shouldn't a woman like to watch other women too?
You kept writing "he" :)
avatar
Lifthrasil: Why should it? Why shouldn't a woman like to watch other women too?
avatar
dedoporno: You kept writing "he" :)
My bad. I meant, of course, "it".
avatar
Lifthrasil: My bad. I meant, of course, "it".
2020, baby!
avatar
Lifthrasil: By the way, gender will be assigned randomly and will not be connected with roles or faction.
AND

avatar
dedoporno: 2020, baby!
Here is a C++ code for 2020 gender selection :)

------------------ START OF CODE -----------
#include <iostream>
using namespace std;

int main()
{
srand (time(NULL));
int n = 20; // number of players.

for(int i = 0; i < n; ++i){
int r = rand() % 10;

if (r == 0){cout << "Player #"<<i+1 << " is male "<<endl;}
else if (r == 1){cout << "Player #"<<i+1 << " is female "<<endl;}
else {cout << "Player #"<<i+1 << "'s gender is something else"<<endl;}
}

return 0;
}
--------------------- END OF CODE ----------------


----------- A POSSIBLE OUTCOME -------------
Player #1's gender is something else
Player #2 is female
Player #3's gender is something else
Player #4's gender is something else
Player #5 is male
Player #6 is male
Player #7's gender is something else
Player #8's gender is something else
Player #9's gender is something else
Player #10's gender is something else
Player #11's gender is something else
Player #12 is female
Player #13's gender is something else
Player #14's gender is something else
Player #15's gender is something else
Player #16's gender is something else
Player #17's gender is something else
Player #18's gender is something else
Player #19's gender is something else
Player #20 is female
--------------------------------

You can add additional choices like "Tetrapentrahexasexual" or "ArtosPortosDoritossexual" to add to the flavor.
Wow, I guess the secret to filling a game up fast is making it Fallout themed.

avatar
Engerek01: You can add additional choices like "Tetrapentrahexasexual" or "ArtosPortosDoritossexual" to add to the flavor.
You're confusing sexuality and gender. :P
avatar
Engerek01: You can add additional choices like "Tetrapentrahexasexual" or "ArtosPortosDoritossexual" to add to the flavor.
Sorry to disappoint. But Gender will be binary. Otherwise the chance of one of the gender specific powers to work would be too small. Or at least I will have to make around half the players female. What flavour the non-female gender has is irrelevant.

And yes, I am basing these roles entirely on a stupid pun! :-)




I added two more non-standard roles that would fit the Fallout flavour very well.
Post edited October 06, 2020 by Lifthrasil