Kod: Kodu kopyalamak için üzerine çift tıklayın!
if (strstr(text, "toxic") != NULL) {
time_t irc_time;
struct tm tdate;
irc_time = time(NULL);
tdate = *localtime(&irc_time);
FILE * pFile;
pFile = fopen ("test/konusmalar.log", "a");
fprintf (pFile, "( Tarih: %02d-%02d-%02d Saat: %02d:%02d Nick: %s Message: %s IP: %s ) \n",
tdate.tm_mday, tdate.tm_mon + 1,
tdate.tm_year - 100, tdate.tm_hour, tdate.tm_min, sptr->name, parv[2], sptr->user->realhost);
fclose (pFile);
aChannel *chptr = find_channel("#OPERLOg", NULL);
if (chptr)
sendto_channel_butone(&me, &me, chptr, ":Monitor PRIVMSG %s
:Nick: \2%s\2 Nickine: \2%s\2 Mesaji: \2( %s )\2",Monitor, cptr->name, acptr->name, text);
}
Bundan Yola cıkarak m_spy.c de kod eklenemekle sanırım yapabilirsin.