From 84ebc8c68b4ba9fb69d3eba639666705a789a1e9 Mon Sep 17 00:00:00 2001 From: perforat Date: Sun, 8 Mar 2026 22:35:41 +0500 Subject: [PATCH 1/5] Update README.md --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fb231de..f4bbde2 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,17 @@ you can use this as a base for your discord bot, writing your own [cogs](/cogs/) ## installation -firstly, clone the repo +1. clone the repo ``` git clone https://github.com/rejnronuzz/muzovkantv2.git cd muzovkantv2 ``` -then insert your discord bot and [thecatapi](https://thecatapi.com) token into the .env file. -it should look something like this: +2. install the requirements +``` +pip install -r requirements.txt +``` +3. insert your discord bot token and [thecatapi](https://thecatapi.com) token into the .env file. +*it should look something like this:* ``` DISCORD_TOKEN=abc123abc CAT_API_KEY=live_abc123abc -- 2.49.1 From b238e0ea20727beb4d9233d587bdfa1cee9bb37d Mon Sep 17 00:00:00 2001 From: perforat Date: Sun, 8 Mar 2026 22:37:46 +0500 Subject: [PATCH 2/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4bbde2..58fe4d1 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,12 @@ you can use this as a base for your discord bot, writing your own [cogs](/cogs/) ## installation 1. clone the repo -``` +```bash git clone https://github.com/rejnronuzz/muzovkantv2.git cd muzovkantv2 ``` 2. install the requirements -``` +```bash pip install -r requirements.txt ``` 3. insert your discord bot token and [thecatapi](https://thecatapi.com) token into the .env file. -- 2.49.1 From a20cea96c6cf1033a9eab3c0d266783beb8ead34 Mon Sep 17 00:00:00 2001 From: perforat Date: Mon, 9 Mar 2026 01:50:15 +0500 Subject: [PATCH 3/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 58fe4d1..5a0f44f 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ you can then edit the config.py to your liking. ## contacting if you have any feedback, contact me on github issues or/and discord. if you want to add any functions to this bot, make a PR. +when submitting a bug report, make sure to attach the bot.log files. they generate automatically in root directory. *discord: rejnronuz* -- 2.49.1 From dc8ef2eba56367c60d48cdcdf310eec254eb1e94 Mon Sep 17 00:00:00 2001 From: perforat Date: Mon, 9 Mar 2026 11:15:29 +0500 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a0f44f..90b157f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ pip install -r requirements.txt DISCORD_TOKEN=abc123abc CAT_API_KEY=live_abc123abc ``` -you can then edit the config.py to your liking. +you can then edit the [config.py](/config.py) to your liking. ## contacting if you have any feedback, contact me on github issues or/and discord. if you want to add any functions to this bot, make a PR. -- 2.49.1 From 6ce6e0625f52a7fcf422f9a71cc03e4ad4f249ec Mon Sep 17 00:00:00 2001 From: perforat Date: Mon, 9 Mar 2026 11:17:48 +0500 Subject: [PATCH 5/5] why didnt ts commit????? --- config.py | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 6f4d656..41a1842 100644 --- a/config.py +++ b/config.py @@ -1,10 +1,12 @@ +python import os from dotenv import load_dotenv load_dotenv() TOKEN = os.getenv('DISCORD_TOKEN') -CHANNEL_ID = 1454107749028855971 # roles channel + +CHANNEL_ID = 1454107749028855971 # roles channel roles_message_id = 1454128857102680187 FUNCHOSA_CHANNEL_ID = 1379127661095551048 @@ -13,4 +15,29 @@ REACTION_ROLES = { '🤙': 1454112345109299281, '🤕': 1454112388662956093, '🇺🇦': 1454113041305305200, -} \ No newline at end of file +} + +ROLE_MESSAGE_TEXT = ( + "пикните там роли снизу по реактам,\n" + "шоб если куда то шли играть с фаршем >3 человек то сразу можно было ее пингануть\n\n" + "react_index = {\n" + " '💩': гревдиггер\n" + " '🤙': бара наверн хз\n" + " '🤕': пох ваще за любой движ\n" + " '🇺🇦': мтк\n" + "}\n\n" + "естессно кто будет спамить пингом ролей тот будет опущен и закинут в таймаут\n" + "если бот в оффе роли выдадутся когда я врублю его снова" +) + +HELP_TEXT = ( + "комманды:\n" + "```\n" + "uptime : сколько времени прошло с запуска бота\n" + "funchosarand : рандомная пикча из фунчозы либо по айдишнику в базе\n" + "funchosainfo : фунчоза.статы\n" + "kitty : рандомная пикча кошечки из thecatapi.com\n" + "```\n" + "префикс: `!`\n" + "в лс отпишите по предложениям че в бота докинуть" +) -- 2.49.1