I need to make my own scoring system so im trying to force terrorist to win when round ends (In all maps). So what would be the most efficient way to do this?
PHP Code:
new players[32], num;
get_players(players, num, "a");
for (new i; i < num; ++i)
if(is_user_alive(players[i]) && cs_get_user_team(players[i]) == CS_TEAM_T)
{
//code
}