-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelp.py
18 lines (15 loc) · 810 Bytes
/
help.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import discord
help_string = """ASFR Bot Commands:
**!fate**: Gives you a random ASFR effect
**!set <setting> <value>**: Choose settings for !fate
**!viewsettings**: View your current settings
**!helpless**: Toggles ability to be targeted by other users
**!tfate <target>**: Gives the target a random ASFR effect if helpless
**!wfate <target>**: Like tfate, but DMs the target instead of broadcasting on the channel
**!tset <setting> <value>**: Choose settings for !tfate for your target
**!tviewsettings**: View your current !tfate settings
All commands work over DM.
For support or suggestions, contact **FailedSave**.
Github: https://github.com/FailedSave/enhanced-discord-bot"""
async def handle_help (client, message, name, channel, settings):
await channel.send(help_string)