19 Ocak 2016, 05:15
|
#20 |
Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
| Cevap: Real Name revealer
Hi @[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] ,
I am sorry for the unusual time response.
If your code is working you can use the hotlink event to allow youre mouse to click on the fullname and execute automaticly a command (ex: sqline).
For your other problem, like this Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
| elhale Nickli Üyeden Alıntı
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir. | Kod: Kodu kopyalamak için üzerine çift tıklayın! on *:snotice:*Client*connecting on*:{
var %ip $remove($gettok($10,2,64),$chr(41))
if $regex(%ip,/^(78.129.202.38|207.192.75.252|109.169.29.95|64.62.228.82)/i) { halt } {
who +I $9
}
}
on *:snotice:*Client*connecting at*:{
var %ip $remove($gettok($10,2,64),$chr(41))
if $regex(%ip,/^(78.129.202.38|207.192.75.252|109.169.29.95|64.62.228.82)/i) { halt } {
who +I $8
}
} but the exempt doesnt work, it does the who command to all users connecting.
I hope you'll understand what im trying to do. Thankyou again.
| I dont know if I am right or not, but why are you opening a bracket after IF again? Example: Kod: Kodu kopyalamak için üzerine çift tıklayın! if $regex(%ip,/^(78.129.202.38|207.192.75.252|109.169.29.95|64.62.228.82)/i) { halt } The red one is the opening bracket for this IF and the blue one is the close bracket. Now the if command should finished with the last blue bracket ( } ). But you open a bracket again, for what?
Try this, I think it should help you Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
Kod: Kodu kopyalamak için üzerine çift tıklayın! on *:snotice:*Client*connecting on*:{
var %ip $remove($gettok($10,2,64),$chr(41))
if $regex(%ip,/^(78.129.202.38|207.192.75.252|109.169.29.95|64.62.228.82)/i) { halt }
who +I $9
}
on *:snotice:*Client*connecting at*:{
var %ip $remove($gettok($10,2,64),$chr(41))
if $regex(%ip,/^(78.129.202.38|207.192.75.252|109.169.29.95|64.62.228.82)/i) { halt }
who +I $8
}
Konu KuL tarafından (19 Ocak 2016 Saat 07:23 ) değiştirilmiştir.
|
| |