From: pk910 Date: Wed, 14 Dec 2011 21:06:53 +0000 (+0100) Subject: fixed ExampleBot.class.php X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=commitdiff_plain;h=26c1a000de0ca9bb9d6f19db544735737a9f8fcf fixed ExampleBot.class.php --- diff --git a/Bots/ExampleBot.class.php b/Bots/ExampleBot.class.php index b355205..83b0afc 100644 --- a/Bots/ExampleBot.class.php +++ b/Bots/ExampleBot.class.php @@ -42,10 +42,11 @@ class {$_NAME} extends Bot { // {$_NAME} will be replaced by our script later ; $nick = "ExampleBot"; // Please note: If this user already exists on another Server it will be killed! $ident = "Example"; $host = "Example.Bot"; + $ip = "::1"; $realname = "Thats an example Bot :)"; $modes = "i"; //we don't need a leading + (that will be added automatically) - $this->example_bot = $this->uplink->addUser($nick,$ident,$host,$realname,$uptime,$modes); //addUser($nick, $ident, $host, $ip, $modes, $realname) + $this->example_bot = $this->uplink->addUser($nick, $ident, $host, $ip, $modes, $realname); //addUser($nick, $ident, $host, $ip, $modes, $realname) if(is_a($this->example_bot, "P10_User")) { // A new user was created :) //ok let's join a channel $this->uplink->join($this->example_bot, "#test");