SetMaxPlayers

From Multi Theft Auto: Wiki
Revision as of 18:26, 3 September 2011 by MX Master (talk | contribs) (Created page with "__NOTOC__ {{Server function}} This function set the maximum number of player slots on the server. ==Syntax== <syntaxhighlight lang="lua">bool setMaxPlayers ( int slots )</syntaxhighlight> ===Required Argu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function set the maximum number of player slots on the server.

Syntax

bool setMaxPlayers ( int slots )

Required Arguments

  • slots: Maximum number of player slots on the server.

Returns

Returns true if number of player slots was successfully changed, false or nil otherwise.

Example

This example increases server slots count if server is full.

addEventHandler( "onPlayerConnect", root,
    function()
        local nowPlayers = getElementsByType('player')
        local maxPlayers = getMaxPlayers()

        if nowPlayers and maxPlayers and #nowPlayers >= maxPlayers then
            setMaxPlayers( maxPlayers + 1 )
        end
    end
)

See Also