0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Discord.js でBOTのステータスをスマホにする方法

Last updated at Posted at 2024-04-03

スマホステータスとは

Discordを使用している端末がスマホである場合、このようなステータスになります。

これをスマホステータス(正式名称は知りません)と言います。

スクリーンショット 2024-04-04 4.17.49.png

どうやるの?

clinet 部分で ws をいじってやる。

const { Client, GatewayIntentBits, SimpleShardingStrategy } = require('discord.js');

const client = new Client({
   intents: [
      GatewayIntentBits.Guilds
   ],
   ws: {
      buildStrategy: (manager) =>
         new (class MobileSimpleShardingStrategy extends SimpleShardingStrategy {
            constructor(manager) {
               manager.options.identifyProperties = {
                  os: 'ios',
                  device: 'device',
                  browser: 'Discord iOS'
               };
               super(manager);
            }
         })(manager)
   }
});

client.on('ready', () => {
    console.log(`起動: ${client.user.tag}`);
});

client.login('token');

起動してみる

node index.js

スクリーンショット 2024-04-04 4.34.54.png

スマホステータスになってますね!
miro.png

最後に

無料で神アプリあればコメント欄に投げてください。

有料かつ安くてあんまり人気はないけど実は結構優れているアプリがあればコメント欄に投げてください。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?