2015-05-30 00:20:55 +08:00
|
|
|
<?php
|
2015-05-30 01:30:08 +08:00
|
|
|
PluginList("help", "Ask for help");
|
2015-06-26 14:14:14 +08:00
|
|
|
if (preg_match("/^".TAG."help$/", $text)) {
|
2015-05-31 17:30:05 +08:00
|
|
|
$plugin_list = HELP_BEGIN."\n";
|
2015-05-30 00:20:55 +08:00
|
|
|
foreach ($plugins as $value) {
|
|
|
|
$plugin_list .= "\n".$value;
|
|
|
|
}
|
2015-05-31 17:30:05 +08:00
|
|
|
$plugin_list .= "\n\n".HELP_END;
|
2015-06-26 13:59:37 +08:00
|
|
|
$BOT->msg($from, $plugin_list);
|
2015-05-30 00:20:55 +08:00
|
|
|
}
|