# How to Change Max Players on Your Quake Live Server (/docs/quake-live/player-slots)



import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
import { Step, Steps } from 'fumadocs-ui/components/steps';

The default Quake Live player limit is **16**. The id Tech 3 engine supports higher counts, but most QL game modes are designed for ≤16 players.

<Tabs items={['Via Startup (Recommended)', 'Via server.cfg']}>
  <Tab value="Via Startup (Recommended)">
    <Steps>
      <Step>
        Open Startup [#open-startup]

        In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Startup** in the sidebar.
      </Step>

      <Step>
        Set Max Players [#set-max-players]

        Find the **Max Players** field and enter your desired count.
      </Step>

      <Step>
        Restart [#restart]

        Restart from **Console** to apply.
      </Step>
    </Steps>
  </Tab>

  <Tab value="Via server.cfg">
    <Steps>
      <Step>
        Stop the server [#stop-the-server]
      </Step>

      <Step>
        Open server.cfg [#open-servercfg]

        In **Files**, open `baseq3/server.cfg`.
      </Step>

      <Step>
        Set sv_maxClients [#set-sv_maxclients]

        ```
        set sv_maxClients 16
        ```
      </Step>

      <Step>
        Save and start [#save-and-start]
      </Step>
    </Steps>
  </Tab>
</Tabs>

Recommended Counts by Game Mode [#recommended-counts-by-game-mode]

| Mode                       | Recommended            |
| -------------------------- | ---------------------- |
| **Duel (1v1)**             | 4 (2 players + 2 spec) |
| **Free For All**           | 8–12                   |
| **Team Deathmatch**        | 8                      |
| **Clan Arena**             | 8                      |
| **Capture the Flag**       | 12–16                  |
| **Domination / Harvester** | 12–16                  |

Related Guides [#related-guides]

* [Server Configuration](/docs/quake-live/server-config)
* [Connect to Your Server](/docs/quake-live/join-server)
