PDA

View Full Version : [Filled] A simple tcl-script :)


rAWfOX
03-11-2004, 03:41 AM
I just want the follow thing...

irc cmd:

!sitebla

output in channel (public)

BlaBlaBla



thanx in advance :)

fobban
03-11-2004, 03:45 AM
I'm no TCL-scripter but i would guess it should be something like this


bind pub - !sitebla pub_sitebla

proc pub_sitebla {nick uhost hand chan args} {
puthelp "PRIVMSG $chan :blablabla"
}

rAWfOX
03-11-2004, 03:51 AM
sweet... thanx...