2

この単一のタスクをIrssi Perlスクリプトで確立する必要があります。私は自分のチャンネルを持っており、特定のシナリオでメッセージをそのチャンネルに直接送信したいと考えています。

私のPerlの経験はかなり限られているので、これはまだ持っていません。Irssi Perl スクリプトでさまざまなチャットネットとチャネルを管理する方法がわかりません。では、たとえばチャネルなどにメッセージを送信するにはどうすればよい#testchan@Quakenetですか?

テスト 1:

server->command("^MSG $info{'#testchan'} $info{'Test message.'}");

テスト 2 (スクリプティングについてのチュートリアル):

sub away_describe_pub_channels { 
    my($net, $channel) = @_;
    my ($text) = @_;
    my $c = Irssi::server_find_chatnet("QuakeNet")->channel_find("testchan");
    $c->command("DESCRIBE $channel $text") 
}
4

1 に答える 1

1

これはボットに使用される例です:)

#==========================BEGINNING OF PARMS======================================
#name of the channels where this feature will be used
my @channels  = ("foo","bar");

#the public commands
#help
my $cmd_help = '!help';

#new ticket
my $cmd_newticket = "!stack";
my %url_newticket = ( 'foo'=>{url=>"http://stackoverflow.com/questions/ask"},
                  'bar'=>{url=>"http://https://github.com/repo/project/issues/new"}


sub bootstrap {
    my ($server, $msg, $nick, $address, $target) = @_;
    #lowercase of the channel name in case this one will be registered in camelCase ;)
    $target = lc $target;

    foreach my $channel (@channels) {
        if ( $target eq "#".$channel) {
            #split the line first peace the command second the rest
            my ($cmd,$line) = split / /,$msg,2;
            if ($cmd =~ $cmd_help) {
                $server->command("MSG ". $nick ." Here are the available commands : !stack");
            } elsif ($cmd eq $cmd_newticket) {
                my $h = $url_newticket{$channel};
                $server->command("MSG $target submit an issue/a ticket $h->{'url'}");
            }
         }
     }
}

#let's add the sub as a signal and let's play
Irssi::signal_add_last('message public', 'bootstrap');

これが役立つことを願っています

于 2012-08-17T13:43:43.527 に答える