Spaces:
Runtime error
Runtime error
File size: 2,724 Bytes
78b07ad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
from Hellbot.core.clients import hellbot
from Hellbot.core.config import Config, Symbols
from Hellbot.core.database import db
from Hellbot.plugins.help import BotHelp
START_MSG = """
๐ **๐ฆ๐๐พ๐พ๐๐๐๐๐, {0} - ๐๐บ๐๐๐๐๐๐ ๐๐ฟ ๐ง๐พ๐
๐
๐ป๐๐!** ๐น ๐จ ๐บ๐ ๐๐๐๐ ๐๐๐๐๐๐ ๐ผ๐๐๐๐บ๐๐๐๐, ๐๐๐พ **๐ง๐พ๐
๐
๐ป๐๐ ๐ ๐๐๐๐๐๐บ๐๐!** ๐
๐ง๐พ๐๐พ ๐๐ ๐๐พ๐๐๐พ, ๐๐๐๐ฝ๐พ, ๐บ๐๐ฝ ๐ช ๐๐๐
๐พ๐บ๐๐ ๐๐๐พ ๐๐๐๐พ๐ ๐๐ฟ ๐ง๐พ๐
๐
๐ก๐๐ ๐บ๐ ๐๐๐๐ ๐ผ๐๐๐๐บ๐๐ฝ! ๐
๐ถ๐๐พ๐๐๐พ๐ ๐๐'๐ ๐ผ๐๐พ๐บ๐๐๐๐, ๐ฝ๐พ๐
๐พ๐๐๐๐, ๐๐ ๐๐๐ฝ๐บ๐๐๐๐ ๐๐๐๐ ๐๐๐พ๐๐ป๐๐, ๐จ'๐๐พ ๐๐๐ ๐๐๐๐ ๐ป๐บ๐ผ๐.
๐ข๐๐๐๐๐ฝ๐พ๐ ๐๐พ ๐๐๐๐ ๐๐พ๐๐๐๐๐บ๐
๐๐๐ฝ๐พ๐๐๐ผ๐ ๐คญ ๐๐ ๐๐๐พ ๐๐พ๐บ๐
๐ ๐๐ฟ ๐๐
๐๐๐๐บ๐๐พ ๐๐๐พ๐๐ป๐๐ ๐๐บ๐๐๐พ๐๐.
๐ ๐ซ๐พ๐'๐ ๐พ๐๐ป๐บ๐๐ ๐๐ ๐๐๐๐ ๐พ๐๐๐ผ ๐๐๐๐๐๐พ๐ ๐๐๐๐พ๐๐๐พ๐!
๐จ๐ฟ ๐๐๐ ๐พ๐๐พ๐ ๐๐พ๐พ๐ฝ ๐บ๐๐๐๐๐๐บ๐๐ผ๐พ ๐๐ ๐ผ๐๐บ๐๐พ โจ ๐๐๐พ ๐๐๐๐๐
๐
๐๐ฟ ๐๐๐
๐พ๐บ๐๐๐๐๐ ๐ง๐พ๐
๐
๐ป๐๐'๐ ๐๐๐๐๐, ๐๐๐๐ ๐๐๐๐๐๐ ๐๐พ.
๐ถ๐พ'๐๐พ ๐บ๐ป๐๐๐ ๐๐ ๐ผ๐๐๐๐๐พ๐ ๐๐พ๐ ๐๐พ๐๐๐๐๐ ๐ ๐๐ ๐๐๐พ ๐๐๐พ๐๐ป๐๐ ๐๐๐๐๐พ๐๐๐พ!
๐ซ ๐ฌ๐บ๐ ๐๐๐๐ ๐ผ๐๐๐๐บ๐๐ฝ๐ ๐ป๐พ ๐๐๐๐ฟ๐ ๐บ๐๐ฝ ๐๐๐๐ ๐๐พ๐๐๐๐๐๐ ๐
๐พ๐๐พ๐๐ฝ๐บ๐๐.
**๐ถ๐พ๐
๐ผ๐๐๐พ ๐๐ ๐ง๐พ๐
๐
๐ป๐๐ ๐ ๐๐๐๐๐๐บ๐๐ โ ๐๐๐พ๐๐พ ๐ง๐พ๐
๐
๐ป๐๐'๐ ๐
๐พ๐๐บ๐ผ๐ ๐
๐๐๐พ๐ ๐๐ ๐ค!**
"""
HELP_MSG = """
**โ๏ธ ๐ง๐พ๐
๐:**
__ยป All commands are categorized and you can use these buttons below to navigate each category and get respective commands.__
__ยป Feel free to contact us if you need any help regarding the bot.__
**โค๏ธ @HellBot_Networks ๐ฎ๐ณ**
"""
|