Cevap: ~& işaretleri kaldırmak istiyorum.
öncelikle merhaba.. kanal yetkili işaretlerini değiştirmek için öncelikle mümkünse unreal'i stoplayın yada aşşağıdaki işlemlerin sonunda sunucunuza restart atmalısınız.. hemen başlayalım.. SSHDE LOGİN OLUN;
daha sonra cd Unreal3.2
Unreal3.2 vs klasöründe pico include/common.h yapiyorsunuz daha sonra şu satırı buluyorsunuz; #define CHPFIX “(qaohv)~&@%+” şu şekilde değiştiriyorsunuz;#define CHPFIX “(qaohv).&@%+”
daha sonra; pico src/api-isupport.c
yapıp ctrl + w tuşu ile
şu satırı bulup;#ifdef PREFIX_AQ IsupportAdd(NULL, “STATUSMSG”, ~&@%+);
şu şekilde değiştiriyorsunuz;#ifdef PREFIX_AQ IsupportAdd(NULL, “STATUSMSG”, “.&@%+”);
daha sonra; pico src/channel.c
yapıp;
şu satırı; #ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) buf[idx++] = ‘~’; else if (cm->flags & CHFL_CHANPROT) buf[idx++] = ‘&’; else #endif
şu şekilde değiştirin;#ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) buf[idx++] = ‘.’; else if (cm->flags & CHFL_CHANPROT) buf[idx++] = ‘&’; else #endif
daha sonra; pico src/webtv.c
yapıp;
şu satırı;#else if (access & CHFL_CHANOWNER) *(buf + len++) = ‘~’; else if (access & CHFL_CHANPROT) *(buf + len++) = ‘&’; #endif
bu şekilde değiştirin;#else if (access & CHFL_CHANOWNER) *(buf + len++) = ‘.’; else if (access & CHFL_CHANPROT) *(buf + len++) = ‘&’; #endif
daha sonra pico src/modules/m_message.c
şu satırı; #ifdef PREFIX_AQ case ‘&’: prefix |= PREFIX_ADMIN | PREFIX_OWNER; break; case ‘~’: prefix |= PREFIX_OWNER; break; #else
şu şekilde değiştirin; #ifdef PREFIX_AQ case ‘&’: prefix |= PREFIX_ADMIN | PREFIX_OWNER; break; case ‘.’: prefix |= PREFIX_OWNER; break; #else
daha sonra; şu kodu;#ifdef PREFIX_AQ else if (prefix & PREFIX_ADMIN) pfixchan[0] = ‘&’; else if (prefix & PREFIX_OWNER) pfixchan[0] = ‘~’; #endif
şununla değiştirin; #ifdef PREFIX_AQ else if (prefix & PREFIX_ADMIN) pfixchan[0] = ‘&’; else if (prefix & PREFIX_OWNER) pfixchan[0] = ‘.’; #endif
daha sonra; pico src/modules/m_who.c
şu kodu;#ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) status[i++] = ‘~’; else if (cm->flags & CHFL_CHANPROT) status[i++] = ‘&’; else #endif
şununla değiştirin;#ifdef PREFIX_AQ if (cm->flags & CHFL_CHANOWNER) status[i++] = ‘.’; else if (cm->flags & CHFL_CHANPROT) status[i++] = ‘&’; else #endif
daha sonra pico src/modules/m_whois.c
şu kodu; #ifdef PREFIX_AQ if (access & CHFL_CHANOWNER) *(buf + len++) = ‘~’; else if (access & CHFL_CHANPROT) *(buf + len++) = ‘&’; else #endif
şununla değiştirin;#ifdef PREFIX_AQ if (access & CHFL_CHANOWNER) *(buf + len++) = ‘.’; else if (access & CHFL_CHANPROT) *(buf + len++) = ‘&’; else #endif
daha sonra make clean make make install ./unreal start
--IRCForumlari.NET ; Flood Engellendi -->-> Yeni yazılan mesaj 11:23 -->-> Daha önceki mesaj 10:44 -- Unreal4 içinde aynı klasörler içerisindeki değişiklik sağlanması gerekiyor arkadaşlar.. |