mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-22 13:54:19 +00:00
lel
This commit is contained in:
parent
e331b25e7d
commit
169a0c0360
2 changed files with 11 additions and 2 deletions
12
main.py
12
main.py
|
@ -871,6 +871,14 @@ def config(bot, update):
|
||||||
game.configstep += 1
|
game.configstep += 1
|
||||||
game.message(bot, s.config_list[game.configstep])
|
game.message(bot, s.config_list[game.configstep])
|
||||||
elif game.configstep == 6:
|
elif game.configstep == 6:
|
||||||
|
try:
|
||||||
|
game.roleconfig["Mamma"] = int(cmd[1])
|
||||||
|
except ValueError:
|
||||||
|
game.message(bot, s.error_invalid_config)
|
||||||
|
else:
|
||||||
|
game.configstep += 1
|
||||||
|
game.message(bot, s.config_list[game.configstep])
|
||||||
|
elif game.configstep == 7:
|
||||||
if cmd[1].lower() == 'testa':
|
if cmd[1].lower() == 'testa':
|
||||||
game.votingmifia = False
|
game.votingmifia = False
|
||||||
game.configstep += 1
|
game.configstep += 1
|
||||||
|
@ -881,7 +889,7 @@ def config(bot, update):
|
||||||
game.message(bot, s.config_list[game.configstep])
|
game.message(bot, s.config_list[game.configstep])
|
||||||
else:
|
else:
|
||||||
game.message(bot, s.error_invalid_config)
|
game.message(bot, s.error_invalid_config)
|
||||||
elif game.configstep == 7:
|
elif game.configstep == 8:
|
||||||
if cmd[1].lower() == 'perfette':
|
if cmd[1].lower() == 'perfette':
|
||||||
game.missingmifia = False
|
game.missingmifia = False
|
||||||
game.endconfig(bot)
|
game.endconfig(bot)
|
||||||
|
@ -891,7 +899,7 @@ def config(bot, update):
|
||||||
game.message(bot, s.config_list[game.configstep])
|
game.message(bot, s.config_list[game.configstep])
|
||||||
else:
|
else:
|
||||||
game.message(bot, s.error_invalid_config)
|
game.message(bot, s.error_invalid_config)
|
||||||
elif game.configstep == 8:
|
elif game.configstep == 9:
|
||||||
try:
|
try:
|
||||||
miss = int(cmd[1])
|
miss = int(cmd[1])
|
||||||
except ValueError:
|
except ValueError:
|
||||||
|
|
|
@ -297,6 +297,7 @@ config_list = ["Quanti *Mifiosi* devono essere nella partita?",
|
||||||
"Quanti *Terroristi* devono essere nella partita?",
|
"Quanti *Terroristi* devono essere nella partita?",
|
||||||
"Quanti *Derek* devono essere nella partita?",
|
"Quanti *Derek* devono essere nella partita?",
|
||||||
"Quanti *Disastri* devono essere nella partita?",
|
"Quanti *Disastri* devono essere nella partita?",
|
||||||
|
"Quante *Mamme* devono essere nella partita?",
|
||||||
"I mifiosi possono uccidere una persona a `testa` al giorno "
|
"I mifiosi possono uccidere una persona a `testa` al giorno "
|
||||||
"o votano e decidono un'`unica` persona da uccidere per tutta la squadra?",
|
"o votano e decidono un'`unica` persona da uccidere per tutta la squadra?",
|
||||||
"La mifia può `mancare` le uccisioni o i loro attacchi sono `perfetti`?",
|
"La mifia può `mancare` le uccisioni o i loro attacchi sono `perfetti`?",
|
||||||
|
|
Loading…
Reference in a new issue