4 # Copyright (c) 1998 - Dirk Koopman
9 my ($self, $line) = @_;
10 my @args = split /\s+/, $line;
14 @args = $self->call if (!@args || $self->priv < 9);
16 foreach $call (@args) {
18 my $dxchan = DXChannel::get($call);
21 push @out, $self->msg('heres', $call);
22 my $ref = Route::User::get($call);
23 $ref = Route::Node::get($call) unless $ref;
26 my $s = DXProt::pc24($ref);
28 DXChannel::broadcast_all_nodes($s, $main::me) ;
31 push @out, $self->msg('e3', "Set Here", $call);