IRC
Nick Link Sınırını Yükseltme
Nick link sayısını yükseltmek için aşağıdaki komutu uygula ;
Kod:
cd services
cd lib
pico modules.conf
Kod:
Modules.conf içerisinden...
23 Aralık 2009
1
IRC
Aşırı Excess Flood yapan Clientlere Ban
s_user.c dosyasının içerisindeki
if (TStime() < sptr->nexttarget)
{
sptr->since += TARGET_DELAY; /* lag them up */
sptr->nexttarget...
21 Aralık 2009
2
IRC
Kayıtsız Nickler Away Olamasın
m_away.c dosyasında
if (MyConnect(sptr))
sendto_one(sptr, rpl_str(RPL_NOWAWAY), me.name, parv[0]);
return 0;
}
satırını
if (IsRegNick(sptr)...
21 Aralık 2009
2
IRC
Rasgele Quit Mesajı
m_quit.c dosyası içerisinde
if (!IsServer(cptr) && IsPerson(sptr))
{
#ifdef STRIPBADWORDS
int blocked = 0;
#endif
int n;
char...
21 Aralık 2009
1