X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=Bots%2FIPv6.class.php;h=34f1b5c860fca8a2d36988f260f64b0d8765cf3f;hb=f5697bd40b017e99b8eba03577e468ec9763d11e;hp=36c6989dd9fb04c942b6d78b6b2405f74ec40d1c;hpb=9db307dc221fbc76673fcc6ca866df117aa30003;p=PHP-P10.git diff --git a/Bots/IPv6.class.php b/Bots/IPv6.class.php index 36c6989..34f1b5c 100644 --- a/Bots/IPv6.class.php +++ b/Bots/IPv6.class.php @@ -39,8 +39,8 @@ class {$_NAME} extends Bot { if(!$old) { $nick = "IPv6"; $ident = "ipv6"; - $ip = "fd00::C0CA:C01A:ADD5:11FE"; //coca cola adds life maybe someone undestands it :D - $host = $ip; + $ip = "0::0"; + $host = "fd00::C0CA:C01A:ADD5:11FE"; //coca cola adds life maybe someone undestands it :D $realname = "IPv6"; $modes = "ioknISD"; $this->ipv6 = $this->uplink->addUser($nick,$ident,$host,$ip,$modes,$realname); @@ -53,7 +53,7 @@ class {$_NAME} extends Bot { } ModCMD::bind($this, BIND_JOIN, "recive_join"); - ModCMD::bind($this, BIND_MODE, "recive_mode"); + ModCMD::bind($this, BIND_CHANMODE, "recive_mode"); ModCMD::bind($this, BIND_KICK, "recive_kick"); ModCMD::bind($this, BIND_QUIT, "recive_quit"); } @@ -79,7 +79,7 @@ class {$_NAME} extends Bot { return ($privs & P10_Channel::USERPRIV_OPED); } - public function receive_join($user, $channel) { + public function recive_join($user, $channel, $isBurst) { if(!$this->botOppedOnChannel($channel)) return false; $ipv6 = '/^((([0-9A-Fa-f]{1,4}:){7}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){6}:[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){5}:([0-9A-Fa-f]{1,4}:)?[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){4}:([0-9A-Fa-f]{1,4}:){0,2}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){3}:([0-9A-Fa-f]{1,4}:){0,3}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){2}:([0-9A-Fa-f]{1,4}:){0,4}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){6}((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|(([0-9A-Fa-f]{1,4}:){0,5}:((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|(::([0-9A-Fa-f]{1,4}:){0,5}((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|([0-9A-Fa-f]{1,4}::([0-9A-Fa-f]{1,4}:){0,5}[0-9A-Fa-f]{1,4})|(::([0-9A-Fa-f]{1,4}:){0,6}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){1,7}:))(|\/[0-9]{1,3})$/'; if(preg_match($ipv6, $user->getIP())) {