Kanala giren usere mesaj gönderme

Op Halfop ve Voice olmayan kullanıcılara kanala girdiklerinde mesaj göndermek isteyen arkadaşlar bu koddan yararlanabilirler.

“helper botlar için önerilir”

<pre>;
;Aşşağıdaki kodu, mirc'inizi açıp ALT+R yapıp, Remoteye ekleyiniz.
;Kod içindeki "GÖNDERİLİCEK MESAJI BU YAZI YERİNE YAZINIZ" yazısı
;yerine mesajınızı yazınız. "KANALINIZINADI" yerine, hangi kanalda
;çalışmasını istiyorsanız o kanalın adını yazınız.
;Bütün kanallarda çalışması için, sadece " # " işareti yeterlidir.
;
;SiyahKaR tarafından yazılmıştır.
;

on @*:JOIN:#KANALINIZINADI:{
  if ($nick != $me) {
    .set %gnick $nick
    .timer 1 1 /kt
  }
}

alias kt {
  .set %knick %gnick
  .set %dnick $nick(#help,$calc($nick(#help,0,+) + $nick(#help,0,%) + $nick(#help,0,@) + 1))
  if (%knick == %dnick) {

    .msg %dnick GÖNDERİLİCEK MESAJI BU YAZI YERİNE YAZINIZ

  }
}

banlar

Kanal’daki banlar hakkında, detaylı bilgi almanızı, ek olarak belirli işlevler yapabilmenizi sağlar.

###############################
# Yazan: L4roXyL              #
# mIRC Scripting bir sanattır.#
###############################
alias banlar {
  if $active == Status Window || $chr(35) !isin $active { echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: Herhangi bir kanal penceresinde değilsiniz.) | var %++,%+++ = $chan(0) | while %+++ { %++ = $addtok(%++,$chan(%+++),32) | dec %+++ } | echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: Tarıyabileceğiniz kanallar:,$chr(2),$chr(32),%++,$chr(32),$chr(2)) | halt }
  write -c banlar.txt
  mode $active +b
  var %1 = 1,%2 = $ibl($active,0),%3 = $ibl($active,0).by,%4 = $ibl($active,0).date | while (%1 <= %2) && (%1 <= %3) && (%1 <= %4) {
  echo # $+($timestamp,$chr(45),$chr(32),Numara:,$chr(2),$chr(32),%1,$chr(32),$chr(2),Banlıyan:,$chr(32),$chr(2),$gettok($ibl($active,%1).by,1,33),$chr(32),$chr(2),Mask:,$chr(2),$chr(32),$ibl($active,%1),$chr(32),$chr(2),Tarih:,$chr(2),$chr(32),$replace($ibl($active,%1).date,Jan,Ocak,Feb,Şubat,Mar,Mart,Ap,Nisan,May,Mayıs,Jun,Haziran,Jul,Temmuz,Aug,Ağustos,Sep,Eylül,Oct,Ekim,Nov,Kasım,Dec,Aralık)) | write banlar.txt $+(%1,$chr(32),%) $ibl($active,%1) | inc %1 }
  echo # $+($timestamp,$chr(45),$chr(32),Bilgi:,$chr(32),$chr(2),$active,$chr(32),$chr(2),kanalı için tarama tamamlandı. Çıkan ban sayısı:,$chr(32),$chr(2),$calc(%1 - 1))
  echo # $+($timestamp,$chr(45),$chr(32),Bilgi:,$chr(32),Banların hepsini açmak için;,$chr(2),$chr(32),/banac,$chr(32),$chr(2),yazınız.)
  echo # $+($timestamp,$chr(45),$chr(32),Bilgi:,$chr(32),Herhangi birini açmak için;,$chr(2),$chr(32),/banac numara,$chr(32),$chr(2),yazınız.)
}
alias banac {
  if $chr(35) isin $active && $me !isop $active { echo -a $+($timestamp,$chr(45),$chr(32),Bilgi:,$chr(32),$chr(2),$active,$chr(32),$chr(2),kanalında op değilsiniz.) | halt }
  if $active == Status Window || $chr(35) !isin $active { echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: Herhangi bir kanal penceresinde değilsiniz.) | halt }
  if $ibl($active,0) == 0 { echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: Kanal ban listesi boş.) | halt }
  if $lines(banlar.txt) < $1 { echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: Kayıtlanan ban sayısı: $qt($lines(banlar.txt)),$chr(32),$chr(32),sizin girdiğiniz numara $qt($1) : işlev yapılmadı.) | halt }
  if !$1 { var %- = 1,%\ = $ibl($active,0) | while %- <= %\ { mode $active -b $ibl($active,%-) | inc %-  }
    echo -a $+($timestamp,$chr(45),$chr(32),Bilgi:,$chr(32),$chr(2),$active,$chr(32),$chr(2),kanalındaki tüm banlar açıldı. Açılan ban sayısı:,$chr(2),$chr(32),$calc(%- -1)) | halt
  }
  if $1 && $lines(banlar.txt) >= $1 && $read(banlar.txt,$1) { mode $active -b $gettok($read(banlar.txt,$1),2,37) | echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: $active kanalında sıra numarası $qt($1) olan ban açıldı.) | write $+(-l,$1) banlar.txt | halt }
  if !$read(banlar.txt,$1) { echo -a $+($timestamp,$chr(45),$chr(32),Bilgi: $active kanalında $qt($1) numaralı banı zaten açmışsınız.) }
}

