1 |
# Taking notes for a user |
2 |
|
3 |
{% hint style="warning" %} |
4 |
This page is partially outdated, and therefore not everything described in this page may work with the latest versions of the bot. Please give us some time and we'll update these pages. |
5 |
{% endhint %} |
6 |
|
7 |
**Legacy Command** |
8 |
|
9 |
``` |
10 |
-note <UserID|UserMention|UserTag> <...NoteContent> |
11 |
``` |
12 |
|
13 |
**Slash Command** |
14 |
|
15 |
``` |
16 |
/note <User> <Content> |
17 |
``` |
18 |
|
19 |
#### Examples |
20 |
|
21 |
``` |
22 |
-note @Someone Something to note... |
23 |
-note 347382275362482 Something to note... |
24 |
``` |
25 |
|
26 |
## Viewing notes |
27 |
|
28 |
**Legacy Command** |
29 |
|
30 |
``` |
31 |
-noteget <NoteID> |
32 |
``` |
33 |
|
34 |
**Slash Command** |
35 |
|
36 |
``` |
37 |
/noteget <NoteID> |
38 |
``` |
39 |
|
40 |
{% hint style="info" %} |
41 |
Note IDs are shown when you create them. Also, running `-notes` command will list all notes for a user with their IDs. |
42 |
{% endhint %} |
43 |
|
44 |
#### Examples |
45 |
|
46 |
``` |
47 |
-noteget 3 |
48 |
``` |
49 |
|
50 |
## Viewing all notes for a user |
51 |
|
52 |
**Legacy Command** |
53 |
|
54 |
``` |
55 |
-notes <UserID|UserMention|UserTag> |
56 |
``` |
57 |
|
58 |
**Slash Command** |
59 |
|
60 |
``` |
61 |
/notes <User> |
62 |
``` |
63 |
|
64 |
#### Examples |
65 |
|
66 |
``` |
67 |
-notes @Someone |
68 |
-notes 72926658752652945 |
69 |
``` |
70 |
|
71 |
## Deleting notes |
72 |
|
73 |
**Legacy Command** |
74 |
|
75 |
``` |
76 |
-notedel <NoteID> |
77 |
``` |
78 |
|
79 |
**Slash Command** |
80 |
|
81 |
``` |
82 |
/notedel <NoteID> |
83 |
``` |
84 |
|
85 |
#### Examples |
86 |
|
87 |
``` |
88 |
-notedel 3 |
89 |
``` |