![]() |
![]() |
|
|||||||
| Konu Bilgileri: Konuyu dj_asberk, 18-02-2006 (20:42) tarihinde açmış. Bu konu 6 kişi tarafından yorumlanıp 384 kez izlenmiş. |
![]() |
|
|
LinkBack | Seçenekler | Stil |
|
|
#3 | ||
![]()
Üyelik tarihi: 03-11-04
Bulunduğu yer: ISTANBUL Mesajlar: 312 IRC: WEB: İlgi Alanı: Tecrübe Puanı: 24 IF Puanı : 469 IF Derecesi : ![]() ![]() ![]() ![]() |
include dizini içinde "common.h" bul..
Denemedim. make make install restart. |
||
|
|
|
|
|
#4 |
![]()
Üyelik tarihi: 30-10-04
Bulunduğu yer: ßursa Mesajlar: 233 IRC: Biraktım WEB: http://www.saglikservisi.net İlgi Alanı: Tecrübe Puanı: 11 IF Puanı : 144 IF Derecesi : ![]() |
include/common.h
Kod: #define CHPFIX "(qaohv)~&@%+" aşağıdaki ile değiştir #define CHPFIX "(qaohv).&@%+" src/api-isupport.c Kod: #ifdef PREFIX_AQ IsupportAdd(NULL, "STATUSMSG", "~&@%+"); aşağıdaki ile değiştir #ifdef PREFIX_AQ IsupportAdd(NULL, "STATUSMSG", ".&@%+"); src/channels.c Kod: #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) buf[idx++] = '~'; else if (cm->flags & CHFL_CHANPROT) buf[idx++] = '&'; else #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) buf[idx++] = '.'; else if (cm->flags & CHFL_CHANPROT) buf[idx++] = '&'; else #endif src/webtv.c Kod: #else if (access & CHFL_CHANOWNER) *(buf + len++) = '~'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; #endif aşağıdaki ile değiştir #else if (access & CHFL_CHANOWNER) *(buf + len++) = '.'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; #endif src/modules/m_message.c Kod: #ifdef PREFIX_AQ case '&': prefix |= PREFIX_ADMIN | PREFIX_OWNER; break; case '~': prefix |= PREFIX_OWNER; break; #else aşağıdaki ile değiştir #ifdef PREFIX_AQ case '&': prefix |= PREFIX_ADMIN | PREFIX_OWNER; break; case '.': prefix |= PREFIX_OWNER; break; #else Kod: #ifdef PREFIX_AQ else if (prefix & PREFIX_ADMIN) pfixchan[0] = '&'; else if (prefix & PREFIX_OWNER) pfixchan[0] = '~'; #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ else if (prefix & PREFIX_ADMIN) pfixchan[0] = '&'; else if (prefix & PREFIX_OWNER) pfixchan[0] = '.'; src/modules/m_who.c Kod: #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) status[i++] = '~'; else if (cm->flags & CHFL_CHANPROT) status[i++] = '&'; else #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) status[i++] = '.'; else if (cm->flags & CHFL_CHANPROT) status[i++] = '&'; else #endif src/modules/m_whois.c Kod: #ifdef PREFIX_AQ if (access & CHFL_CHANOWNER) *(buf + len++) = '~'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; else #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ if (access & CHFL_CHANOWNER) *(buf + len++) = '.'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; else #endif include/common.h Kod: #define CHPFIX "(qaohv)~&@%+" aşağıdaki ile değiştir #define CHPFIX "(qaohv).&@%+" src/api-isupport.c Kod: #ifdef PREFIX_AQ IsupportAdd(NULL, "STATUSMSG", "~&@%+"); aşağıdaki ile değiştir #ifdef PREFIX_AQ IsupportAdd(NULL, "STATUSMSG", ".&@%+"); src/channels.c Kod: #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) buf[idx++] = '~'; else if (cm->flags & CHFL_CHANPROT) buf[idx++] = '&'; else #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) buf[idx++] = '.'; else if (cm->flags & CHFL_CHANPROT) buf[idx++] = '&'; else #endif src/webtv.c Kod: #else if (access & CHFL_CHANOWNER) *(buf + len++) = '~'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; #endif aşağıdaki ile değiştir #else if (access & CHFL_CHANOWNER) *(buf + len++) = '.'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; #endif src/modules/m_message.c Kod: #ifdef PREFIX_AQ case '&': prefix |= PREFIX_ADMIN | PREFIX_OWNER; break; case '~': prefix |= PREFIX_OWNER; break; #else aşağıdaki ile değiştir #ifdef PREFIX_AQ case '&': prefix |= PREFIX_ADMIN | PREFIX_OWNER; break; case '.': prefix |= PREFIX_OWNER; break; #else Kod: #ifdef PREFIX_AQ else if (prefix & PREFIX_ADMIN) pfixchan[0] = '&'; else if (prefix & PREFIX_OWNER) pfixchan[0] = '~'; #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ else if (prefix & PREFIX_ADMIN) pfixchan[0] = '&'; else if (prefix & PREFIX_OWNER) pfixchan[0] = '.'; src/modules/m_who.c Kod: #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) status[i++] = '~'; else if (cm->flags & CHFL_CHANPROT) status[i++] = '&'; else #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) status[i++] = '.'; else if (cm->flags & CHFL_CHANPROT) status[i++] = '&'; else #endif src/modules/m_whois.c Kod: #ifdef PREFIX_AQ if (access & CHFL_CHANOWNER) *(buf + len++) = '~'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; else #endif aşağıdaki ile değiştir #ifdef PREFIX_AQ if (access & CHFL_CHANOWNER) *(buf + len++) = '.'; else if (access & CHFL_CHANPROT) *(buf + len++) = '&'; else #endif ;oki Konu the_relic tarafından (19-02-2006 Saat 01:27 ) değiştirilmiştir. Sebep: ;oki |
|
|
|
![]() |
| Anahtar Kelimeler: anlayan, bana, den, etsinltfen, unreal, varsa, yardm |
| Bookmarks |
| Etiketler |
| etsinlutfen, yardim, bana, varsa, anlayan, den, unreal |
| Konuyu Toplam 1 Üye okuyor. (0 Kayıtlı üye ve 1 Misafir) | |
| Seçenekler | |
| Stil | |
|
|
Benzer Konular
|
||||
| Konu | Konuyu Başlatan | Forum | Cevaplar | Son Mesaj |
| Hazir Cevap Yenilendi ! V2.0 | viruS | Hazır Kodlar | 10 | 06-02-2007 16:50 |
| Unreal server kurdum birşey yapamıyorum yardım. | gaziantep | Unreal IRCD | 7 | 08-11-2005 21:15 |
| Unreal ın Özel ßir Edit ini Nerden ßulaßiliriz yada olan arkadaslardan ßiras yardım!! | AngeliyouS | Unreal IRCD | 2 | 16-07-2005 15:45 |