-
Notifications
You must be signed in to change notification settings - Fork 5
/
commands.py
73 lines (72 loc) · 2.84 KB
/
commands.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
async def advertise_commands(bot):
remind_me_extended = """Set a reminder at a specific time. Examples:
```
!remind me [when] to [what]
!remind me to [what] [when]```"""
delete_extended = """Examples:
```
!delete the reminder to [what]
!delete the [when] reminder
!delete reminder #2```"""
tz_extended = """Set your timezone to [tz]. This changes when any upcoming reminders will happen. Examples:
```
!timezone GMT
!timezone US/Pacific```"""
await bot.chat.execute({
"method": "advertisecommands",
"params": {
"options": {
"alias": "Reminder Bot",
"advertisements": [{
"type": "public",
"commands": [
{
"name": "help",
"description": "See help with available commands.",
},
{
"name": "remind me",
"description": "Set a reminder.",
"extended_description": {
"title": "*!remind me*",
"desktop_body": remind_me_extended,
"mobile_body": remind_me_extended,
}
},
{
"name": "list",
"description": "Show upcoming reminders.",
},
{
"name": "delete",
"description": "Delete a reminder.",
"extended_description": {
"title": "*!delete*",
"desktop_body": delete_extended,
"mobile_body": delete_extended,
}
},
{
"name": "timezone",
"description": "Set your timezone.",
"extended_description": {
"title": "*!timezone*",
"desktop_body": tz_extended,
"mobile_body": tz_extended,
}
},
{
"name": "source",
"description": "Learn about my beginnings.",
},
],
}
],
},
},
})
async def clear_command_advertisements(bot):
await bot.chat.execute({
"method": "clearcommands",
"params": {},
})