I've read may of the topics concerning throttling proc throttled {id time} { global throttled if {[info exists throttled($id)]} { return 1 } { set throttled($id) [clock sec] utimer $time [list unset throttled($id)] return 0 } } and I can apply it to more basic commands, but am unsure of where to pla...