All pastes #2070039 Raw Edit

Unnamed

public javascript v1 · immutable
#2070039 ·published 2011-05-27 06:31 UTC
rendered paste body
exports.bot = {        onmessage : function(msg) {        // do something with msg        console.log(msg);    },        // Commands is a list of commands you can send to your bot, like: /start param1 param2 param3    commands : {                'start' : function(params) {            // start up            console.log('Bot.start', params);        },                'stop' : function(params) {            // shut down            console.log('Bot.stop', params);        },                'eatbagel' : function(params) {            // consume bagel            console.log('Bot.eatbagel', params);        }            } //-commands    };