xonotic/server/rcon2irc/suggestmap.pl
2010-03-18 14:22:15 +01:00

13 lines
453 B
Perl

# Nexuiz rcon2irc plugin by Merlijn Hofstra licensed under GPL - suggestmap.pl
# Place this file inside the same directory as rcon2irc.pl and add the full filename to the plugins.
sub out($$@);
#read the suggest vote
[ dp => q{:vote:suggested:(.+):(\d+)} => sub {
my ($map, $id) = @_;
my $nick = $store{"playernick_byid_$id"} || 'console';
out irc => 0, "PRIVMSG $config{irc_channel} :* map suggested: \00304$map\017 by $nick\017";
return 0;
} ],