Logged In: NO

FuncTestBot shows how to add such a command. Such as:

$botname = "helpbot";

sub main()
{
odch::register_script_name($botname)
}

sub data_arrival()
{
my($user, $data) = @_;
if($data =~ /\$To: $botname/)
{
if($data =~ /help/)
{
odch::data_to_user($user,
"\$To: $user From: $botname \$<$botname> help is
on the way.|");
}
}
}