‘mirc notice’ olarak etiketlenmiş yazılar


mIRC Notice Flood Koruması

Çarşamba, 30 Aralık 2009

Bu koruma 8 saniye içinde 3 kez size yapilan flood’da kişiyi ignore listesine 45 saniye ekler. Linkten kodu aldıktan sonra remotelere ekleyiniz.

Kod;

on *:notice:*:*: {
if (%notice. [ $+ [ $wildsite ] ] == $null) {
set -u8 %notice. [ $+ [ $wildsite ] ] 1
return
}
else { inc %notice. [ $+ [ $wildsite ] ] }
if (%notice. [ $+ [ $wildsite ] ] > 3 && %notice.check == $null) {
set -u6 %notice.check 1
.ignore -nu45 $wildsite
echo -a 12*** 3Notice flood Ip :7 $wildsite 12Nick : 13 $nick 6 45 Saniye Engellendi.
}
}

mIRC Notice Açma / Kapatma

Pazar, 20 Aralık 2009

Bu Kod ile Mırc’inizde Ayrı Notice Penceresi Açabilir / Kapatabilirsiniz. Kod’u mIRC’inizin Remote Bölümüne Kopyalayınız.
Kod:

;credits to lindrian for the ($me isin $1-)
on *:TEXT:*:#: {
if (%noticeme == off) { halt }
if (%noticeme == on) {
if ($me isin $1-) notice $me $nick is talking about you
}
}
(daha fazla…)