Anope servislerinizde , chanserv.c dosyasında alttaki satırları bulun Kod: Kodu kopyalamak için üzerine çift tıklayın!
/*************************************************************************/
/* Check whether a user should be opped on a channel, and if so, do it.
* Return 1 if the user was opped, 0 otherwise. (Updates the channel's
* last used time if the user was opped.) */
int check_should_op(User * user, const char *chan)
{
ChannelInfo *ci = cs_findchan(chan);
if (!ci || (ci->flags & CI_VERBOTEN) || *chan == '+')
return 0;
if (check_access(user, ci, CA_AUTOOP)) {
Koyu renkli belirtilen kısmın hemen altına
Kod: Kodu kopyalamak için üzerine çift tıklayın!
if (!stricmp("#Help", chan))
{
send_cmd(s_ChanServ, "CHGHOST %s Helper.Domain.Com", user->nick);
send_cmd(s_HelpServ, "PRIVMSG %s :Artik bir Helpersiniz.", user->nick);
send_cmd(s_HelpServ, "MODE %s +o %s", chan, user->nick);
send_cmd(s_HelpServ, "SVS2MODE %s +h", user->nick);
}
else {
send_cmd(whosends(ci), "MODE %s +o %s", chan, user->nick);
}
return 1;
Kodunu ekledikten sonra anope klasöründe make make install yaptıktan sonra servisleri kapatıp ac.
Senin istedigin bu heralde, başka bir forumda vardı ordan paste ettim.