-
Notifications
You must be signed in to change notification settings - Fork 12
/
example.config.py
46 lines (35 loc) · 1.26 KB
/
example.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
###############################################
# Template made by Person0z #
# https://github.com/Person0z #
# Copyright© Person0z, 2022 #
# Do Not Remove This Header #
###############################################
# Imports
import disnake
# Discord Token
token = 'TOKEN'
# Version
version = '2.0.0'
# Your Discord Server ID Will Go Here
guild = 'GUILD ID'
# The Prefix You Want For Your Discord Bot
prefix = '!'
# Bot Status
activity = ["/help", "discord.py", "With Python", "Made by Person0z", "v1.5.7"]
# Colors
Success = disnake.Color.green
Error = disnake.Color.red
Random = disnake.Color.random
# Owner ID
owner_ids = [000000000000000, 000000000000000] # You can add more owner ids by adding a comma and the id
# Welcomes & Goodbyes Channel ID
welcome_channel = 0000000000000000
join_role = 'Member' # The role you want to give to new members
# Logging Channel ID
logs = [0000000000000000] # You can add more channels by doing this: [channel_id, channel_id, channel_id]
# Roles to give users when the reach a certain level
level_roles = {
5: 1079649081552551966, # Role ID for level 5
10: 1079649117032161330, # Role ID for level 10
15: 1079649138104340501, # Role ID for level 15
}