Results 1 to 12 of 12

Thread: WTB ethernal to stop posting!

  1. #1

    WTB ethernal to stop posting!

    paying well
    Splitfridge// lvl 191 omni doc
    Splitbanana// lvl 110 omni trader -_-
    Spitfridge// lvl 53 enf (yeah he probably killed ur alt)
    Splitanut// lvl 22 mp (watch me solo your base)

    SPLIT > YOU

  2. #2

  3. #3
    w00t
    Splitfridge// lvl 191 omni doc
    Splitbanana// lvl 110 omni trader -_-
    Spitfridge// lvl 53 enf (yeah he probably killed ur alt)
    Splitanut// lvl 22 mp (watch me solo your base)

    SPLIT > YOU

  4. #4
    I think I might have one in my bank.. I'll check. It'll cost a lot tho

    ~Chris

  5. #5
    Here, I pulled this outta my bank:

    http://forums.anarchy-online.com/sea...der=descending

    that's about half my posts

    Old account got fuxxed up, I should have ~2k more, but, it wont list 'em :/

    ~Chris

  6. #6
    well
    i got 10 people to bid 500 credit each
    so u get 5k credits to stop posting
    Splitfridge// lvl 191 omni doc
    Splitbanana// lvl 110 omni trader -_-
    Spitfridge// lvl 53 enf (yeah he probably killed ur alt)
    Splitanut// lvl 22 mp (watch me solo your base)

    SPLIT > YOU

  7. #7

  8. #8
    plz i am p00r
    splitbanana took mey monies
    Splitfridge// lvl 191 omni doc
    Splitbanana// lvl 110 omni trader -_-
    Spitfridge// lvl 53 enf (yeah he probably killed ur alt)
    Splitanut// lvl 22 mp (watch me solo your base)

    SPLIT > YOU

  9. #9

  10. #10
    PHP Code:
                if ($word1=="blob")
                {

                    
    $reply="click ".chr(17)."here".chr(18)." to see a popup window";
                    
    $window_contents=MakeTextBlob(substr($args[1],5));

                    
    // send the tell out
                    
    if ($guildchattell==1)
                    {
                        
    $aoc->send_tell($aoc->id[$args[0]], $reply$window_contents);
                        echo 
    "To [$sender]: ".stripcolors($reply)."\n";
                    }

                } 

  11. #11
    i like the gimpy engy
    "Tron u have nothing to fear, your the best program I ever wrote."

  12. #12
    PHP Code:
    <?php

      
    if((float)phpversion() < 4.1)
      {
        die(
    "AOChat class needs PHP version >= 4.1.0 to work.\n");
      }

      if(!
    extension_loaded("sockets"))
      {
        die(
    "AOChat class needs Sockets extension to work.\n");
      }

      if(!
    extension_loaded("gmp") && !extension_loaded("bcmath"))
      {
        die(
    "AOChat class needs either GMP or BCMath extension to work.\n");
      }

      
    set_time_limit(0);

      class 
    AOChat
      
    {
        var 
    $id$gid$socket$callback$debug$chars$state$cbargs;


        function 
    PingServer()
        {
           
    $this->send_packet(new AOChatPacket("out"100"PING!"));
        }



        function 
    AOChat($cb$args 0)
        {
          global 
    $dimension;
          
    $this -> callback $cb;
          
    $this -> cbargs   $args;
          
    $this -> id  = array();
          
    $this -> gid = array();
          
    $this -> state "auth";

          
    $s socket_create(AF_INETSOCK_STREAMSOL_TCP);
          if(!
    is_resource($s))
            die(
    "Could not create socket.\n");

          if(
    socket_connect($s$dimension7012) == false)
            die(
    "Could not connect to the chat server.\n");

          
    $this -> socket $s;

          
    $packet $this -> get_packet();
          if(!
    is_object($packet) || $packet -> type != 0)
            die(
    "Invalid greeting packet.\n");
        }

        function 
    wait_for_packet($time 1)
        {
          
    $sec = (int)$time;
          if(
    is_float($time))
            
    $usec = (int)($time 1000000 1000000);
          else
            
    $usec 0;

          if(!
    socket_select($a = array($this->socket), $b null$c null$sec$usec))
            return 
    false;

          return 
    $this -> get_packet();
        }

        function 
    get_packet()
        {
          
    $head socket_read($this -> socket4);
          if(
    strlen($head) != 4)
            return 
    false;

          list(, 
    $type$len) = unpack("n2"$head);

          
    $data socket_read($this -> socket$len);
          if(
    strlen($data) != $len)
            return 
    false;

          if(
    is_resource($this -> debug))
          {
            
    fwrite($this -> debug"<<<<<\n");
            
    fwrite($this -> debug$head);
            
    fwrite($this -> debug$data);
            
    fwrite($this -> debug"\n=====\n");
          }

          
    $packet = new AOChatPacket("in"$type$data);

          switch(
    $type)
          {
            case 
    :
              
    $this -> serverseed $packet -> args[0];
              break;

            case 
    20 :
            case 
    21 :
              list(
    $id$name) = $packet -> args;
              
    $id   "" $id;
              
    $name ucfirst(strtolower($name));
              
    $this -> id[$id]   = $name;
              
    $this -> id[$name] = $id;
              break;

            case 
    60 :
              list(
    $gid$name) = $packet -> args;
              
    $this -> gid[$gid]  = $name;
              
    $this -> gid[$name] = $gid;
              break;
          }

          if(
    function_exists($this -> callback))
          {
            
    call_user_func($this -> callback$packet -> type$packet -> args$this -> cbargs);
          }

          return 
    $packet;
        }

        function 
    send_packet($packet)
        {
          
    $data pack("n2"$packet->typestrlen($packet->data)) . $packet -> data;
          if(
    is_resource($this -> debug))
          {
            
    fwrite($this -> debug">>>>>\n");
            
    fwrite($this -> debug$data);
            
    fwrite($this -> debug"\n=====\n");
          }
          
    socket_write($this -> socket$datastrlen($data));
        }

        function 
    authenticate($username$password)
        {
          if(
    $this -> state != "auth")
            die(
    "AOChat: not expecting authentication.\n");

          
    $key $this -> generate_login_key($this -> serverseed$username$password);
          
    $pak = new AOChatPacket("out"2, array(0$username$key));
          
    $this -> send_packet($pak);
          
    $packet $this -> get_packet();
          if(
    $packet -> type != 7)
          {
            return 
    false;
          }

          
    $chars = array();
          for(
    $i=0;$i<sizeof($packet -> args[0]);$i++)
          {
            
    $chars[] = array(
              
    "id"     => $packet -> args[0][$i],
              
    "name"   => strtolower($packet -> args[1][$i]),
              
    "level"  => $packet -> args[2][$i],
              
    "online" => $packet -> args[3][$i]);
          }

          
    $this -> username $username;
          
    $this -> chars    $chars;
          
    $this -> state    "login";

          return 
    $chars;
        }

        function 
    login($char)
        {
          if(
    $this -> state != "login")
            die(
    "AOChat: not expecting login.\n");

          if(
    is_int($char))
            
    $field "id";
          else if(
    is_string($char))
            
    $field "name";

          if(!
    is_array($char))
          {
            if(empty(
    $field))
            {
              return 
    false;
            }
            else
            {
              foreach(
    $this -> chars as $e)
              {
                if(
    $e[$field] == $char)
                {
                  
    $char $e;
                  break;
                }
              }
            }
          }

          if(!
    is_array($char))
          {
            die(
    "AOChat: no valid character to login.\n");
          }

          
    $pq = new AOChatPacket("out"3$char["id"]);
          
    $this -> send_packet($pq);
          
    $pr $this -> get_packet();
          if(
    $pr -> type != 5)
          {
            return 
    false;
          }

          
    $this -> char  $char;
          
    $this -> state "ok";

          return 
    true;
        }

        function 
    lookup_user($u)
        {
          
    $u ucfirst(strtolower($u));

          if(
    $this -> id[$u])
          {
            return 
    $this -> id[$u];
          }

          
    $this -> send_packet(new AOChatPacket("out"21$u));

          
    $cnt 0;
          do
          {
            if(
    $cnt ++ > 100)
            {
              return 
    false;
            }
            
    $this -> get_packet();
          }
          while(!
    $this -> id[$u]);

          return 
    $this -> id[$u];
        }



        function 
    privategroup_invite($u)
        {
          
    $this -> send_packet(new AOChatPacket("out"50$u));
        }

        function 
    privategroup_kick($u)
        {
          
    $this -> send_packet(new AOChatPacket("out"51$u));
        }







        function 
    lookup_group($g)
        {
          if(
    $this -> gid[$g])
          {
            return 
    $this -> gid[$g];
          }

          return 
    false;
        }

        function 
    send_tell($user$msg$blob "\0")
        {
          
    $uid $this -> lookup_user($user);
          if(!
    $uid || $uid == 0xFFFFFFFF)
          {
            return 
    false;
          }

          
    $this -> send_packet(new AOChatPacket("out"30, array($uid$msg$blob)));
          return 
    true;
        }

        function 
    send_group($group$msg$blob "\0")
        {
          
    $gid $this -> lookup_group($group);
          if(!
    $gid || empty($gid))
          {
            return 
    false;
          }

          
    $this -> send_packet(new AOChatPacket("out"65, array($gid$msg$blob)));
          return 
    true;
        }

        function 
    send_privgroup($group$msg$blob "\0")
        {
          
    $this -> send_packet(new AOChatPacket("out"57, array($group$msg$blob)));
          return 
    true;
        }

        function 
    join_privgroup($group)
        {
          
    $this -> send_packet(new AOChatPacket("out"52, array($group)));
          return 
    true;
        }

        function 
    get_random_number($cap)
        {
          global 
    $random_seeded;

          if(
    $random_seeded != true)
          {
            
    mt_srand((double)microtime()*1000000);
            
    $random_seeded true;
          }

          return 
    mt_rand(0,$cap-1);
        }

        function 
    get_random_hex_key($n)
        {
          
    $s "";
          for(
    $i=0;$i<$n;$i++)
          {
            
    $s sprintf("%s%02x"$s$this -> get_random_number(0xff));
          }

          return 
    $s;
        }

        function 
    bighexdec($x)
        {
          if(
    substr($x02) != "0x")
            return 
    $x;
          
    $r "0";
          for(
    $p $q strlen($x) - 1$p >= 2$p--)
          {
            
    $r bcadd($rbcmul(hexdec($x[$p]), bcpow(16$q $p)));
          }
          return 
    $r;
        }

        function 
    bigdechex($x)
        {
          
    $r "";
          while(
    $x != "0")
          {
            
    $r dechex(bcmod($x16)) . $r;
            
    $x bcdiv($x16);
          }
          return 
    $r;
        }

        function 
    bcmath_powm($x$y$z)
        {
          
    $x $this -> bighexdec($x);
          
    $y $this -> bighexdec($y);
          
    $z $this -> bighexdec($z);

          
    $r 1;
          
    $p $x;

          while(
    1)
          {
            if(
    bcmod($y2))
            {
              
    $r bcmod(bcmul($p$r), $z);
              
    $y bcsub($y"1");
              if(
    bccomp($y"0") == 0)
              {
                return 
    $this -> bigdechex($r);
              }
            }
            
    $y bcdiv($y2);
            
    $p bcmod(bcmul($p$p), $z);
          }
        }

        function 
    my_powm($x$y$z)
        {
          if(
    extension_loaded("gmp"))
          {
            return 
    gmp_strval(gmp_powm($x$y$z), 16);
          }
          else if(
    extension_loaded("bcmath"))
          {
            return 
    $this -> bcmath_powm($x$y$z);
          }
          else
          {
            die(
    "my_powm(): no idea how to do powm...\n");
          }
        }

        function 
    generate_login_key($servkey$username$password)
        {
          
    $keya "0xeca2e8c85d863dcdc26a429a71a9815ad052f6139669dd659f98ae159d313d13c6bf2838e10a69b6478b64a24bd054ba8248e8fa778703b418408249440b2c1edd28853e240d8a7e49540b76d120d3b1ad2878b1b99490eb4a2a5e84caa8a91cecbdb1aa7c816e8be343246f80c637abc653b893fd91686cf8d32d6cfe5f2a6f";
          
    $keyb "0x9c32cc23d559ca90fc31be72df817d0e124769e809f936bc14360ff4bed758f260a0d596584eacbbc2b88bdd410416163e11dbf62173393fbc0c6fefb2d855f1a03dec8e9f105bbad91b3437d8eb73fe2f44159597aa4053cf788d2f9d7012fb8d7c4ce3876f7d6cd5d0c31754f4cd96166708641958de54a6def5657b9f2e92";
          
    $keyc "0x5";
          
    $keym "0x" $this -> get_random_hex_key(16);

          
    $dkey $this -> my_powm($keyc$keym$keya);
          
    $ckey $this -> my_powm($keyb$keym$keya);

          
    $str sprintf("%s|%s|%s"$username$servkey$password);

          if(
    strlen($ckey) < 32)
            
    $ckey str_repeat("0"32-strlen($ckey)) . $ckey;
          else
            
    $ckey substr($ckey032);

          
    $prefix pack("H16"$this -> get_random_hex_key(8));
          
    $length 16 strlen($str); // prefix, int, ...
          
    $pad    str_repeat(" ", ($length 8) % 8);
          
    $strlen pack("N"strlen($str));

          
    $plain   $prefix $strlen $str $pad;
          
    $crypted $this -> aocrypt($ckey$plain);

          return 
    $dkey "-" $crypted;
        }

        function 
    aocrypt($key$str)
        {
          if(
    strlen($key) != 32)
          {
            return 
    false;
          }

          if(
    strlen($str) % != 0)
     
    Info",              "args"=>"iii")),
        "
    out" => array(
             2=>array("
    name"=>"Login Response GetCharLst", "args"=>"ISS"),
             3=>array("
    name"=>"Login Select Character",    "args"=>"I"),
            21=>array("
    name"=>"Name Lookup",               "args"=>"S"),
            30=>array("
    name"=>"Message Private",           "args"=>"ISS"),
            40=>array("
    name"=>"Buddy Add",                 "args"=>"IS"),
            41=>array("
    name"=>"Buddy Remove",              "args"=>"I"),
            42=>array("
    name"=>"Onlinestatus Set",          "args"=>"I"),
            50=>array("
    name"=>"Privategroup Invite",       "args"=>"I"),
            51=>array("
    name"=>"Privategroup Kick",         "args"=>"I"),
            52=>array("
    name"=>"Privategroup Join",         "args"=>"I"),
            54=>array("
    name"=>"Privategroup Kickall",      "args"=>""),
            57=>array("
    name"=>"Privategroup Message",      "args"=>"ISS"),
            64=>array("
    name"=>"Group Data Set",            "args"=>"GIS"),
            65=>array("
    name"=>"Group Message",             "args"=>"GSS"),
            66=>array("
    name"=>"Group Clientmode Set",      "args"=>"GIIII"),
            70=>array("
    name"=>"Clientmode Get",            "args"=>"IG"),
            71=>array("
    name"=>"Clientmode Set",            "args"=>"IIII"),
           100=>array("
    name"=>"Ping",                      "args"=>"S"),
           120=>array("
    name"=>"cc",                        "args"=>"s")));

      class AOChatPacket
      {
        function AOChatPacket(
    $dir$type$data)
        {
          global 
    $packetmap;

          
    $this -> args = array();
          
    $this -> type = $type;
          
    $this -> dir  = $dir;
          
    $pmap = $packetmap[$dir][$type];

          if(!
    $pmap)
          {
            echo "
    Unsupported packet type (".$dir."".$type.")\n";
            return false;
          }

          if(
    $dir == "in")
          {
            if(!is_string(
    $data))
            {
              echo "
    Incorrect argument for incoming packetexpecting a string.\n";
              return false;
            }

            for(
    $i=0; $i<strlen($pmap["args"]); $i++)
            {
              
    $sa = $pmap["args"][$i];
              switch(
    $sa)
              {
                case "
    I" :
                  
    $res  = array_pop(unpack("N", $data));
                  
    $data = substr($data, 4);
                  break;

                case "
    S" :
                  
    $len  = array_pop(unpack("n", $data));
                  
    $res  = substr($data, 2, $len);
                  
    $data = substr($data, 2 + $len);
                  break;

                case "
    G" :
                  
    $res  = substr($data, 0, 5);
                  
    $data = substr($data, 5);
                  break;

                case "
    i" :
                  
    $len  = array_pop(unpack("n", $data));
                  
    $res  = array_values(unpack("N" . $len, substr($data, 2)));
                  
    $data = substr($data, 2 + 4 * $len);
                  break;

                case "
    s" :
                  
    $len  = array_pop(unpack("n", $data));
                  
    $data = substr($data, 2);
                  
    $res  = array();
                  while(
    $len--)
                  {
                    
    $slen  = array_pop(unpack("n", $data));
                    
    $res[] = substr($data, 2, $slen);
                    
    $data  = substr($data, 2+$slen);
                  }
                  break;

                default :
                  echo "
    Unknown argument type! (" . $sa . ")\n";
                  continue(2);
              }
              
    $this -> args[] = $res;
            }
          }
          else
          {
            if(!is_array(
    $data))
            {
              
    $args = array($data);
            }
            else
            {
              
    $args = $data;
            }
            
    $data = "";

            for(
    $i=0; $i<strlen($pmap["args"]); $i++)
            {
              
    $sa = $pmap["args"][$i];
              
    $it = array_shift($args);

              if(is_null(
    $it))
              {
                echo "
    Missing argument for packet.\n";
                break;
              }

              switch(
    $sa)
              {
                case "
    I" :
                  
    $data .= pack("N", $it);
                  break;

                case "
    S" :
                  
    $data .= pack("n", strlen($it)) . $it;
                  break;

                case "
    G" :
                  
    $data .= $it;
                  break;

                default :
                  echo "
    Unknown argument type! (" . $sa . ")\n";
                  continue(2);
              }
            }

            
    $this -> data = $data;
          }
          return true;
        }

      }

    ?>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •