Mini Theme 2164: Betrayal Mafia I - Mafia PT

Forum for old private topics
Forum rules
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #100 (ISO) » Thu Oct 01, 2020 5:30 am

Post by Albert B. Rampage »

In post 99, lilith2013 wrote:sorry - you rolled a 3 and he rolled a 2, dealing 1 damage.
Did you add my +1 dice?

"You are a Warrior. Add 1 die to your attack rolls."
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
lilith2013
lilith2013
she/her
Spice of Life
User avatar
User avatar
lilith2013
she/her
Spice of Life
Spice of Life
Posts: 7170
Joined: September 22, 2015
Pronoun: she/her
Location: New York
Contact:

Post Post #101 (ISO) » Thu Oct 01, 2020 5:32 am

Post by lilith2013 »

Yes.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #102 (ISO) » Thu Oct 01, 2020 5:49 am

Post by Albert B. Rampage »

so i rolled a 2 and a 1 and he rolled a 2
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #103 (ISO) » Thu Oct 01, 2020 6:37 am

Post by Albert B. Rampage »

Pine were you successful at activating the lab?
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #104 (ISO) » Thu Oct 01, 2020 3:41 pm

Post by Albert B. Rampage »

Pine I think you should try to find another lab tonight
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #105 (ISO) » Thu Oct 01, 2020 3:52 pm

Post by Albert B. Rampage »

if we activate like 4 more labs, it will be very hard for town to come back, maybe give IKSF your item and both of you explore a lab while i attack again
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Pine
Pine
In Your Head
User avatar
User avatar
Pine
In Your Head
In Your Head
Posts: 16763
Joined: February 27, 2011
Location: Upstate New York

Post Post #106 (ISO) » Fri Oct 02, 2020 10:50 am

Post by Pine »

Both labs were activated, so yes :)
"Cry havoc, and let slip the wombat of war!"

Act 3, Scene 1 of
Julius Caesar
, by W. Shakespeare
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #107 (ISO) » Fri Oct 02, 2020 1:42 pm

Post by Albert B. Rampage »

can you send IKSF your item?
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
I Keep Siteflaking
I Keep Siteflaking
Goon
User avatar
User avatar
I Keep Siteflaking
Goon
Goon
Posts: 433
Joined: August 15, 2020
Location: Europe

Post Post #108 (ISO) » Fri Oct 02, 2020 8:41 pm

Post by I Keep Siteflaking »

I think you should try to find a weapon. Search for "armory" or something like that.
User avatar
I Keep Siteflaking
I Keep Siteflaking
Goon
User avatar
User avatar
I Keep Siteflaking
Goon
Goon
Posts: 433
Joined: August 15, 2020
Location: Europe

Post Post #109 (ISO) » Fri Oct 02, 2020 10:30 pm

Post by I Keep Siteflaking »

Instructions:
Spoiler:
1) go to this: https://www.programiz.com/python-progra ... -compiler/
2) delete these 3 lines on the left half of screen
3) copy there my code
4) click run
5) enter data to the right right half of the screen
note: If it bugs in input, just run it again
note2: When Albert attacks Gamma. I think the probabilities are correct, I checked few numbers and it seems to correct.

Code:
Spoiler:

Code: Select all

def chanceToRoll (number, rolls):
  if number < 0 or number > rolls*2:
    return 0
  if rolls == 1:
    return 1/3
  return (chanceToRoll(number, rolls-1) + chanceToRoll(number - 1, rolls-1) + chanceToRoll(number - 2, rolls-1)) / 3

mode = int(input("If you wish to activate lab, enter 0. If you wish to attack, enter 1: "))
if mode == 0:
  myStat = int(input("Enter your knowlege: "))
  activationCost = int(input("Enter how many knowledge to activate the lab: "))
  result = 0
  for i in range (activationCost, myStat * 2 + 1):
    result += chanceToRoll (i, myStat)
  print ("You will activate the lab with probability of: " + str(round(result*100, 1)) + "%")
if mode == 1:
  myStat = int(input("Enter your roll stat: "))
  enemyStat = int(input("Enter enemy roll stat: "))
  bonus = int(input("Enter your bonus to roll (can be negative): "))
  knockOut = int(input("Enter how many damage is needed for KO: "))
  result = []
  for i in range (0, myStat*2 + bonus + 1):
    result.append(0)
  for i in range (0, enemyStat*2 + 1):
    for j in range (0, myStat*2 + bonus + 1):
      if j < i:
        result[0] += chanceToRoll(i, enemyStat) * chanceToRoll(j - bonus, myStat)
      else:
        result[j-i] += chanceToRoll(i, enemyStat) * chanceToRoll(j - bonus, myStat)
  for i in range (0, knockOut):
    print("Chance to deal " + str(i) + " damage is " + str(round(result[i]*100, 1)) + "%")
  a = 0
  for i in range (knockOut, myStat*2 + bonus + 1):
      a += result[i]
  print("Chance to kill the enemy is " + str(round(a * 100, 1)) + "%")

I wrote a program to tell you how likely you are to activate lab/ attack enemy.
User avatar
Pine
Pine
In Your Head
User avatar
User avatar
Pine
In Your Head
In Your Head
Posts: 16763
Joined: February 27, 2011
Location: Upstate New York

