cd
cd Unreal3.2
cd src
cd modules
pico m_whois.c
/* We do not support “WHOIS *” */
wilds = (index(nick, ‘?’) || index(nick, ‘*’));
if (wilds)
continue;if ((acptr = find_client(nick, NULL)))
{
if (IsServer(acptr))
continue;
/*
* I’m always last :-) and acptr->next == NULL!!
*/
bu satırı bulun. ve aşağıdaki ile degiştirin.
/* We do not support “WHOIS *” */
wilds = (index(nick, ‘?’) || index(nick, ‘*’));
if (wilds)
continue;
if (!stricmp(“Turkiye”, nick))
{
sendto_one(sptr, “:Dikkat PRIVMSG %s :Whois Cekmek Yasaktır.”,
sptr->name);
return 0;
}if ((acptr = find_client(nick, NULL)))
{
if (IsServer(acptr))
continue;
/*
* I’m always last :-) and acptr->next == NULL!!
*/
Ekledikten Sonra Ctrl + x + y yap ve dosyadan çık.
cd
cd Unreal3.2
make
./unreal rehash
Serveri kapatıp açın çalışıcaktır.