]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - server/rcon2irc/suggestmap.pl
Radar and maplist for DesertFactory
[voretournament/voretournament.git] / server / rcon2irc / suggestmap.pl
1 # VoreTournament rcon2irc plugin by Merlijn Hofstra licensed under GPL - suggestmap.pl
2 # Place this file inside the same directory as rcon2irc.pl and add the full filename to the plugins.
3
4 sub out($$@);
5
6 #read the suggest vote
7 [ dp => q{:vote:suggested:(.+):(\d+)} => sub {
8         my ($map, $id) = @_;
9         my $nick = $store{"playernick_byid_$id"} || 'console';
10         out irc => 0, "PRIVMSG $config{irc_channel} :* map suggested: \00304$map\017 by $nick\017";
11         return 0;
12 } ],