4 # Please note that this is only effective if the user is not on-line
6 # Copyright (c) 1998 - Dirk Koopman
11 my ($self, $line) = @_;
12 my @args = split /\s+/, $line;
18 return (1, $self->msg('e5')) if $self->priv < 5;
20 foreach $call (@args) {
22 if ($call eq $main::mycall) {
23 push @out, $self->msg('e11', $call);
26 my $chan = DXChannel::get($call);
28 push @out, $self->msg('nodee1', $call);
30 $user = DXUser::get($call);
31 return (1, $self->msg('usernf', $call)) if !$user;
35 push @out, $self->msg('nodeu', $call);