phpircbot2/commands/ip.prefix.php

8 lines
364 B
PHP
Raw Permalink Normal View History

2010-11-21 23:13:54 +01:00
<?php
#BOT_INCLUDE "ip" "prefix" "1"
$data = $this -> protocol -> getArgs(1, $recv);
if(trim($data) == "") $data = $recv["iphost"];
$ip = gethostbyname($data);
if($ip == $data) $this -> call("privmsg", $recv["origin"], $recv["nick"].", your dns could not be resolved.");
else $this -> call("privmsg", $recv["origin"], $recv["nick"].", your ip is: ".$ip);
?>