Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/console/bin/irc.tcl @ 1276

Last change on this file since 1276 was 1276, checked in by landauf, 16 years ago

someone likes to chat? well, I do. here's a new IRC client. it connects directly into our irc.datacore.ch / #orxonox channel with a random nickname. use the "say text" command to write text into the channel. there are some more commands without a shortcut, type "IRC" and tab.
please update your media directory.

for some reason, irc-client and telnet-remote don't work together. please use only one feature at the same time. I'm not sure if it's a bug in TCL or in my TclThreadManager class. The problem also occurs with irc or telnet in parallel with another busy tcl-thread… strange thing.

File size: 194 bytes
Line 
1proc every {ms body} { eval $body; after $ms [list every $ms $body] }
2package require irk
3set conn [irk::connect datacore $nickname]
4irk::join $conn #orxonox
5every 25 {}
6vwait termination
Note: See TracBrowser for help on using the repository browser.