1- Kanaldaki banlar hakkında bilgi verir.
2- Kanaldaki banlar üzerinde oynama yapmanızı sağlar(Tek-tek açmak)
3- Kanaldaki banlar üzerinde oynama yapmanızı sağlar(Hepsini açmak)

Bilgi şekli;

Numara: <ban-numarası> - Banlıyan: <nick> - Mask: <mask(host/nick/ident/extban)> - Tarih: <atıldığı-tarih>
Şeklindedir.
Kullanım şekli;
Girdiğiniz kanal'a /channel yazdıktan sonra kod daha sağlıklı çalışacaktır.
Banların tümünün listesini görmek için, kullanım şekli; /banlar
Çoklu kullanım şekli;
Numara girdiğiniz taktirde, /banlar listesinde çıkan numarayı açıcaktır.
Eğer numara girmezseniz; banların tümünü açıcaktır
Banlara verilen numaralardan herhangi birini açmak için; /banac numara
Banların hepsini birden açmak için; /banac
Şeklinde kullanılır.

1500 Bot oluşturmak

Kanala, 1500 tane botu aynı anda sokabiliyorsunuz..

Sendraw modulu yüklü sunucularda çalışır.
Not: /sedraw kullanma yetkisi gerektirir

alias doldur {
  var %ik 1
  var %ikss $3
  while (%ikss &gt;= %ik) {
    /sendraw $1 :: $+ $2 $+ $rand(0,10000) $+ $rand(0,10000) $+ ! $+ $rand(0,10000) $+ $rand(a,z) $+ $rand(A,Z) $+ @ $+ $+ $rand(a,z) $+ $rand(0,10000) $+ . $+ $rand(A,Z) $+ $rand(0,10000) $+ $rand(a,z) $+ $rand(A,Z) $+ .SUNUCUADI.Com join $1 
    dec %ikss
  }

IE’deki adres çuğuna girilmiş adresleri alma

<pre>/*
==========================
TypedURLS BY SeRDaR406

mIRCdb.com

Internet Explorer'da adres çubuğuna

girilmiş sitelerin adreslerini veren

bir kod.
==========================
*/
alias geturls {
  if ($com(type)) .comclose type
  .comopen type wscript.shell
  var %a 1
  while (%a &lt;= 50) {
    var %s $com(type,RegRead,3,bstr,HKCU\Software\Microsoft\Internet Explorer\TypedUrls\url $+ %a) , %url $com(type).result
    if (%url) echo -a %url
    inc %a
  }
}

Proxy List 5

IP address Anonymity level Checked time Country
193.136.191.26 :3128 high-anonymous proxy Sep-30, 14:02 Portugal
203.86.31.92 :3128 high-anonymous server Sep-30, 11:06 China
200.171.17.23 :6588 high-anonymous proxy Sep-30, 11:09 Brazil
203.227.164.200 :80 high-anonymous Sep-30, 11:07 Korea, Republic of
169.229.50.6 :3128 high-anonymous proxy Sep-30, 14:25 United States
201.93.138.62 :6588 high-anonymous server Sep-30, 11:06 Brazil
193.136.191.25 :3128 high-anonymous proxy server Sep-30, 12:51 Portugal
200.132.0.70 :3128 high-anonymous proxy Sep-30, 14:29 Brazil
160.94.220.241 :3127 high-anonymous Sep-30, 14:23 United States
128.232.103.201 :3124 high-anonymous proxy server Sep-30, 14:31 United Kingdom
130.136.254.22 :3124 high-anonymous proxy Sep-30, 14:06 Italy
128.112.139.73 :3128 high-anonymous server Sep-30, 11:16 United States
128.223.8.112 :3124 high-anonymous server Sep-30, 14:29 United States
128.220.231.2 :3127 high-anonymous proxy Sep-30, 14:53 United States
194.42.17.123 :3128 high-anonymous proxy Sep-30, 14:22 Cyprus
140.247.60.123 :3128 high-anonymous proxy Sep-30, 14:18 United States
131.246.191.42 :3127 high-anonymous server Sep-30, 13:58 Germany
171.66.3.181 :3124 high-anonymous proxy Sep-30, 14:22 United States
128.220.231.2 :3124 high-anonymous Sep-30, 14:21 United States
200.132.0.70 :3124 high-anonymous server Sep-30, 14:28 Brazil
193.136.191.26 :3124 high-anonymous proxy server Sep-30, 13:58 Portugal
152.3.138.5 :3124 high-anonymous proxy Sep-30, 14:09 United States
141.76.45.17 :3127 high-anonymous Sep-30, 14:07 Germany
155.98.35.5 :3128 high-anonymous Sep-30, 14:15 United States
128.31.1.12 :3124 high-anonymous server Sep-30, 14:08 United States
IP address Anonymity level Checked time Country

Proxy List 4

IP address Anonymity level Checked time Country
130.37.198.244 :3127 high-anonymous Sep-30, 13:58 Netherlands
198.163.152.230 :3127 high-anonymous Sep-30, 14:19 Canada
130.75.87.84 :3124 high-anonymous proxy server Sep-30, 13:58 Germany
128.4.36.12 :3128 high-anonymous proxy Sep-30, 14:15 United States
193.136.191.25 :3127 high-anonymous server Sep-30, 14:06 Portugal
142.150.238.12 :3124 high-anonymous proxy Sep-30, 14:19 Canada
130.49.221.41 :3128 high-anonymous Sep-30, 14:13 United States
130.92.70.251 :3128 high-anonymous Sep-30, 14:10 Switzerland
192.42.43.23 :3128 high-anonymous proxy Sep-30, 14:39 Switzerland
222.134.69.179 :80 high-anonymous proxy Sep-30, 12:41 China
200.161.81.98 :6588 high-anonymous server Sep-30, 11:11 Brazil
221.241.27.182 :80 high-anonymous proxy Sep-30, 11:11 Japan
155.98.35.2 :3128 high-anonymous proxy Sep-30, 14:20 United States
202.131.37.254 :65208 high-anonymous proxy Sep-30, 11:46 Hong Kong
219.50.118.63 :8080 high-anonymous proxy server Sep-30, 11:13 Japan
198.163.152.230 :3128 high-anonymous proxy Sep-30, 14:13 Canada
155.98.35.3 :3128 high-anonymous proxy server Sep-30, 14:30 United States
132.252.152.193 :3127 high-anonymous proxy Sep-30, 14:10 Germany
132.239.17.224 :3128 high-anonymous proxy server Sep-30, 14:20 United States
130.37.198.244 :3128 high-anonymous proxy server Sep-30, 13:58 Netherlands
128.112.139.71 :3127 high-anonymous proxy Sep-30, 14:19 United States
128.113.226.235 :3124 high-anonymous proxy Sep-30, 14:23 United States
116.193.116.92 :8080 high-anonymous Sep-30, 11:11 Japan
130.136.254.21 :3128 high-anonymous proxy server Sep-30, 14:17 Italy
201.43.1.214 :6588 high-anonymous proxy Sep-30, 11:08 Brazil

Proxy List 3

189.51.250.3 :6588 high-anonymous proxy Sep-30, 13:06 Brazil
202.82.118.193 :65208 high-anonymous proxy server Sep-30, 13:05 Hong Kong
192.33.90.69 :3128 high-anonymous server Sep-30, 14:33 Switzerland
221.212.177.97 :1080 high-anonymous server Sep-30, 13:42 China
12.129.249.71 :80 high-anonymous Sep-30, 13:37 United States
193.167.187.187 :3127 high-anonymous proxy Sep-30, 13:58 Finland
195.113.161.83 :3124 high-anonymous Sep-30, 13:58 Czech Republic
212.24.238.155 :80 high-anonymous proxy server Sep-30, 13:47 Saudi Arabia
204.8.155.226 :3128 high-anonymous proxy Sep-30, 14:33 United States
204.56.0.137 :3128 high-anonymous server Sep-30, 14:42 United States
137.226.138.156 :3127 high-anonymous proxy Sep-30, 13:58 Germany
141.76.45.18 :3128 high-anonymous server Sep-30, 13:58 Germany
192.33.90.67 :3124 high-anonymous proxy Sep-30, 14:34 Switzerland
129.41.69.20 :80 high-anonymous server Sep-30, 14:47 United States
206.117.37.5 :3124 high-anonymous Sep-30, 14:23 United States
141.24.33.161 :3124 high-anonymous Sep-30, 14:05 Germany
141.24.33.192 :3128 high-anonymous Sep-30, 13:58 Germany
192.33.90.68 :3124 high-anonymous Sep-30, 14:35 Switzerland
141.13.16.201 :3128 high-anonymous proxy server Sep-30, 14:13 Germany
128.112.139.78 :3127 high-anonymous proxy server Sep-30, 14:13 United States
192.42.43.22 :3128 high-anonymous proxy Sep-30, 14:07 Switzerland
204.8.155.226 :3124 high-anonymous proxy server Sep-30, 14:35 United States
141.76.45.18 :3124 high-anonymous proxy Sep-30, 14:07 Germany
195.113.161.82 :3127 high-anonymous proxy Sep-30, 13:58 Czech Republic
131.188.44.101 :3128 high-anonymous server Sep-30, 14:05 Germany

Proxy List 2

IP address Anonymity level Checked time Country
218.50.52.210 :80 anonymous Sep-30, 14:47 Korea, Republic of
200.246.13.208 :8080 anonymous Sep-30, 15:00 Brazil
82.134.53.6 :80 high-anonymous proxy Sep-30, 14:53 Norway
200.195.95.38 :80 high-anonymous server Sep-30, 14:58 Brazil
151.100.59.10 :3127 high-anonymous Sep-30, 14:54 Italy
129.69.210.96 :3124 high-anonymous proxy Sep-30, 14:54 Germany
129.69.210.96 :3127 high-anonymous proxy server Sep-30, 14:54 Germany
66.36.241.15 :6649 high-anonymous proxy server Sep-30, 14:56 United States
192.42.43.22 :3124 high-anonymous proxy Sep-30, 14:03 Switzerland
195.113.161.82 :3124 high-anonymous proxy Sep-30, 13:58 Czech Republic
85.214.44.230 :3128 high-anonymous Sep-30, 13:17 Germany
201.0.17.76 :6588 high-anonymous proxy server Sep-30, 13:22 Brazil
130.94.23.113 :80 high-anonymous proxy server Sep-30, 14:55 United States
80.82.213.93 :80 high-anonymous proxy server Sep-30, 14:52 Germany
128.232.103.201 :3128 high-anonymous proxy server Sep-30, 14:32 United Kingdom
78.46.69.45 :50010 high-anonymous proxy server Sep-30, 13:32 Germany
129.59.88.179 :3128 high-anonymous proxy Sep-30, 14:48 United States
193.167.187.188 :3127 high-anonymous proxy Sep-30, 13:58 Finland
130.49.221.41 :3127 high-anonymous server Sep-30, 14:10 United States
131.247.2.241 :3124 high-anonymous proxy server Sep-30, 14:33 United States
137.226.138.154 :3124 high-anonymous proxy Sep-30, 14:03 Germany
156.17.10.52 :3124 high-anonymous server Sep-30, 14:34 Poland
156.17.10.51 :3128 high-anonymous server Sep-30, 14:34 Poland
130.92.70.251 :3124 high-anonymous proxy Sep-30, 13:58 Switzerland
192.42.43.22 :3127 high-anonymous server Sep-30, 13:58 Switzerland

Proxy List 1

 

125.93.0.228 :8080 anonymous proxy server Sep-30, 14:40 China
72.232.27.162 :808 anonymous server Sep-30, 14:58 United States
125.163.248.114 :9090 anonymous Sep-30, 14:37 Indonesia
200.207.114.146 :8080 anonymous proxy Sep-30, 15:00 Brazil
67.55.0.36 :80 anonymous proxy Sep-30, 14:59 Canada
76.74.148.73 :80 anonymous proxy Sep-30, 14:58 United States
193.171.32.4 :80 anonymous proxy Sep-30, 14:56 Austria
87.234.234.66 :80 anonymous proxy Sep-30, 14:33 Germany
66.166.1.181 :8000 anonymous proxy server Sep-30, 14:02 United States
88.191.60.104 :3128 anonymous server Sep-30, 14:03 France
83.246.88.141 :80 anonymous server Sep-30, 14:33 Germany
76.74.148.72 :80 anonymous server Sep-30, 14:26 United States
91.194.85.79 :80 anonymous Sep-30, 14:09 Germany
91.112.157.214 :8080 anonymous server Sep-30, 14:09 Austria
192.54.45.201 :8000 anonymous proxy Sep-30, 14:07 Germany
194.55.112.104 :80 anonymous proxy Sep-30, 14:13 Germany
75.125.143.84 :80 anonymous server Sep-30, 14:13 United States
82.210.249.26 :80 anonymous proxy Sep-30, 14:12 Germany
194.25.146.4 :80 anonymous proxy server Sep-30, 14:17 Germany
200.36.58.4 :80 anonymous server Sep-30, 14:18 Mexico
221.135.120.44 :80 anonymous Sep-30, 14:42 India
190.84.226.242 :80 anonymous proxy Sep-30, 14:50 Colombia
82.169.92.213 :80 anonymous Sep-30, 14:47 Netherlands
76.74.148.68 :80 anonymous proxy Sep-30, 14:39 United States
82.20.138.213 :80 anonymous Sep-30, 14:45 United Kingdom

Rus Proxyleri Web proxy

85.234.8.247:3128
83.174.252.37:8080
83.174.252.37:3128
83.174.250.80:8080
83.174.227.71:3128
81.195.147.2:3128
84.53.231.80:3128
83.174.254.95:8080
217.23.180.122:8080
217.113.121.57:8080
85.140.83.247:30435
213.211.100.98:3128
212.57.157.8:8012