mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-01-23 14:34:46 +00:00
13 lines
453 B
Perl
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;
|
||
|
} ],
|