merhaba m_message.c icinde operleri +mden muaf tutmak istiyorum bazı kodlar ekledim ama olmadı asagıdaki kodları deneyip make ve make install rehash yaptım
burdaki kodu Kod: Kodu kopyalamak için üzerine çift tıklayın! if (MyClient(sptr) )
{
if (!notice || (cansend == 8)) /* privmsg or 'cannot send notice'... */
sendto_one(sptr, err_str(ERR_CANNOTSENDTOCHAN),
me.name, sptr->name, chptr->chname,
err_cantsend[cansend - 1], p2);
}
bununla değiştirdim gene aynı Kod: Kodu kopyalamak için üzerine çift tıklayın! if (MyClient(sptr) && !IsOper(sptr))
{
if (!notice || (cansend == 8)) /* privmsg or 'cannot send notice'... */
sendto_one(sptr, err_str(ERR_CANNOTSENDTOCHAN),
me.name, sptr->name, chptr->chname,
err_cantsend[cansend - 1], p2);
}
bunları nasıl duzeltebilirim
|