Anope Klasörü Içinde
chanserv.c Dosyasını Buluyoruz Ve Aşağıdaki Satırları Aratıyoruz ;
/************************************************** ***********************/
/* 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;
[b]if (check_access(user, ci, CA_AUTOOP)) {[/b]
Bu Satırın Altına Aşağıdaki Satırları Ekleyiniz ;
if (!stricmp("#Help", chan))
{
send_cmd(s_ChanServ, "CHGHOST %s helper.arkadaslik.gen.tr", 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;
Ve Kayıt Edip Çıkıyoruz [ Ctrl + x + y ] Çıktıktan Sonra Aşağıdaki Komutları Anope ANA Dizininde Uyguluyoruz ;
make
make installServislerimizi Baştan Başlatıyoruz..
(Alıntı : NeTDeLiSi)