forked from FailedSave/DiscordFateBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.py
19 lines (16 loc) · 836 Bytes
/
help.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import discord
import asyncio
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/DiscordFateBot"""
async def handle_help (client, message, name, channel, settings):
await client.send_message(channel, help_string)