This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json, itertools, sys | |
ARTIFACT_PATH = "resources/ExcelBinOutput/ReliquaryExcelConfigData.json" | |
MAINSTAT_PATH = "resources/ExcelBinOutput/ReliquaryMainPropExcelConfigData.json" | |
AFFIX_PATH = "resources/ExcelBinOutput/ReliquaryAffixExcelConfigData.json" | |
EQUIP_TYPES = { | |
"EQUIP_BRACER": "flower", | |
"EQUIP_NECKLACE": "plume", | |
"EQUIP_SHOES": "sands", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Импортируем всё необходимое из aiogram | |
from aiogram import Bot, Dispatcher | |
from aiogram.filters import CommandStart | |
# Импортируем всё необходимое из стандартных библиотек | |
import asyncio | |
import logging | |
import sys | |
# Указываем токен бота из @BotFather |