I don't know how I didn't see this xD
PHP Code:
for( new i = 0; i <= MAX_MAPS; i++ ) //select X maps
-->
PHP Code:
for( new i = 0; i < MAX_MAPS; i++ ) //select X maps
And for the '-1 Rounds' change this
PHP Code:
public NewRound()
{
g_szRoundVotemap++;
ColorChat( 0, "there will be votemap in: %i Rounds", 3 - g_szRoundVotemap);
if(g_szRoundVotemap >= get_pcvar_num(rounds))
set_task( 1.0, "ActionSpecial" );
}
To
PHP Code:
public NewRound()
{
g_szRoundVotemap++;
ColorChat( 0, "there will be votemap in: %i Rounds", get_pcvar_num(rounds) - g_szRoundVotemap);
if(g_szRoundVotemap >= get_pcvar_num(rounds))
set_task( 1.0, "ActionSpecial" );
}
Was just a typo