From 5f166d12a9e74d0763966eb74ee571bdbd907920 Mon Sep 17 00:00:00 2001 From: TLC Date: Sat, 10 Mar 2018 13:33:08 -0700 Subject: [PATCH] contact info --- charlieBot/scripts/contactInfo.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 charlieBot/scripts/contactInfo.js diff --git a/charlieBot/scripts/contactInfo.js b/charlieBot/scripts/contactInfo.js new file mode 100644 index 0000000..14b937e --- /dev/null +++ b/charlieBot/scripts/contactInfo.js @@ -0,0 +1,21 @@ +// Description: +// Example scripts for you to examine and try out. +// commands: + +module.exports = function(robot) { + robot.hear(/hostInfo/i, function(res) { + res.send("To contact the hosts, direct message Scott Bowman or Charlie Beck."); + }); + robot.hear(/hackathonInfo/i, function(res) { + res.send("For more information on the hackathon, direct message Scott Bowman"); + }); + robot.hear(/organizerInfo/i, function(res) { + res.send("To contact the organizers, direct message Scott Bowman or Charlie Beck."); + }); + robot.hear(/furtherInfo/i, function(res) { + res.send("To contact the hosts, direct message Scott Bowman or Charlie Beck."); + }); + robot.hear(/volunteerInfo/i, function(res) { + res.send("To volunteer, direct message Scott Bowman."); + }); +}; \ No newline at end of file