DeepThought wrote:How can I remove the kibitz that says: "Welcome (name), programs only", When a person enters my room?
You need to edit this script here:
sub rop_tableentry { # 6a
my $who=sreadutf($_[0]);
my $table=unpack('C',shift());
exists($handles{$who}) or return;
defined($tables[$table]) or return;
push(@{$handles{$who}->[2]},$table);
push(@{$tables[$table]->[5]},$who);
if (lc($who) eq lc($me)) {
iprint "You are now observing game $table.\n";
prompt;
defined($primary) or $primary=$table;
} else {
top_ack $table,"Game $table: $who ($handles{$who}->[1]) is now observing.";
if (lc($tables[$table]->[6]->[0]) eq lc($me)) {
my $t=$tables[$primary];
my $message="Welcome $who, programs only at this table.";
nprinttop($t,0x43,packutf($message));
}
}
}