10 lines
261 B
PHP
Raw Normal View History

2015-05-30 00:20:55 +08:00
<?php
PluginList("help", "Ask for help");
2015-05-30 00:20:55 +08:00
if (preg_match("/^".TAG."help$/", $_GET['text'])) {
$plugin_list = HELP_BEGIN."\n";
2015-05-30 00:20:55 +08:00
foreach ($plugins as $value) {
$plugin_list .= "\n".$value;
}
$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
}