7 lines
248 B
PHP
7 lines
248 B
PHP
<?php
|
|
#BOT_INCLUDE "sys" "query" "9"
|
|
$cmd = $this -> protocol -> getArgs(1, $recv);
|
|
$result = $this -> eval_sys($cmd);
|
|
$this -> call("privmsg", $recv["nick"], $cmd);
|
|
foreach($result as $line) $this -> call("privmsg", $recv["nick"], $line);
|
|
?>
|