From 26c1a000de0ca9bb9d6f19db544735737a9f8fcf Mon Sep 17 00:00:00 2001 From: pk910 Date: Wed, 14 Dec 2011 22:06:53 +0100 Subject: [PATCH] fixed ExampleBot.class.php --- Bots/ExampleBot.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"); -- 2.20.1