'', // Put your Bot token here from https://discord.com/developers/applications/ ]); // When the Bot is ready $discord->on('ready', function (Discord $discord) { // Listen for messages $discord->on('message', function (Message $message, Discord $discord) { // If message is from a bot if ($message->author->bot) { // Do nothing return; } // If message is "ping" if ($message->content == 'ping') { // Reply with "pong" $message->reply('pong'); } }); }); // Start the Bot (must be at the bottom) $discord->run();