Kaytitulaer2008
Kaytitulaer2008

Reputation: 1

Other discord bot status

So i want my bot status just to be my prefix is ! or something like that. But the only options i could find is where it starts with streaming, playing, watching, competing and listening. Is there a way to do it without that?

Upvotes: 0

Views: 124

Answers (1)

FxllenCode
FxllenCode

Reputation: 73

You would have to use client.user.setPresence().

 client.user.setPresence({
      status: 'online',
      activity: {
        type: 'WATCHING',
        name: 'my prefix is !'
      }
    })
  }

Upvotes: 1

Related Questions