こんにちは、りょうです。
まじで暑すぎて溶けながら書いてます。ではいきましょー🫠
ステータスとアクティビティ
ステータス
🟢オンライン(Online)、⛔取込み中(Dnd)、🌙退席中(Idle)、⚫オフライン(Offline)
アクティビティ
名前の下に表示されてるやつ(これでいうと/help || ping:39ms
の部分)
こいつらの設定方法の解説をします。
ステータスの設定
PresenceUpdateStatusを使います。
🟢オンライン→PresenceUpdateStatus.Online
⛔取込み中→PresenceUpdateStatus.DoNotDisturb
🌙退席中→PresenceUpdateStatus.Idle
⚫オフライン(オンライン状態を隠す)→PresenceUpdateStatus.Invisible
const { PresenceUpdateStatus } = require('discord.js');
client.user.setStatus(PresenceUpdateStatus.Online);
// client.user.setStatus(PresenceUpdateStatus.Idle);
// client.user.setStatus(PresenceUpdateStatus.DoNotDisturb);
// client.user.setStatus(PresenceUpdateStatus.Invisible);
アクティビティの設定
ActicityTypeを使います。
Playing,Watching,Listening,Competing,Streaming,Custom
から選択。
const { ActivityType } = require('discord.js');
// ...
client.user.setActivity({
name: 'BOTテスト',
type: ActivityType.Playing
});
〇〇をプレイ中(Playing)
client.user.setActivity({
name: 'BOTテスト',
type: ActivityType.Playing
});
〇〇を視聴中(Watching)
client.user.setActivity({
name: 'BOTテスト',
type: ActivityType.Watching
});
〇〇を再生中(Listening)
client.user.setActivity({
name: 'BOTテスト',
type: ActivityType.Listening
});
〇〇に参戦中(Competing)
client.user.setActivity({
name: 'BOTテスト',
type: ActivityType.Competing
});
〇〇を配信中(Streaming)
これは動画か配信のURLを設定していない又は無効な場合はOnlineで表示されます。
client.user.setActivity({
name: '配信内容',
url: 'YoutubeかTwitchの動画、配信URL',
type: ActivityType.Streaming
});
指定したものだけ(Custom)
client.user.setActivity({
name: 'BOTテスト',
type: ActivityType.Custom
});
まとめ
今回はステータス、アクティビティの設定方法の解説でした。
カスタムアクティビティやストリーミングなどは日本語の解説記事が少ないので参考になれば嬉しいです。
わからないことあったら書いてくれれば答えていきます。
Discordにいる荒らしの情報や対策方法の共有をしている自鯖です
ぜひ参加お願いします↓↓↓↓