-
Notifications
You must be signed in to change notification settings - Fork 26
Example Snippets
Nick Marus edited this page May 29, 2017
·
3 revisions
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)');
});
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).');
});
function helloRoom(bot) {
bot.say('Hello Room!');
}
flint.on('spawn', helloRoom);