mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
/*
|
|
* A bot that shows how to mention users in messages and how to
|
|
* access user avatars.
|
|
*/
|
|
|
|
var Discord = require( "discord.js" );
|
|
var myBot = new Discord.Client();
|
|
|
|
myBot.login( "hello@example.com", "password1" );
|
|
|
|
myBot.on( "message", function( message ) {
|
|
// React to all messages with the content "$avatar"
|
|
if ( message.content === "$avatar" ) {
|
|
// Obtain the user who requested the avatar.
|
|
var user = message.author;
|
|
|
|
// Check whether the user actually has an avatar.
|
|
if ( user.avatar ) {
|
|
// Construct the avatar URL from the user ID and the avatar ID.
|
|
var url = "https://discordapp.com/api/users/" + user.id + "/avatars/" + user.avatar + ".jpg";
|
|
|
|
// A user can be mentioned in a message by inserting the string obtained
|
|
// by user.mention() into the message.
|
|
// Note that simply writing "@user" will NOT work.
|
|
bot.sendMessage( message.channel, message.author.mention() + ", here's your avatar: " + url );
|
|
} else {
|
|
// Nothing should be done if the user has not set an avatar.
|
|
bot.sendMessage( message.channel, message.author.mention() + ", you don't have an avatar!" );
|
|
}
|
|
}
|
|
} );
|