IRCForumu.Net - Türkiye'nin IRC ve mIRC Kullanıcılarının Buluştuğu Forum

IRCForumu.Net - Türkiye'nin IRC ve mIRC Kullanıcılarının Buluştuğu Forum (https://www.ircforumu.net/)
-   TCL Scriptler (https://www.ircforumu.net/tcl-scriptler/)
-   -   User Karsılama TCL (https://www.ircforumu.net/tcl-scriptler/2644-user-karsilama-tcl.html)

immortaL 29 Haziran 2016 18:20

User Karsılama TCL
 
Kod:

set onjoin_msg {
 {
  "7 ~ $nick ~ 2Sunucumuza Hosgeldiniz... Keyifli Sohbetler Dileriz...5 "
 }
}
set onjoin_chans "#Sohbet"

bind join - * join_onjoin

proc join_onjoin {nick uhost hand chan} {
 global onjoin_msg onjoin_chans botnick
 if {(([lsearch -exact [string tolower $onjoin_chans] [string tolower $chan]] != -1) || ($onjoin_chans == "*")) && (![matchattr $hand b]) && ($nick != $botnick)} {
  set onjoin_temp [lindex $onjoin_msg [rand [llength $onjoin_msg]]]
  foreach msgline $onjoin_temp {
  putquick "PRIVMSG $chan [subst $msgline]"
  }
 }
}



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 18:19.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0
Copyright ©2005 - 2023 IRCForumu.Net - Tüm Hakları Saklıdır.