Server name
Nickname
Channel Name
Script to execute
// Prevent PHP from stopping the script after sec set_time_limit(0); // Opening the socket to the CikAMAT network $socket = fsockopen("irc.webchat.org", 7000 ); // Send auth info fputs($socket,"USER Bobot cikamat.com :CikAMAT bot\n"); fputs($socket,"NICK Bobot\n"); // Join channel fputs($socket,"JOIN #cikamat\n"); // Force an endless while while(1) { // Continue the rest of the script here while($data = fgets($socket, 128)) { echo nl2br($data); flush(); // Separate all data $ex = explode(' ', $data); // Send PONG back to the server if($ex[0] == "PING"){ fputs($socket, "PONG ".$ex[1]."\n"); } // Say something in the channel $command = str_replace(array(chr(10), chr(13)), '', $ex[3]); if ($command == ":!sayit") { fputs($socket, "PRIVMSG ".$ex[2]." :CikAMAT bot testing!\n"); } if($command == ":!stopit") { fputs($socket,"PRIVMSG $ex[2] Bot stopped!\n"); die(); } } }
Go to Halaman Seram Cast