Advertisement
-kn1ght-

tcl egg

Oct 15th, 2021
1,230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.89 KB | None | 0 0
  1. bind raw * notice connection
  2. proc connection {from keyword arg} {
  3. global botnick
  4. if {[string match -nocase "*Client connecting on port*" $arg]} {
  5. set nick [lindex $arg 9]
  6. set port [string range [lindex [split [lindex $arg 8] ":"] 0] 0 end]
  7. set ident [string range [lindex [split [lindex $arg 10] "@"] 0] 1 end]
  8. set host [string range [lindex [split [lindex $arg 10] "@"] 1] 0 end-1]
  9. putquick "PRIVMSG $nick Hola $nick! Bienvenido(a) a la Red Mas Grande -=- Irc.UnionLatina.Net -=- Espero que tu estadia sea placentera y hagas muchas amistades, Respeta las REGLAS de la Red, Gracias por tu visita y vuelve pronto :)"
  10. putquick "PRIVMSG $nick - = - Irc.UnionLatina.Net - = -"
  11. putquick "PRIVMSG $nick Si Tienes Alguna Duda Sobre Los Servicios Entra Canal #Ayuda Digita !Ayuda Que Gustosamente Los Opererarios te Ayudaran."
  12. putquick "PRIVMSG $nick Si Tienes Alguna Duda Sobre Algun Nick/Servidor/Ban"
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement