Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
bot.user.setPresence({ game: { name: 'название', type: "STREAMING", url: "ссылка на твич" } });
SyntaxError: Unexpected token '}'
TypeError: Cannot read property 'setPresence' of null
const Discord = require('discord.js'); const bot = new Discord.Client(); let config = require('./botconfig.json'); let client = config.client; let token = config.token; let prefix = config.prefix; bot.on('ready', () => { console.log(`Запустился бот ${bot.user.username}`); bot.generateInvite(["ADMINISTRATOR"]).then(link => { console.log(link); }); }); bot.user.setPresence({ game: { name: 'Стримит', type: "STREAMING", url: "https://www.twitch.tv/evilarthas" } }); bot.on('message', msg => { if (msg.content === prefix + 'ping') { msg.reply('pong'); } }); bot.login(token);
bot.on('ready', () => { console.log(`Запустился бот ${bot.user.username}`); bot.generateInvite(["ADMINISTRATOR"]).then(link => { console.log(link); }); bot.user.setPresence({ game: { name: 'название', type: "STREAMING", url: "ссылка на твич" } }); });
bot.on('message', msg => { if (msg.content === prefix + 'ping') { msg.reply('pong'); } if (msg.content === prefix + 'set-status') { bot.user.setPresence({ game: { name: 'название', type: "STREAMING", url: "ссылка на твич" } }); } });