3

自分のチャネルで使用しているPHPIRCロボットがあり、スクリプト内の特定のセットユーザーにOPを作成するために必要です。とにかく、私はロボットにユーザーがNickServにログインしているかどうかをチェックして、あらゆる種類の詐欺などを防止したいと思っています。

とにかく、これが私の接続と実行のコードであり、その下に本当に助けが必要なものが続きます。すべての助けに感謝します。:) Freenodeで、/ NS ACC [user]と入力すると、[user]が数値でログインしているかどうかが返され、3がログインし、0-2が何らかのログインしていないと判断しました。

ボットが私のIRCチャネルにログインする方法は次のとおりです...(freenodeで#tyreusに参加して、BwaddArr(または彼の電子メール)を要求してください)

<?php
set_time_limit(0);  //Stop the script timing out

$server = "irc.freenode.net";        //server to connect to
$channel = "#tyreus";               //channel to connect to initialy
$password = "sumpass";             //password for bot to login to irc
$pass2 = "anotherpass";               //password to make the bot do stuff
$users[0] = "0";                  //array of logged in users
$nickname = "Samcal";            //Set the bot's nick here
$logger = FALSE;                //for the channel logger
$takeover = FALSE;             //for the auto banner

$socket=fsockopen($server,'6667') ; //Connect and join the channel

stream_set_timeout($socket, 300);  //Set a timeout value (so the bot quits if it's disconnected)
fwrite($socket, "NICK ".$nickname."\r\n");
fwrite($socket, "USER ".$nickname." 8 * ::\x01VERSON 1.0 Brad's bot\x01\n");  //read rfc 1459 to understand this line

  while ($line=fgets($socket)) {
     echo htmlentities($line)."<br>"; 
       if (strpos($line, "433")>0) die("error nick in use");  //Quit if bot's nick is already taken (irc code 433 is received)

       if (strpos($line, "004")>0) {
          fwrite($socket, "JOIN ".$channel."\r\n"); //Join the channel if everything is ok (irc code 004 is received)
          fwrite($socket, "NickServ IDENTIFY ".$nickname." ".$password."\r\n");
          fwrite($socket, "ChanServ OP ".$channel." Samcal\r\n");
          fwrite($socket, "MODE ".$channel." +v Samcal \r\n");
          break;
       }
  }

そして、これは私が本当にすべての助けを必要とするところです!:)

 if(strpos($line, "PRIVMSG ".$channel." :+oB\r\n")>0) { //Command to make the bot run the command
    $name = "BwaddArr"; // my username, this can be easily changed to the other users who will need opping
    $command = "NickServ ACC $name"; // the NickServ command I was talking about
    $result = fwrite($socket, "$command \r\n"); // my attempt at retrieving the result
    $accr = readline(strpos($line, "$result \r\n")); //part 2 of my failure to retrieve a result
    $loggd = str_replace("3","three","$accr"); // replace '3' with 'three'
 if($loggd != "three") { // if result is not three do below
    fwrite($socket, "PRIVMSG ".$channel." :$name is not logged in. \r\n"); // write into the chat that the user is not logged in
}
 if($loggd == "three") { // OP the user if they are logged in
    fwrite($socket, "MODE ".$channel." +ov $name\r\n"); // sends the OPping command
}
}
?>
4

4 に答える 4

1

2 番目のスニペットは while(fgets()) ループ内にあると仮定します。

その場合、 fwrite() を使用するループには結果がありません。後に別の fgets() を追加するか

$result = fwrite($socket, "$command \r\n");

または、その結果としてループを使用し、ステータスフラグを追加して、本体の次の実行を処理する方法を知ることができます。

于 2009-01-06T08:22:33.950 に答える
0

まず、ボットのパスワードを削除します。(修正済み)

IRC に関するいくつかのヒントを提供してください。幸運を祈ります。あなたは正しい道を進んでいます。

于 2009-01-06T02:44:47.363 に答える
0

私は若い頃、1つやりました。

私はそのようなループを使用しました:

$irc = fsockopen($server, $port);
// ...
while(!feof($irc))
{
     $line = fgets($irc, 2048);

     // ...
     // Parsing $line here
     // ...
}

お役に立てれば。

于 2009-01-06T14:55:53.160 に答える