Kod: Kodu kopyalamak için üzerine çift tıklayın!
<- :hub3.network.net NOTICE starkeffect :*** Notice -- Client connecting at hub1.network.net: cuni (Web@79.106.7.8)
-> hub3.network.net WHO +I cuni
<- :hub3.network.net 352 starkeffect * Web 79.106.7.8 hub1.network.net cuni H :1 12Visitor from --=> 4
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
315 starkeffect cuni :End of /WHO list.
<- :cuni!
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
JOIN :#Main
<- :hub3.network.net NOTICE starkeffect :*** Notice -- Client connecting at hub2.network.net: StIvI (Mibbit@31.22.49.253)
-> hub3.network.net WHO +I StIvI
-> hub3.network.net PRIVMSG StIvI :VERSION
<- :hub3.network.net 352 starkeffect * Mibbit 31.22.49.253 hub2.network.net StIvI H :1
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
315 starkeffect StIvI :End of /WHO list.
<- :StIvI!
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
NOTICE starkeffect :VERSION
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
ajax IRC Client:3993:3993
14:10:11: 14[11c10tcp14(11StIvI14)] 15VERSION 14REPLY:
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
ajax IRC Client:3993:3993
-> hub3.network.net PRIVMSG #test4 :4 StIvI entered the server with a different client than mIRC. 2
<- :StIvI!
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
JOIN :#Main
<- :hub3.network.net NOTICE starkeffect :*** Notice -- Client connecting on port 6667: testing (
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
) [clients]
-> hub3.network.net WHO +I testing
-> hub3.network.net PRIVMSG testing :VERSION
<- :hub3.network.net 352 starkeffect * Mibbit 78.12.112.143 hub3.network.net testing H :0 fullname
<- :hub3.network.net 315 starkeffect testing :End of /WHO list.
<- :testing!
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
NOTICE starkeffect :VERSION mIRC v7.41
14:10:11: 14[11c10tcp14(11testing14)] 15VERSION 14REPLY: mIRC v7.41
-> hub3.network.net PRIVMSG #test4 :7[ ALERT 7] 4 testing using bad ident with mIRC Entered. 1
this is the debug result I get @
[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
What I want to do is to get a report for certain idents (mibbit and javauser for example) that connect but are using mirc.
Also for the ones i don't get a version to report them aswell on the channel.
Eventually, decide what action to take (gzline for example).
I am trying to make it work for a hub not only for one server.
So, I am using 2 remotes atm
Kod: Kodu kopyalamak için üzerine çift tıklayın!
on *:ctcpreply:VERSION*:if ($regex(* mIRC*)) && $($+(%,nc.,$nick),2) { msg #test4 7[ ALERT 7] 4 $nick using bad ident with mIRC Entered. 2 | unset $+(%,nc.,$nick) }
on *:snotice:*Client connecting*:{
var %id Javauser Mibbit
if $istok(%id,$remove($gettok($gettok($9,1,40),1,64) ,~),32) {
ctcp $8 VERSION | set $+(%,nc.,$8) 1 | timer 1 2 vcontrol $8
}
}
alias vcontrol { if $($+(%,nc.,$1),2) { msg #test4 4 $1 entered the server with a different client than mIRC. 2 | unset $+(%,nc.,$nick) } }
and this
Kod: Kodu kopyalamak için üzerine çift tıklayın!
on *:ctcpreply:VERSION mIRC*:if ($regex(* mIRC*)) && $($+(%,nc.,$nick),2) { msg #test4 7[ ALERT 7] 4 $nick using bad ident with mIRC Entered. 1 | unset $+(%,nc.,$nick) }
on *:snotice:*Client connecting*:{
var %id Javauser Mibbit
if $istok(%id,$remove($gettok($gettok($10,1,40),1,64) ,~),32) {
ctcp $9 VERSION | set $+(%,nc.,$9) 1 | timer 1 2 vcontrol $9
}
}
alias vcontrol { if $($+(%,nc.,$1),2) { msg #test4 4 $1 entered the server with a different client than mIRC. 1 | unset $+(%,nc.,$nick) } }
your solution seems nice... to make it work for me do i have to change $4 with ($9 and $8?)