D-Bot/plugins/echo.php
Denny Dai 88c6a081dd too tired to desc
too tired to desc
2015-06-26 13:19:40 +08:00

5 lines
175 B
PHP

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