View Single Post
mrtn
Junior Member
Join Date: May 2020
Old 06-01-2020 , 05:13   Re: CSGO - Move all players to spec
Reply With Quote #2

To move all players to spectator is as simple as iterating client Ids, checking if they are in the game and not spectating, and moving to spectator with ChangeClientTeam() (CS_SwitchTeam() can only switch a client to CT or T):

PHP Code:
for (int clientId 1clientId <= MaxClientsclientId++) {
    if (
IsClientInGame(clientId) && !IsClientObserver(clientId)) {
        
ChangeClientTeam(clientIdCS_TEAM_SPECTATOR);
    }

mrtn is offline