diff options
Diffstat (limited to 'noise/modules/chat')
-rwxr-xr-x | noise/modules/chat | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/noise/modules/chat b/noise/modules/chat deleted file mode 100755 index e5badc36..00000000 --- a/noise/modules/chat +++ /dev/null @@ -1,33 +0,0 @@ -#! /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 |