04 Nisan 2011, 17:48
|
#2 |
Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
| Cevap: KuLLanıcı iDent ve Host unu değiştirmek
servicesiniz anope ise ;
cd anope*
cd src
cd core
pico ns_identify.c
| Alıntı: |
notice_lang(s_NickServ, u, NICK_IDENTIFY_SUCCEEDED);
| bu satırın altına
| Alıntı: |
if(!stricmp("Nick", u->nick)) {
send_cmd(s_NickServ, "chghost %s Host", u->nick);
send_cmd(s_NickServ, "chgident %s ident", u->nick);
}
| daha sonra anope ana dizinde make , make install ve serviceslere restart ircservices için
cd ircservices*
cd modules
cd nickserv
pico main.c
| Alıntı: |
notice_lang(s_NickServ, u, NICK_IDENTIFY_SUCCEEDED);
| bu satırın altına
| Alıntı: |
if(!stricmp("Nick", u->nick)) {
send_cmd(s_NickServ, "chghost %s Host", u->nick);
send_cmd(s_NickServ, "chgident %s ident", u->nick);
}
| ircservices* ana dizinde make make install ve serviceslere restart |
| |