Hello....I use an onjoin message .tcl by 'banned' What I am looking to do is delay the message briefly (10 seconds or so) when a person enters the channel instead of it being instantanious when they join. Is there a way that this can be done? Even by simply adding something to the .tcl?
bind join - * join:chan
set joinmsg "My msg i wana show"
proc join:chan {nick uhost hand chan} {
global joinmsg
utimer 10 list putserv "PRIVMSG $chan :$joinmsg"
}
Thank you both for responding. I am REALLY trying to learn all this myself. I had tried different variables of what you have suggested but just kept getting little things wrong. Usually ending up in "wrong args" error messages from the bot Thanks again.