Files
D-Bot/plugins/echo.php
T
2015-05-30 01:30:08 +08:00

5 lines
161 B
PHP

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