Initial import.

This commit is contained in:
Jan Philipp Timme
2010-11-21 22:13:54 +00:00
parent 85f7da38b6
commit 6b39d44754
52 changed files with 1395 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
#BOT_INCLUDE "stats" "prefix" "0"
$total = $this -> eval_sys("find * | grep -i php | xargs cat | wc -l");
$stats = "";
$stats .= "Memory: ".number_format(memory_get_usage(true) / 1024)."KB ";
$stats .= "(Peak: ".number_format(memory_get_peak_usage(true) / 1024)."KB)";
$stats .= " - Code: ".number_format($total[0])." lines";
$this -> call("privmsg", $recv["origin"], $stats);
?>