Well how i can make that system count rounds and if match got restarted it begin count from 0 again.
PHP Code:
public logevent_Round_Start()
{
round++;
new players[32], player, pnum;
get_players(players, pnum, "a");
for(new i = 0; i < pnum; i++)
{
player = players[i];
if(get_user_flags(player) & ADMIN_LEVEL_H)
{
return PLUGIN_CONTINUE
if(round > 3) Showrod(player)
}
}
return PLUGIN_HANDLED
}
__________________