lookjapan.COM - IRC ve mIRC dünyasının forumu!

lookjapan.COM - IRC ve mIRC dünyasının forumu! (http://www.lookjapan.com/index.php)
-   Unreal - 4 Parça Kodlar (http://www.lookjapan.com/forumdisplay.php?f=336)
-   -   Oper-Adminler için Part mesajı. (http://www.lookjapan.com/showthread.php?t=4216)

dEathLeSs 25 Aralık 2016 23:52

Oper-Adminler için Part mesajı.
 
Merhaba,
[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...], belirtilmiş olan, oper/admin-helper çıkış part mesajının, UnrealIRCd-4'e uyarlanmış halidir. Help olayını çözemediğim için ekleyemedim. :P

Kod:

":%s!%s@%s PART %s %s",
                                                    sptr->name, sptr->user->username, GetHost(sptr),
                                                    chptr->chname, comment);
                                }
                        }
                        else
                        {


                                if (!comment)

                                        sendto_channel_butserv(chptr,
                                            sptr, PARTFMT, sptr->name,
                                            chptr->chname);
                                else
                                        sendto_channel_butserv(chptr,
                                            sptr, PARTFMT2, sptr->name,
                                            chptr->chname, comment);
                        }

satırlarını,

Kod:

":%s!%s@%s PART %s %s",
                                                    sptr->name, sptr->user->username, GetHost(sptr),
                                                    chptr->chname, comment);
                                }
                        }



else if (IsOper(sptr)) {
                sendto_channel_butserv(chptr,
                        sptr, PARTFMT2, parv[0],
                        chptr->chname, "Sunucu yöneticisi kanaldan ayrıldı");
                }
                               
                                else if(!comment) {
 
                    sendto_channel_butserv(chptr,
                        sptr, PARTFMT, parv[0],
                        chptr->chname);
                } else {
                    sendto_channel_butserv(chptr,
                        sptr, PARTFMT2, parv[0],
                        chptr->chname, comment);
 
            }

olarak değiştirmeniz. yeterlidir. daha sonra make&make install /unrealircd rehash
komutu ile aktive edilmiş olacaktır.


All times are GMT +3. The time now is 15:29.

Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.