D-Bot/plugins/echo.php
2015-05-30 00:20:55 +08:00

5 lines
147 B
PHP

<?php
PluginList("echo", "输出");
if (preg_match("/^".TAG."echo (.*)$/", $_GET['text'], $matches)) {
$BOT->exec("msg ".$from." ".$matches[1]);
}