this is part of cmdVoteMap, in default adminvote by amxmodx 1.8.2.
i really dont know how to set this part with colored chat and the maps who chosed to be voted. like eg. [ADMIN] ghost95v : vote map's de_dust2, as_oilrig, etc... will be helpfull

...
PHP Code:
new maxpl=get_maxplayers();
new msg[256];
for (new i = 1; i <= maxpl; i++)
{
if (is_user_connected(i) && !is_user_bot(i))
{
// HACK: ADMIN_VOTE_MAP_{1,2} keys were designed very poorly. Remove all : and %s in it.
LookupLangKey(msg, charsmax(msg), "ADMIN_VOTE_MAP_1", i);
replace_all(msg, charsmax(msg), "%s", "");
replace_all(msg, charsmax(msg), ":", "");
trim(msg);
show_activity_id(i, id, name, msg);
}
}
__________________