Post Post #110 (ISO) » Sun Oct 04, 2020 5:32 am

Post by Pine »

Guys why the fuck are you bussing here. This is not one of the vanishingly-small set of situations where it's a good idea.
"Cry havoc, and let slip the wombat of war!"

Act 3, Scene 1 of
Julius Caesar
, by W. Shakespeare
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #111 (ISO) » Sun Oct 04, 2020 8:35 am

Post by Albert B. Rampage »

Is there anyone that townreads you, or any other viable player to vote? They pretty much nailed you with the +1 knowledge if there's no case on literally anyone else.
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #112 (ISO) » Sun Oct 04, 2020 8:35 am

Post by Albert B. Rampage »

what should we do?
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #113 (ISO) » Sun Oct 04, 2020 8:36 am

Post by Albert B. Rampage »

I was kind of expecting you to claim a PR or something so we could wagon someone else
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
I Keep Siteflaking
I Keep Siteflaking
Goon
User avatar
User avatar
I Keep Siteflaking
Goon
Goon
Posts: 433
Joined: August 15, 2020
Location: Europe

Post Post #114 (ISO) » Sun Oct 04, 2020 8:47 am

Post by I Keep Siteflaking »

The case against you is BS and you can deflect the wagon by trying hard enough.
User avatar
Pine
Pine
In Your Head
User avatar
User avatar
Pine
In Your Head
In Your Head
Posts: 16763
Joined: February 27, 2011
Location: Upstate New York

Post Post #115 (ISO) » Sun Oct 04, 2020 8:53 am

Post by Pine »

In post 114, I Keep Siteflaking wrote:The case against you is BS and you can deflect the wagon by trying hard enough.
Exactly.
"Cry havoc, and let slip the wombat of war!"

Act 3, Scene 1 of
Julius Caesar
, by W. Shakespeare
User avatar
Pine
Pine
In Your Head
User avatar
User avatar
Pine
In Your Head
In Your Head
Posts: 16763
Joined: February 27, 2011
Location: Upstate New York

Post Post #116 (ISO) » Sun Oct 04, 2020 8:53 am

Post by Pine »

Flimsy cases die in darkness, and they'll find something shiny soon.
"Cry havoc, and let slip the wombat of war!"

Act 3, Scene 1 of
Julius Caesar
, by W. Shakespeare
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #117 (ISO) » Sun Oct 04, 2020 2:32 pm

Post by Albert B. Rampage »

i think we can move the votes from pine if IKSF proposes gamma and pine try to destroy the labs tonight
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #118 (ISO) » Mon Oct 05, 2020 4:31 am

Post by Albert B. Rampage »

Pine I advise you to send us your item just in case you get quickhammered
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
I Keep Siteflaking
I Keep Siteflaking
Goon
User avatar
User avatar
I Keep Siteflaking
Goon
Goon
Posts: 433
Joined: August 15, 2020
Location: Europe

Post Post #119 (ISO) » Mon Oct 05, 2020 5:36 am

Post by I Keep Siteflaking »

mod
does target know he was operated on to increase/ decrease knowledge? Or there will just be informed about stat increase/ drop?
User avatar
lilith2013
lilith2013
she/her
Spice of Life
User avatar
User avatar
lilith2013
she/her
Spice of Life
Spice of Life
Posts: 7170
Joined: September 22, 2015
Pronoun: she/her
Location: New York
Contact:

Post Post #120 (ISO) » Mon Oct 05, 2020 5:38 am

Post by lilith2013 »

Players are notified of all actions taken on them, including the factional operation ability.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #121 (ISO) » Mon Oct 05, 2020 1:55 pm

Post by Albert B. Rampage »

guys i think we have to do 2 things:

IKSF needs to propose a strategy to have Pine and Gamme try to destroy a lab tonight, so we let both live.

Pine needs to give his item to IKSF just in case he gets lynched anyway.

I will unvote Pine when there is another viable bandwagon. It's difficult to justify moving off of him, and then he flips scum, and then I'm screwed, and IKSF is the only one who can carry the game at that point.

Hopefully Pine can dig himself out with some activity and content.
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #122 (ISO) » Tue Oct 06, 2020 3:25 am

Post by Albert B. Rampage »

IKSF you should use your vote, there's no rival bandwagons I can go to and I can't sit on my vote either
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #123 (ISO) » Tue Oct 06, 2020 4:54 am

Post by Albert B. Rampage »

fun and games is trying to peel votes of Pine. nice.

Penguin is back today. If he votes Johnny, we might be able to lynch Johnny instead
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
User avatar
Albert B. Rampage
Albert B. Rampage
Illogical Rampage
User avatar
User avatar
Albert B. Rampage
Illogical Rampage
Illogical Rampage
Posts: 27261
Joined: April 8, 2007
Location: Albuquerque, New Mexico

Post Post #124 (ISO) » Tue Oct 06, 2020 4:55 am

Post by Albert B. Rampage »

IKSF - don't vote Johnny yet. Let's try to be later on the wagon.
Guard your honor. Let your reputation fall where it will. And outlive the bastards.
Locked