added isLocalAddress method to IPAddr.class.php to check for local addresses (RFC1918...
[PHP-P10.git] / Bots / MCBot.class.php
index d7a4c80e58f11c740d8291cd593829bcc9952f6b..8b502809c3ff196cfee4dffbd8caf75947b8d970 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 /******************************* PHP-P10 v2 *****************************
- * Copyright (C) 2011  Philipp Kreil (pk910)                            *
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)                       *
  *                                                                      *
  * This program is free software: you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  * the Free Software Foundation, either version 3 of the License, or    *
  * (at your option) any later version.                                  *
- *                                                                      * 
+ *                                                                      *
  * This program is distributed in the hope that it will be useful,      *
  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
@@ -16,7 +16,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  *                                                                      *
  ************************************************************************
- * 
+ *
  *  Bots/MCBot.class.php
  *
  * MCBot bot...
@@ -26,7 +26,7 @@
 class {$_NAME} extends Bot {
        private $uplink;
        private $mcbot;
-       
+
        public function load($uplink, $old = false) {
                $this->uplink = $uplink;
                if(!$old) {
@@ -44,11 +44,11 @@ class {$_NAME} extends Bot {
                } else {
                        $this->mcbot = $old;
                }
-               
+
                ModCMD::bind($this, BIND_JOIN, "recive_join");
                ModCMD::bind($this, BIND_QUIT, "recive_quit");
        }
-       
+
        public function unload($rehash = false) {
                if($rehash) {
                        return $this->mcbot;
@@ -56,19 +56,19 @@ class {$_NAME} extends Bot {
                        $this->uplink->delUser($this->mcbot, "Bye.");
                }
        }
-       
+
        private function botOppedOnChannel($channel) {
                $privs = $channel->getUserPrivs($this->mcbot);
                return ($privs & P10_Channel::USERPRIV_OPED);
        }
-       
+
        public function recive_join($user, $channel, $isBurst) {
                if(!$this->botOppedOnChannel($channel)) return false;
                if(preg_match("#(.*).spoof.minecraft.WebGamesNet#i",$user->getHost())) {
                        $this->uplink->mode($this->mcbot, $channel, "+v ".$user->getNumeric());
                }
        }
-       
+
        public function recive_quit($user, $reason) {
                if($user === $this->mcbot) {
                        $this->load($this->uplink);