But that delays the entire output by 30 seconds so itll wait 30 seconds then display the lines without delay, I am attempting to delay each line output
if {![catch {open "myfile.txt" r} r]} {
set time 0
while {![eof $r]} {
gets $r line
utimer [incr time 30] [list putserv "PRIVMSG $chan :$line"]
}
close $r
}