-
Status :
Üyelik Tarihi : May 2008
Mesajlar : 20
Tecrübe Puanı
: 0
TCL Arşivi
ArkadaşLar Burda Sizlere TCL Arşivimi Sunucam Lütfen Takip Edin Sıra İle Başlıyorum ConFLarıda İsteyenLere Vere Bilirim...
Şu Anda YAzılı Olan TCL Arşivi İcerigi...
-------------------------------------------
---------
Arama.TCL ---------
Google.TCL ---------
Cycle.TCL ---------
HElper.TCL ---------
> KARŞILAMA ---------
Giriş.TCL ---------
KARŞILAMA.TCL ---------
Koruma.TCL ---------
Küfür.TCL ---------
Opal.TCL ---------
Triva.TCL ---------
Shoutcast1.02.TCL ---------
acheck.TCL ---------
action.fix.TCL ---------
adver.TCL ---------
alltools.TCl ---------
antikill.TCL ---------
Anti-socks1.1.TCL ---------
BotServ.TCL ---------
Botserv1.TCL ---------
ChanLimit.TCL ---------
CloneDetect.TCL ---------
ClonePor.TCL ---------
cmd_resolve.TCL ---------
Clorkick.TCL ---------
compat.TCL ---------
DomainWhois.TCL ---------
fsrv.TCL ---------
getops.TCL ---------
Giriş.TCL ---------
KanaLLOCK.TCL ---------
Klined.TCL ---------
NoSpam.TCL ---------
Notes.TCL ---------
NoticeBan.TCL ---------
OnJoin.TCL ---------
radio.TCL ---------
rndctcp.TCL ---------
Sentinel.TCL ---------
SheLL.TCL ---------
USERİNFO.TCL ---------
---------
--------------------------------------------------
[FONT=Arial Black]cirkinsem kimene?[/FONT]
-
Status :
Üyelik Tarihi : May 2008
Mesajlar : 20
Tecrübe Puanı
: 0
Arama.TCL
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
# IRC Guard Eggdrop
# Codded by 2004 ©
# Web: [Linkleri Sadece Kayitli Üyeler Görebilir. Üye Olmak için Tiklayin]
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
# google.tcl v0.2.1
#
# !Bul keywords - displays the first related website found from google in the channel
# !Resim keywords - displays the first related image found on google in the channel
# !Dosya keywords - displays the first mirror download link found on filemirrors in the channel
#
#
# 04/17/2002 v0.2.1 useragent fix by
package require http
bind pub - !Bul pub:google
bind pub - !Resim pub:image
bind pub - !Dosya pub:file
set agent "arama"
proc pub:google { nick uhost handle channel arg } {
global agent
if {[llength $arg]==0} {
putserv "PRIVMSG $channel :hey ! tappes des mots boulet !"
} else {
set query "http://www.google.de/search?btnI=&q="
for { set index 0 } { $index<[llength $arg] } { incr index } {
set query "$query[lindex $arg $index]"
if {$index<[llength $arg]-1} then {
set query "$query+"
}
}
#putserv "PRIVMSG $channel :$query"
set token [http::config -useragent $agent]
set token [http::geturl $query]
puts stderr ""
upvar #0 $token state
set max 0
foreach {name value} $state(meta) {
if {[regexp -nocase ^location$ $name]} {
set newurl [string trim $value]
putserv "PRIVMSG $channel :$newurl"
}
}
}
}
proc pub:image { nick uhost handle channel arg } {
global agent
if {[llength $arg]==0} {
putserv "PRIVMSG $channel :hey ! tappes des mots boulet !"
} else {
set query "http://images.google.de/images?btnI=&q="
for { set index 0 } { $index<[llength $arg] } { incr index } {
set query "$query[lindex $arg $index]"
if {$index<[llength $arg]-1} then {
set query "$query+"
}
}
append query &imgsafe=off
# putserv "PRIVMSG $channel :$query"
set token [http::config -useragent $agent]
set token [http::geturl $query]
puts stderr ""
upvar #0 $token state
set max 0
foreach {name value} $state(meta) {
if {[regexp -nocase ^location$ $name]} {
set starturl "http://"
set newurl [string trim $value]
set newurl [string range $newurl [expr [string first = $newurl]+1] [expr [string first & $newurl]-1]]
append starturl $newurl
putserv "PRIVMSG $channel :$starturl"
}
}
}
}
proc pub:file { nick uhost handle channel arg } {
global agent
if {[llength $arg]==0} {
putserv "PRIVMSG $channel :hey ! tappes un nom de fichier boulet !"
} else {
set query "http://www.filemirrors.com/find.src?file="
set query "$query[lindex $arg 0]"
# putserv "PRIVMSG $channel :$query"
set token [http::config -useragent $agent]
set token [http::geturl $query]
set html [http::data $token]
puts stderr ""
upvar #0 $token state
set max 0
# foreach {name value} $state(meta) {
# putserv "PRIVMSG $channel :$value"
# }
# putserv "PRIVMSG $channel :$html"
set result "[lindex $html 1]"
set result [string range $result [expr [string first = $result]+2] [expr [string first > $result]-2]]
putserv "PRIVMSG $channel :$result"
}
}
putlog "Google v0.2.1 - LOADED!"
[FONT=Arial Black]cirkinsem kimene?[/FONT]
-
Status :
Üyelik Tarihi : May 2008
Mesajlar : 20
Tecrübe Puanı
: 0
Google.TCL
Alıntı:
# google.tcl v0.1
# by
package require http
bind pub - !help pub:help
bind pub - !google pub:google
proc pub:help { nick uhost handle channel arg } {
putserv "NOTICE $nick :!google google sur IRC !"
}
proc pub:google { nick uhost handle channel arg } {
if {[llength $arg]==0} {
putserv "PRIVMSG $channel :hey ! tappes des mots boulet !"
} else {
set query "http://www.google.fr/search?btnI=&q="
for { set index 0 } { $index<[llength $arg] } { incr index } {
set query "$query[lindex $arg $index]"
if {$index<[llength $arg]-1} then {
set query "$query+"
}
}
# putserv "PRIVMSG $channel :$query"
set token [http::geturl $query]
puts stderr ""
upvar #0 $token state
set max 0
foreach {name value} $state(meta) {
if {[regexp -nocase ^location$ $name]} {
set newurl [string trim $value]
putserv "PRIVMSG $channel :$newurl"
}
}
}
}
[FONT=Arial Black]cirkinsem kimene?[/FONT]
-
Status :
Üyelik Tarihi : May 2008
Mesajlar : 20
Tecrübe Puanı
: 0
KARŞILAMA
Giriş.TCL NOT: Noktalı(............) Yerlere Kendi Domain'inizi YAzınız.
Alıntı:
################################################## #####################
#moonShell Internet Hizmetleri ---------------------------------------#
#moonshell Internet Hizmetleri tarafindan Olusturulmustur.------------#
#Call Center : 0543 252 45 01 ----------------------------------------#
################################################## #####################
proc join_greet {nick uhost handle channel} {
putserv "privmsg $nick :4........... 2Chat Sunucusuna Hos Geldiniz"
putserv "privmsg $nick :2Resmi IRCD/SERVICES Kanalimiz 4#Help 2Her Zaman Yardim Vermeye Hazirdir"
putserv "privmsg $nick :2Calinti Nick/Kanal Ve Herturlu Server Sorunlari Icin 4#OperHelp 2Kanalina Gidebilirsiniz."
putserv "privmsg $nick :2Oyun Oynamak, Kendinizi Ve Bilginizi Sinayarak Gelistirmek Icin 4#Oyun 2Kanalini Tercih Edebilirsiniz."
putserv "privmsg $nick :2Radyo Dinlemek, Istek Parcalarinizi Sevdiklerinize Yollamak Icin 4#DinLeFM 2Kanalini Ziyaret Edebilirsiniz."
putserv "privmsg $nick :2Sunucumuz Kurallarini Ve Yonetim Kadrosunu Gormek Icin 4/motd 2 ve 4/rules 2Komutunu Uygulayiniz."
putserv "privmsg $nick :2Web Sitemiz 4............... 2Ziyaret Edebilirsiniz."
}
bind join - * join_greet
KARŞILAMA.TCL NOT: Noktalı(............) Yerlere Kendi Domain'inizi YAzınız.
Alıntı:
#
# Modify all you like, just remember to give the original author credit.
# (Promet)
set colornum 0
set rekl***num 1
set reklamunum 0
set wecwho "\[Promet\]"
bind join - * welcome_message
proc welcome_message {nick uhost hand chan} {
global colornum botnick
if {$nick == $botnick} {return 0}
if {![string match "*Sohbet*" $chan]} { return 0 }
putserv "PRIVMSG $nick :2Merhaba 4 $nick "
putserv "PRIVMSG $nick :4........... 2sohbet 2sunucusuna 2hoşgeldiniz."
putserv "PRIVMSG $nick :2sunucu 2kurallarina 2ve 2görev 2dagilimina 4/motd 2yazarak 2ulaşabilirsiniz."
putserv "PRIVMSG $nick :2Sunucu 2yardim 2kanalımız 4#help , 2sohbet 2kanalımız 4#Sohbet 2Oyun 2kanalımız 4#Oyun , 2Radyo 2kanalı 4#Radyo 2dir."
putserv "PRIVMSG $nick :2WeB Chat Adresimiz [Linkleri Sadece Kayitli Üyeler Görebilir. Üye Olmak için Tiklayin]........... Adresidir."
putserv "PRIVMSG $nick :2Dilek 2ve 2şikayetlerinizi, 4admin@.......... 2mail 2adresine 2iletebilirsinizniz.."
putserv "PRIVMSG $nick :2.............. Ailesi 7Sizlere En güzel En Seviyeli Sohbet Ortamı Hazırlar.4........ 2........... " }
[FONT=Arial Black]cirkinsem kimene?[/FONT]
-
Status :
Üyelik Tarihi : Jan 2004
Bulunduğu Yer : İstanbuL
Mesajlar : 12,132
- Blog Başlıkları
- 602
Tecrübe Puanı
: 10
Cevap: TCL Arşivi
Konu Bilgisi
Users Browsing this Thread
Şu anda 1 üyemiz bu konuya göz atıyor. (0 kayıtlı üye ve 1 misafir.)
Benzer Konular
-
Konuyu Açan: Administrator, Forum: Asp Scriptler
Cevaplar: 10
Son Mesaj : 17-10-2010, 03:43 PM
-
Konuyu Açan: MeRiC, Forum: Trabzonspor
Cevaplar: 3
Son Mesaj : 28-03-2006, 03:35 PM
-
Konuyu Açan: SoNPicH, Forum: Windows
Cevaplar: 3
Son Mesaj : 27-03-2006, 10:54 AM
-
Konuyu Açan: bLackLove, Forum: Geyik Muhabbet
Cevaplar: 4
Son Mesaj : 23-03-2006, 12:03 PM
-
Konuyu Açan: subaruturkey, Forum: Sanal-Gerçek Modifiyeler
Cevaplar: 7
Son Mesaj : 01-02-2006, 03:23 PM
Yetkileriniz
- Konu açma yetkiniz yok.
- Cevap yazma yetkiniz yok.
- Eklenti yükleme yetkiniz yok.
- Mesajınızı değiştirme yetkiniz yok.
Forum Kuralları
Bu Web Sitesi
vBulletin™ Sürüm 4.1.5 ile Tasarlanmıştır
Telif hakkı © 2012 vBulletin Solutions, Inc. Tüm hakları saklıdır

buSem Tecnology Bilişim Hizmetleri
Forum Saati: 09:48 AM Zaman dilimi GMT +3 olarak ayarlanmıştır.
Bu Konuyu Paylaşın !