Skip to content

Instantly share code, notes, and snippets.

@dkarzon
Last active December 28, 2015 01:29
Show Gist options
  • Save dkarzon/7420857 to your computer and use it in GitHub Desktop.
Save dkarzon/7420857 to your computer and use it in GitHub Desktop.
mmbot responses for Greg
var robot = Require<Robot>();
robot.Respond(".*", msg =>
{
if (msg.Message.User.Name.ToLower().Contains("greg"))
{
var things = new List<string>
{
"blah blah blah",
"Leave me alone greg",
"Windmills do not work that way.",
"Some sort of treasure map",
"Do I look stupid to you?"
};
msg.Send(msg.Random(things));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment