1 |
# Taking notes for a user |
2 |
|
3 |
##### Legacy Command |
4 |
``` |
5 |
-note <UserID|UserMention|UserTag> <...NoteContent> |
6 |
``` |
7 |
|
8 |
##### Slash Command |
9 |
``` |
10 |
/note <User> <Content> |
11 |
``` |
12 |
|
13 |
#### Examples |
14 |
|
15 |
``` |
16 |
-note @Someone Something to note... |
17 |
-note 347382275362482 Something to note... |
18 |
``` |
19 |
|
20 |
## Viewing notes |
21 |
|
22 |
##### Legacy Command |
23 |
``` |
24 |
-noteget <NoteID> |
25 |
``` |
26 |
|
27 |
##### Slash Command |
28 |
``` |
29 |
/noteget <NoteID> |
30 |
``` |
31 |
|
32 |
!!! info |
33 |
|
34 |
Note IDs are shown when you create them. Also, running `-notes` command will list all notes for a user with their IDs. |
35 |
|
36 |
|
37 |
#### Examples |
38 |
|
39 |
``` |
40 |
-noteget 3 |
41 |
``` |
42 |
|
43 |
## Viewing all notes for a user |
44 |
|
45 |
##### Legacy Command |
46 |
``` |
47 |
-notes <UserID|UserMention|UserTag> |
48 |
``` |
49 |
|
50 |
##### Slash Command |
51 |
``` |
52 |
/notes <User> |
53 |
``` |
54 |
|
55 |
#### Examples |
56 |
|
57 |
``` |
58 |
-notes @Someone |
59 |
-notes 72926658752652945 |
60 |
``` |
61 |
|
62 |
## Deleting notes |
63 |
|
64 |
##### Legacy Command |
65 |
``` |
66 |
-notedel <NoteID> |
67 |
``` |
68 |
|
69 |
##### Slash Command |
70 |
``` |
71 |
/notedel <NoteID> |
72 |
``` |
73 |
|
74 |
#### Examples |
75 |
|
76 |
``` |
77 |
-notedel 3 |
78 |
``` |