mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 21:12:06 +00:00
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
var Discord = require( "discord.js" );
|
|
var myBot = new Discord.Client();
|
|
|
|
myBot.login( "hello@example.com", "password1" );
|
|
|
|
myBot.on( "message", function( message ) {
|
|
if ( message.content === "ping" ) {
|
|
this.sendMessage( message.channel, "pong" );
|
|
}
|
|
} );
|