1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?php
set_time_limit(0);
$socket = fsockopen("irc.rizon.net", 6667);
fputs($socket,"USER CMbot combined-minds.net CM :CM bot\n");
fputs($socket,"NICK CM-bot\n");
fputs($socket,"JOIN #cm-bot-test\n");
while(1) {
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");
}
$command = str_replace(array(chr(10), chr(13)), '', $ex[3]);
if ($command == ":!sayit") {
fputs($socket, "PRIVMSG ".$ex[2]." :asd irc bot tu!\n");
}
}
}
?> |