diff options
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/post.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/cgi/post.py b/cgi/post.py index e45e2fe..b524d22 100644 --- a/cgi/post.py +++ b/cgi/post.py @@ -1269,39 +1269,6 @@ def archiveThread(postid): UpdateDb("REPLACE INTO archive (oldid, boardid, timestamp, subject, length) VALUES (%s, %s, %s, %s, %s)", (thread['id'], board['id'], thread['timestamp'], thread['subject'], thread['length'])) -def throw_dice(dice): - qty = int(dice[0][1:]) - if qty == 0: - raise UserError("No tienes dados para lanzar.") - if qty > 100: - qty = 100 - sides = int(dice[1][1:]) if dice[1] else 6 - if sides == 0: - raise UserError("Tus dados no tienen caras.") - if sides > 100: - sides = 100 - - string = "Lanzas " - string += "un dado de " if qty == 1 else (str(qty) + " dados de ") - string += "una cara." if sides == 1 else (str(sides) + " caras.") - string += " Resultado: <b>" - - total = i = 0 - while (i < qty): - total += random.randint(1,sides) - i += 1 - - string += str(total) + "</b>" - - return string - -def magic_ball(): - string = "La bola 8 mágica dice: <b>" - results = ["Sí.", "Es seguro.", "En mi opinión, sí.", "Está decidido que sí.", "Definitivamente sí.", "Es lo más probable.", "Buen pronóstico.", "Puedes confiar en ello.", "Todo apunta a que sí.", "Sin duda.", "Respuesta vaga, vuelve a intentarlo.", "Pregunta en otro momento.", "Mejor que no te lo diga ahora.", "No puedo predecirlo ahora.", "Concéntrate y vuelve a preguntar.", "No cuentes con ello.", "Mi respuesta es no.", "Mis fuentes me dicen que no.", "Pronóstico no muy bueno.", "Muy dudoso."] - string += random.choice(results) + "</b>" - - return string - def discord_hook(post, parent_post, url): if not Settings.DISCORD_HOOK_URL: return |