Skip to content

Example Snippets

Nick Marus edited this page May 29, 2017 · 3 revisions

Markdown

bot.say('markdown', '**Hello**, please check out my webpage [here.](http://google.com)');
// set markdown to be the default message format... 
flint.messageFormat = 'markdown';

flint.hears('hello', function(bot, trigger) {
  bot.say('**Hello**, please check out my webpage [here.](http://google.com)');
});

Using Mention Event

flint.on('mentioned', function(bot, trigger) {
  bot.say('markdown', '***Automated message:*** I am currently out of the office... For immediate assistance, please try [here](http://google.com).');
});

Sending a message when a bot is added to a room

function helloRoom(bot) {
  bot.say('Hello Room!');
}

flint.on('spawn', helloRoom);
Clone this wiki locally