2015-05-29 11:20:55 -05:00
|
|
|
<?php
|
2016-06-16 04:20:20 -05:00
|
|
|
PluginSet("Show help",null,false);
|
|
|
|
$plugin_list = HELP_BEGIN."\n";
|
|
|
|
foreach ($plugins as $value) {
|
|
|
|
if ($value['visible'] == True) {
|
|
|
|
$plugin_list .= "\n".$value['desc'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$plugin_list .= "\n\n".HELP_END;
|
|
|
|
$BOT->msg($from, $plugin_list);
|