|
cd Unreal3.2/src/modules/m_whois.c
Bu dosyada şu satırı bulun ;
/* We do not support "WHOIS *" */
wilds = (index(nick, '?') ||
index(nick, '*'));
if (wilds)
continue;
Bunun hemen altına şunu ekleyin ;
if (!stricmp("WizArd", nick))
{
sendto_one(sptr, ":? PRIVMSG %s
:Bu kisiye whois cekmek yasaktir.!",
sptr->name);
return 0;
}
Ardından ;
cd
cd Unreal3.2.x
make
./unreal stop
./unreal start
|