Skip to content

$clientTyping

$clientTyping will make your bot type in a channel (show that it’s typing).

Usage

$clientTyping

Example(s)

This will display your bot as typing and send “Hello!” as message:

1
client.command({
2
name: "clientTyping",
3
code: `
4
Hello!
5
$clientTyping
6
`
7
});