david umí posílat obrůzky ZÁROVEŇ se zprávama

This commit is contained in:
2026-03-21 01:36:43 +01:00
parent 75bb67bad0
commit ff23ce61ad
2 changed files with 50 additions and 28 deletions

78
main.py
View File

@@ -17,32 +17,34 @@ MUSIC_FOLDER = "hudba"
bot = telebot.TeleBot(API_KEY) bot = telebot.TeleBot(API_KEY)
PHRASES_ALL = [ PHRASES_ALL = [
"Tak uědlej JINEEJ SKUPINA VOLE TY NUDLE ČÍNSKÁ POSRANA", {"text":"Tak uědlej JINEEJ SKUPINA VOLE TY NUDLE ČÍNSKÁ POSRANA"},
"TY KURVO POSRANA ČDJ CIGAN Z USTÍ POSEDLÝ KRETEN ZE SLOVENSKO ESL", {"text":"TY KURVO POSRANA ČDJ CIGAN Z USTÍ POSEDLÝ KRETEN ZE SLOVENSKO ESL"},
"kordman dicx face reveal\nKORMAN JE NEGR Z OHIA", {"text":"kordman dicx face reveal\nKORMAN JE NEGR Z OHIA"},
"MÁM COKERA A KORDMANA PLNÝ ZUBY\nVOLE", {"text":"MÁM COKERA A KORDMANA PLNÝ ZUBY\nVOLE"},
"léky", {"text":"léky"},
"posedlej", {"text":"posedlej"},
"Léky tohle nejsou hovna\nJsou to střeva\nJsou to střeva po znásilnění", {"text":"Léky tohle nejsou hovna\nJsou to střeva\nJsou to střeva po znásilnění"},
"jsem femboy z usteckého kraje a dam ti e-sex přes telefon", {"text":"jsem femboy z usteckého kraje a dam ti e-sex přes telefon"},
"mugshot ahh negr kočka", {"text":"mugshot ahh negr kočka"},
"Ano ale můžu být femgoy", {"text":"Ano ale můžu být femgoy"},
"OYYYY", {"text":"OYYYY"},
"Dělám to pro ženy", {"text":"Dělám to pro ženy"},
"I'm not from Nová Vrchoslav 122", {"text":"I'm not from Nová Vrchoslav 122"},
"Kek faildox", {"text":"Kek faildox", "file": "obruzky/nová vrchoslav 122.jpg"},
"Posedlost s 15 letím klukem btw", {"text":"Posedlost s 15 letím klukem btw"},
"Honí si ho tomu nebo co?", {"text":"Honí si ho tomu nebo co?"},
"Jeden měsíc mám troon arc a tohle jse stane", {"text":"Jeden měsíc mám troon arc a tohle jse stane"},
"jsem validní femGOY", {"text":"jsem validní femGOY"},
"xestro...", {"text":"xestro..."},
"jedy", {"text":"jedy"},
"POMOC LIDI\nMĚ BOLÍ MOC PÉRO Z GOONOVANÍ\n\nbolí mě to vole tak MOC\nNEMUŽU PŘESTAT DOE", {"text":"POMOC LIDI\nMĚ BOLÍ MOC PÉRO Z GOONOVANÍ\n\nbolí mě to vole tak MOC\nNEMUŽU PŘESTAT DOE"},
"Chtěl bych být foidka ale nemůžu doe je to nemorální", {"text":"Chtěl bych být foidka ale nemůžu doe je to nemorální"},
"I gonna rape you with my slovenian BWC you fucking serbian subhuman", {"text":"I gonna rape you with my slovenian BWC you fucking serbian subhuman"},
"I have no friends, not online or offline\n\nI am not kidding, i can jump from my window, overdose or hang myself\nI can do it\nI gonna write a suicide note and post it on my main if that happens\nI dont care anymore", {"text":"I have no friends, not online or offline\n\nI am not kidding, i can jump from my window, overdose or hang myself\nI can do it\nI gonna write a suicide note and post it on my main if that happens\nI dont care anymore"},
"Similliar o algx\nIm not Mario Kart pedo i promise", {"text":"Similliar o algx\nIm not Mario Kart pedo i promise"},
">Czech kuz?\n<Sort of.", {"text":">Czech kuz?\n<Sort of."},
{"text":"faildoxx", "file": "obruzky/nová vrchoslav 122.jpg"},
{"text":"jsem ústejkéj občan a tohle nosím do školy", "file":"obruzky/ústeckéj občan.png"},
] ]
PHRASES_ZLINC = [ PHRASES_ZLINC = [
@@ -188,11 +190,31 @@ def maybe_send(message, phrases):
message = bot.reply_to(message, random.choice(phrases)) message = bot.reply_to(message, random.choice(phrases))
log(message) log(message)
def send_phrase(message, PHRASES_ALL):
item = random.choice(PHRASES_ALL)
text = item["text"]
path = item.get("file")
if not path:
bot.reply_to(message, text)
return
with open(path, "rb") as media:
lower = path.lower()
if lower.endswith(VIDEO_EXT):
bot.send_video(message.chat.id, media, caption=text)
elif lower.endswith(AUDIO_EXT):
bot.send_audio(message.chat.id, media, caption=text)
else:
bot.send_photo(message.chat.id, media, caption=text)
@bot.message_handler(commands=["czchan"]) @bot.message_handler(commands=["czchan"])
def cmd_czchan(message): def cmd_czchan(message):
maybe_send(message, PHRASES_ALL) send_phrase(message, PHRASES_ALL)
@bot.message_handler(commands=["sneedmaster"]) @bot.message_handler(commands=["sneedmaster"])
def cmd_sneed(message): def cmd_sneed(message):

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB