diff options
author | root <root@shack.(none)> | 2010-05-07 04:34:49 +0200 |
---|---|---|
committer | root <root@shack.(none)> | 2010-05-07 04:34:49 +0200 |
commit | c47b0ac32302fdbeed13f45a82d3e8c420de8fbd (patch) | |
tree | 528714f721df35547e67bdffcb6b1339bfa10e62 /modules/chat | |
parent | c83842518c14a7c258e06baf9fe45a93b5d159e8 (diff) | |
parent | 4830460590cf013cb79df8d04b96ebaf725db6af (diff) |
Merge branch 'master' of /home/shack/noise
Diffstat (limited to 'modules/chat')
-rwxr-xr-x | modules/chat | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/chat b/modules/chat new file mode 100755 index 00000000..e5badc36 --- /dev/null +++ b/modules/chat @@ -0,0 +1,33 @@ +#! /bin/sh + +case "$1" in + (--help) echo send text to everyone with @@ prepended ;; + (/nick) + echo set nick to $2 + echo /set chat_nick $2 >$NOISE_linefeed;; + (/names) + cd /tmp/noise + . $NOISE_pid/environment + nick="${chat_nick-$NOISE_pid}" + channel="$chat_channel" + echo "[34mUsers in channel [4m$channel[m" + for client in * ; do + . $client/environment + chat_nick="${chat_nick-$client}" + if test "$channel" = "$chat_channel" && test "$default_command" = chat ; then + echo "[33m$chat_nick[m" + fi + unset chat_nick + unset chat_channel + unset default_command + done ;; + (*) + cd /tmp/noise + . $NOISE_pid/environment + nick="${chat_nick-$NOISE_pid}" + + echo "/send_to_channel $chat_channel [33m$nick:[m $*" > $NOISE_linefeed + + + #echo /wall [33m@@[m $* >$NOISE_linefeed +esac |