-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
105 lines (86 loc) · 3.52 KB
/
config.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
token = 'Токен вашего бота'
gpt_api_key = "OpenAI API ключ"
prefix = "!"
anon_message_webhook = "Ссылка на вебхук, куда отправляются анонимные сообщения"
anon_username = "Annonymous Message"
spy_mode = False
log_messages = False
log_errors = False
secure_mode = True
switch_mode = 0 #0 is client mode, 1 - is bot mode
commands_counter_enable = True
mut_list = []
inv_mut = []
#economy
work_delay = 10 #time in seconds
work_money_reward = 1
bullying_mode = False
bullying_messages = []
bullying_list = []
help_msg = """Введите свое help-message здесь
"""
economy_help_msg = """ **💵Валюта**
```
!balance - просмотреть баланс
!balance [ник] - баланс другого человека
!work - каждые 10 секунд вы сможете поработать и получить 1 💵
!send (send_money для слэш команд) [пользователь], [количество валюты] - отправить деньги указанному пользователю```\n"""
help_msg2 = """Nothing to see here..."""
msg_credits = """
Ваши кредиты"""
msg_donate = """
Ссылки на донат"""
word_banlist = ["введите ваш список запрещенных слов здесь (нужен для анонимных сообщений)"]
admin_list = []
admin_password = "пароль для входа в панель администратора бота (нужно для отладки)"
gpt_func_whitelist = ["1154784913044807760","1171497670339203102"]
debug_msg = """
⚙️Bot Status
Node#1 - Online 🟢"""
command_test = prefix + "test"
command_help = prefix + "helpme"
command_status = prefix + "status"
command_anonymous_message = prefix + "anonmessage"
command_idea = prefix + "idea"
command_eval = prefix + "eval"
command_randint = prefix + "randint"
command_randfloat = prefix + "randfloat"
command_memberscount = prefix + "members_count"
command_studio_stats = prefix + "studio"
command_get_guild = prefix + "other_guilds"
command_economy_help = prefix + "economy_help"
command_admin_login = prefix + "admin_login"
command_check_admin = prefix + "check_admin"
command_check_me = prefix + "check_me"
command_add_admin = prefix + "add_admin"
command_datetime = prefix + "datetime"
command_send = prefix +"send"
command_credits = prefix + "credits"
command_donate = prefix + "donate"
command_chatgpt = prefix + "chatgpt"
command_random = prefix + "random"
command_stats = prefix + "bot_stats"
command_server_stats = prefix + "server_stats"
command_bump_register = prefix +"bump_register"
command_bump = prefix + "bump"
command_check_banword_system = prefix + "check_banword_system"
command_enable_banword_system = prefix + "enable_banword"
command_disable_banword_system = prefix + "disable_banword"
command_add_banword = prefix + "add_banword"
command_remove_banword = prefix + "remove_banword"
command_kill = prefix + "kill"
command_kiss = prefix + "kiss"
command_mut = prefix + "mut"
command_work = prefix + "work"
command_unmut = prefix + "unmut"
command_pi = prefix + "pi"
command_random_rbx = prefix + "rand_rbx"
command_random_rbx1 = prefix + "rand_place_url"
command_promo = prefix + "promo"
command_action = prefix + "action"
command_helpm2 = prefix +"helpm2"
command_balance = prefix + "balance"
#this commands requires bot admin access or owner access
command_start_bullying = prefix + "bullying"
command_bullying_disable = prefix + "bullying_disable"
command_bullying_enable = prefix + "bullying_enable"