- Katılım
- 4 Şub 2020
- Mesajlar
- 390
- Tepkime puanı
- 88
- Puanları
- 28
- Konum
- ircland
- Web sitesi
- www.ircalem.net
Merhabalar,
Bu uygulama sayesinde sunucunuzda operlerin whois bilgileri gizlenmiş olacaktır. İzlemeniz gereken yol aşağıdaki gibidir.
Klasör: -> Unreal3.2/src/modules/
Dosya: -> (m_whois.c)
BULUN,
ÜSTÜNE,
EKLEYIN,
Klasör: -> Unreal3.2/src/modules/
Dosya: -> (webtv.c)
BULUN,
ALTINA,
EKLEYIN,
unreal'in ana dizininde make ve ./unreal rehash komutlarını uygulayın. Böylece bu düzenleme ile /whois nick ve /msg irc whois nick komutlarını kapatmış olduk..
Bu uygulama sayesinde sunucunuzda operlerin whois bilgileri gizlenmiş olacaktır. İzlemeniz gereken yol aşağıdaki gibidir.
Klasör: -> Unreal3.2/src/modules/
Dosya: -> (m_whois.c)
BULUN,
Kod:
if (IsWhois(acptr) && (sptr != acptr))
{
sendto_one(acptr,
":%s %s %s :*** %s (%[email protected]%s) did a /whois on you.",
me.name, IsWebTV(acptr) ? "PRIVMSG" : "NOTICE", acptr->name, sptr->name,
sptr->user->username, sptr->user->realhost);
}
ÜSTÜNE,
Kod:
if (IsWhois(acptr) && !IsOper(sptr))
{
sendto_one(acptr,
":%s NOTICE %s :*** %s (%[email protected]%s) did a /whois on you.",
me.name, acptr->name, sptr->name,
sptr->user->username,
IsHidden(acptr) ? sptr->user->
virthost : sptr->user->realhost);
sendnotice(sptr,"%s whois bilgilerimi görebilmeniz için en az oper olmalısınız.", sptr->name);
return 0;
}
Klasör: -> Unreal3.2/src/modules/
Dosya: -> (webtv.c)
BULUN,
Kod:
/* if (!IsPerson(acptr))
continue; ** moved to top -- Syzop */
ALTINA,
Kod:
if (IsWhois(acptr) && !IsOper(sptr))
{
sendto_one(acptr,
":%s NOTICE %s :*** %s (%[email protected]%s) did a /whois on you.",
me.name, acptr->name, sptr->name,
sptr->user->username,
IsHidden(acptr) ? sptr->user->
virthost : sptr->user->realhost);
sendnotice(sptr,"%s whois bilgilerimi görebilmeniz için en az oper olmalısınız.", sptr->name);
return 0;
}
unreal'in ana dizininde make ve ./unreal rehash komutlarını uygulayın. Böylece bu düzenleme ile /whois nick ve /msg irc whois nick komutlarını kapatmış olduk..