From 52c303ccd37509c81b23c9240d5965f9f9a633c6 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Sun, 26 Aug 2012 15:29:34 -0400 Subject: [PATCH] Added factoid help query --- plugins/factoid.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/factoid.go b/plugins/factoid.go index 48b6d31..6edf28a 100644 --- a/plugins/factoid.go +++ b/plugins/factoid.go @@ -135,7 +135,8 @@ func (p *FactoidPlugin) LoadData() { // Help responds to help requests. Every plugin must implement a help function. func (p *FactoidPlugin) Help(channel string, parts []string) { - p.Bot.SendMessage(channel, "Sorry, Factoid does not do a goddamn thing.") + p.Bot.SendMessage(channel, "I can learn facts and spit them back out. You can say \"this is that\" or \"he $5\". Later, trigger the factoid by just saying the trigger word, \"this\" or \"he\" in these examples.") + p.Bot.SendMessage(channel, "I can also figure out some variables including: $nonzero, $digit, $nick, and $someone.") } // Empty event handler because this plugin does not do anything on event recv