forked from bbedward/graham_discord_bot
-
Notifications
You must be signed in to change notification settings - Fork 5
/
settings.py.example
29 lines (29 loc) · 1.01 KB
/
settings.py.example
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
# Discord
discord_bot_id = '';
discord_bot_token = '';
# Banano node wallet ID
wallet = '';
# Exempt users list (these user IDs will not be able to receive tips
exempt_users = [ discord_bot_id, '395828286548344834', '405250059240996864', '418425979942207499' ]
# Restricted roles for certain commands
admin_roles = ['Moderators', 'Core', 'Community Managers']
# Admin USer IDs
admin_ids=['1234','5678']
# Minimum amount required for !rain
rain_minimum = 1000
# Minimum amount required to tiprandom
tiprandom_minimum = 10
# Minimum amount required to start a giveaway
giveaway_minimum = 1000
# Max giveaway duration in minutes
giveaway_max_duration=60
# Default giveaway duration for giveaways started by bot
giveaway_auto_duration=30
# Reboot node script on timeout
reboot_script_path="./scripts/reboot_node.sh"
# Set channels here you do not want to allow spam in comma-separated (IE commands like `giveaawaystats`
no_spam_channels=[403628311965597697]
# command prefix
command_prefix='!'
# Status
playing_status=command_prefix + 'help'