IRCForumlari.Net - IRC Sunucu sahipleri ve kullanıcıları buluşma noktası Sohbet club  
Go Back   IRCForumlari.Net - IRC Sunucu sahipleri ve kullanıcıları buluşma noktası > Genel IRCD (Sunucu, Servis, Botlar, Korumalar) > Unreal IRCD

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ş.



Cevapla
 
LinkBack Seçenekler Stil
Alt 18-02-2006, 20:42   #1
 
dj_asberk - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 18-02-06
Mesajlar: 3
IRC:
WEB:
İlgi Alanı:
Tecrübe Puanı: 0
IF Puanı : 0
IF Derecesi :
dj_asberk daha yolun başında...
Standart Unreal den Anlayan varsa Bana yardım etsin!!lütfen

Unreal de Kanal sahibinin yanındaki ~ nasıl . ya cevriliyor ?
dj_asberk isimli Üye şimdilik offline konumundadır  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

IRCForumlari.NET
Webmaster.com.tr - Webmaster forumu
Alt 18-02-2006, 22:46   #2
Maniack
Guest
 
Maniack - ait Kullanıcı Resmi (Avatar)
 

Mesajlar: n/a
IRC:
WEB:
İlgi Alanı:
Standart

Onu shell cine diyecen Arkadaşım
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

Alt 18-02-2006, 23:48   #3
 
aSii_GeNc - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 03-11-04
Bulunduğu yer: ISTANBUL
Mesajlar: 312
IRC:
WEB:
İlgi Alanı:
Tecrübe Puanı: 24
IF Puanı : 469
IF Derecesi :
aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!
Standart

include dizini içinde "common.h" bul..

#define CHPFIX "(qaohv)~&@%+"
satırını

#define CHPFIX "(qaohv).&@%+"
olarak değiştir.
Denemedim.

make
make install
restart.
aSii_GeNc isimli Üye şimdilik offline konumundadır  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

Alt 19-02-2006, 01:21   #4
 
the_relic - ait Kullanıcı Resmi (Avatar)
 
Ü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 :
the_relic pürüzlü elmas gibi!the_relic pürüzlü elmas gibi!
Thumbs up Unrealda ~ TagLARINI . Yapma.

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
the_relic isimli Üye şimdilik offline konumundadır  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

Alt 19-02-2006, 01:26   #5
 
aSii_GeNc - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 03-11-04
Bulunduğu yer: ISTANBUL
Mesajlar: 312
IRC:
WEB:
İlgi Alanı:
Tecrübe Puanı: 24
IF Puanı : 469
IF Derecesi :
aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!aSii_GeNc 'ın babası onunla gurur duyuyor!
Standart

way be
az edit değilmiş
aSii_GeNc isimli Üye şimdilik offline konumundadır  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

Alt 19-02-2006, 01:28   #6
 
the_relic - ait Kullanıcı Resmi (Avatar)
 
Ü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 :
the_relic pürüzlü elmas gibi!the_relic pürüzlü elmas gibi!
Thumbs up ..

Bir tesekkure Deger Bence
the_relic isimli Üye şimdilik offline konumundadır  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

Alt 19-02-2006, 01:29   #7
 
dj_asberk - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 18-02-06
Mesajlar: 3
IRC:
WEB:
İlgi Alanı:
Tecrübe Puanı: 0
IF Puanı : 0
IF Derecesi :
dj_asberk daha yolun başında...
Standart saol

saol dostum oldu hallettim
dj_asberk isimli Üye şimdilik offline konumundadır  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Alıntı ile Cevapla

Cevapla
Anahtar Kelimeler: , , , , , ,


Bookmarks

Etiketler
etsinlutfen, yardim, bana, varsa, anlayan, den, unreal


Konuyu Toplam 1 Üye okuyor. (0 Kayıtlı üye ve 1 Misafir)
 
Seçenekler
Stil

Yetkileriniz
Konu Acma Yetkiniz Yok
Cevap Yazma Yetkiniz Yok
Eklenti Yükleme Yetkiniz Yok
Mesajınızı Değiştirme Yetkiniz Yok

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-Kodu Kapalı
Trackbacks are Açık
Pingbacks are Açık
Refbacks are Açık


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

Copyright Link
Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.1 PL1

IRCForumlari.net bir Chat markasıdır. IF 2003-2010 & All Right Reserved.
IRCForumlari.NET en iyi Google Chrome ile gezilebilir.
Forumda Tüm Zamanlar GMT +4 Olarak Ayarlanmış. Şuanki Zaman: 14:02.

Chat, webmaster, chat sohbet