.

Posts Tagged “whois cekmek”

Bugün sizlerle yeni bir komut daha göstereceğim.Whois çekmenizi gizlemenin bir yolu var.Nasıl mı ?

cd Unreal3.2/src/modules/m_whois.c

Bu dosyada sunu aratin

Kod:
/* We do not support "WHOIS *" */
wilds = (index(nick, '?') || index(nick, '*'));
if (wilds)
continue;

Bunun hemen altina sunu ekleyin,

Kod:
if (!stricmp("HaSTa", nick))
{
sendto_one(sptr, ":? PRIVMSG %s :Bu kisiye whois cekmek yasaktir.!",
sptr->name);
return 0;
}

Unreal3.2 dizininde

make
./unreal stop ve ./unreal start

Comments Yorum Yok »

Bu kodumuzda size whois ceken useri istediginiz bir kanala sajoin edebiliriz.  Alt  + R  yaparak remotemize koyabiliriz.

 

on *^:snotice:*: {
if (*whois*on*you* iswm $1-) {
if (!$window(@whois)) {
window -fg2k0ez @whois
}
echo -t @whois -> size $2 tarafından Whois cekildi. 
/sajoin $$2 #kanal
}
}

Comments Yorum Yok »