Compare commits

...

15 Commits
v2.2 ... main

Author SHA1 Message Date
Profitroll 5c5a620d65 Merge pull request 'Update dependency py-cord to v2.5.0' (#8) from renovate/py-cord-2.x into main
Reviewed-on: #8
2024-03-02 17:44:44 +02:00
Renovate 1c05efa0f4 Update dependency py-cord to v2.5.0 2024-03-02 11:01:22 +02:00
Profitroll f5de2457ba Merge pull request 'Update dependency ujson to v5.9.0' (#7) from renovate/ujson-5.x into main
Reviewed-on: #7
2023-12-12 01:28:19 +02:00
Renovate 8cec182435 Update dependency ujson to v5.9.0 2023-12-11 01:34:57 +02:00
Profitroll ad0ab65c5d Fixed http 2023-08-26 00:00:44 +03:00
Profitroll 0029cdaa30 Replaced Crowdin with Weblate 2023-08-25 23:59:50 +03:00
Profitroll e94883f6ad Merge pull request 'Update dependency ujson to v5.8.0' (#6) from renovate/ujson-5.x into main
Reviewed-on: #6
2023-08-07 14:13:08 +03:00
Renovate 465838a196 Update dependency ujson to v5.8.0 2023-08-07 14:10:43 +03:00
Profitroll a059fb0518 Merge pull request 'Update dependency requests to v2.31.0' (#5) from renovate/requests-2.x into main
Reviewed-on: #5
2023-05-22 19:39:04 +03:00
Renovate c4ee74753b Update dependency requests to v2.31.0 2023-05-22 18:40:49 +03:00
Profitroll 492edc242f Merge pull request 'Update dependency requests to v2.30.0' (#4) from renovate/requests-2.x into main
Reviewed-on: #4
2023-05-08 11:50:52 +03:00
Renovate 66c0ad7ee8 Update dependency requests to v2.30.0 2023-05-08 11:46:39 +03:00
Profitroll c1ee1b50ab Added config check and updated version to 2.3 2023-05-07 16:39:48 +02:00
Profitroll 7a379cf97e Updated ignore 2023-05-07 16:38:46 +02:00
Profitroll 388e27fdff config.json is now config_example.json 2023-05-07 16:38:17 +02:00
6 changed files with 25 additions and 15 deletions

9
.gitignore vendored
View File

@ -163,4 +163,11 @@ cython_debug/
.history/
# Built Visual Studio Code Extensions
*.vsix
*.vsix
# Project
venv
venv_linux
venv_windows
config.json

View File

@ -4,8 +4,8 @@
<a href="https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html">
<img alt="License: GPL v2" src="https://img.shields.io/badge/License-GPL_v2-blue.svg">
</a>
<a href="https://crowdin.com/project/yusarinbot">
<img alt="Crowdin" src="https://badges.crowdin.net/yusarinbot/localized.svg">
<a href="https://weblate.end-play.xyz/engage/yusarinbot/">
<img src="https://weblate.end-play.xyz/widget/yusarinbot/svg-badge.svg" alt="Translation status" />
</a>
<a href="https://git.end-play.xyz/profitroll/YusarinBot">
<img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg">
@ -26,8 +26,9 @@ Installation instructions are listed below. Please, make sure you have installed
1. `git clone https://git.end-play.xyz/profitroll/YusarinBot`
2. `cd YusarinBot`
3. `pip install -r requirements.txt`
4. `nano config.json`
5. `python yusarin.py`
4. `cp config_example.json config.json`
5. `nano config.json`
6. `python yusarin.py`
## Installation (Detailed)
@ -42,9 +43,10 @@ Installation instructions are listed below. Please, make sure you have installed
9. You can rename it however you want, set needed descriptions etc
10. Go to "Bot" tab and enable application as bot
11. Copy token of your bot
12. Open file `config.json` with your favorite text editor and paste your token as value of "bot_token" key
13. Copy your own Discord ID and paste it as value of "owner" key (How to get ID: <https://support.playhive.com/discord-user-id/>)
14. Bot is ready! Run it using `python yusarin.py`
12. Copy `config_example.json` to `config.json`
13. Open file `config.json` with your favorite text editor and paste your token as value of "bot_token" key
14. Copy your own Discord ID and paste it as value of "owner" key (How to get ID: <https://support.playhive.com/discord-user-id/>)
15. Bot is ready! Run it using `python yusarin.py`
## Config explanation

View File

@ -1,2 +1,2 @@
ujson==5.7.0
py-cord[speed]==2.4.1
ujson==5.9.0
py-cord[speed]==2.5.0

View File

@ -1,2 +1,2 @@
py-cord==2.4.1
requests==2.29.0
py-cord==2.5.0
requests==2.31.0

View File

@ -7,15 +7,16 @@ except Exception as exp:
)
exit()
from os import getpid
from os import getpid, path
from functions import *
pid = getpid()
version = 2.2
version = 2.3
if (
loadJson("config.json")["owner"] == "SET-OWNER-ID"
not path.exists("config.json")
or loadJson("config.json")["owner"] == "SET-OWNER-ID"
or loadJson("config.json")["bot_token"] == "SET-BOT-TOKEN"
):
print(