ユーザーの端末ごとのステータスを送信するボットのサンプル
code:js
const Discord = require('discord.js')
const client = new Discord.Client({
})
client.on('ready', () => {
console.log(Logged in as ${client.user.tag}!)
})
client.on('message', message => {
if (message.member) {
return message.channel.send('サーバー内で実行してください。')
}
if (message.content === 'status') {
const userStatus = message.member.presence.clientStatus
if (!userStatus) {
return message.channel.send('どのデバイスからもアクセスされていません。')
}
message.channel.send(
[
'desktop: ' + (userStatus.desktop || 'offline'),
'mobile: ' + (userStatus.mobile || 'offline'),
'web: ' + (userStatus.web || 'offline'),
].join('\n')
)
}
})
client.login('TOKEN')
code:js
const Discord = require('discord.js')
const client = new Discord.Client()
client.on('ready', () => {
console.log(Logged in as ${client.user.tag}!)
})
client.on('message', message => {
if (message.content === 'status') {
const userStatus = message.author.presence.clientStatus
if (!userStatus) {
return message.channel.send('どのデバイスからもアクセスされていません。')
}
message.channel.send(
[
'desktop: ' + (userStatus.desktop || 'offline'),
'mobile: ' + (userStatus.mobile || 'offline'),
'web: ' + (userStatus.web || 'offline'),
].join('\n')
)
}
})
client.login('TOKEN')