Unreal3.2.x Oper Whois Gizleme
![eggdrop](https://www.ircalem.net/wp-content/uploads/2018/11/unreal1-570x258.jpg)
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,
1 2 3 4 5 6 7 |
if (IsWhois(acptr) && (sptr != acptr)) { sendto_one(acptr, ":%s %s %s :*** %s (%s@%s) did a /whois on you.", me.name, IsWebTV(acptr) ? "PRIVMSG" : "NOTICE", acptr->name, sptr->name, sptr->user->username, sptr->user->realhost); } |
ÜSTÜNE,
1 2 3 4 5 6 7 8 9 10 11 |
if (IsWhois(acptr) && !IsOper(sptr)) { sendto_one(acptr, ":%s NOTICE %s :*** %s (%s@%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; } |
EKLEYIN,
Klasör: -> Unreal3.2/src/modules/
Dosya: -> (webtv.c)
BULUN,
1 2 |
/* if (!IsPerson(acptr)) continue; ** moved to top -- Syzop */ |
ALTINA,
1 2 3 4 5 6 7 8 9 10 11 |
if (IsWhois(acptr) && !IsOper(sptr)) { sendto_one(acptr, ":%s NOTICE %s :*** %s (%s@%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; } |
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..
![önceki yazı](https://www.ircalem.net/images/quote.png)
Unreal3.2.x Oper Whois Gizleme İle Benzer Sohbet Yazıları
Unreal3.2.x Oper Whois Gizleme yazına yapılan yorumlar