05 Mart 2023, 06:03
|
#1 |
| Çevrimdışı Üyelik tarihi: 07 Aralık 2022 Konular: 21245 Mesajlar: 24.248
| UnrealIRCd-4 Oper Giriş Bildirimini Değiştirme unrealircd-*/src/modules/m_oper.c
bul Kod : Kodu kopyalamak için üzerine çift tıklayın!
sendto_snomask_global(SNO_OPER,
"%s (%s@%s) [%s] is now an operator",
sptr->name, sptr->user->username, sptr->local->sockhost,
parv[1]);
Değiştir Kod : Kodu kopyalamak için üzerine çift tıklayın!
char *operclass = NULL;
ConfigItem_oper *oper = Find_oper(sptr->user->operlogin);
if (oper && oper->operclass){
operclass = oper->operclass;
sendto_snomask_global(SNO_OPER,
"%s (\2%s@%s\2) [%s] (is now a \2%s\2) ",
sptr->name, sptr->user->username, sptr->local->sockhost,
parv[1], operclass);
}
make && make install
./Unreal rehash Örn: Oper girişi yaptıktan sonra yetkimiz ne ise is now a netadmin veya services-admin ne ise ona göre gösterecektir. Kalbim Atar Cansız, Geçmez Gün Ahsız, Vahsız.. |
|
| |