SetGameType: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 23: Line 23:


==Example 2==  
==Example 2==  
This example add command to change Game Type.
This example adds a command to change the game type.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function setNewGameType( source, commandName, newGameType )
function setNewGameType( source, commandName, newGameType )

Revision as of 17:43, 26 October 2018

This function sets a string containing a name for the game type. This should be the game-mode that is active, for example "Capture The Flag" or "Deathmatch". This is then displayed in the server browser and external server browsers.

It should be noted that mapmanager handles this automatically for gamemodes that utilise the map/gamemode system.

Syntax

bool setGameType ( string gameType )

Required Arguments

  • gameType: A string containing a name for the game mode, or false to clear it.

Returns

Returns true if the game type was set, false if an invalid argument was passed to the function.

Example

This example sets the game type to Capture The Flag.

setGameType ( "Capture The Flag" )

Example 2

This example adds a command to change the game type.

function setNewGameType( source, commandName, newGameType )
    local oldGameType = getGameType() -- check old Game Type
    setGameType( newGameType ) -- set new Game Type
    outputChatBox( "Game Type " .. oldGameType .. " changed to " .. newGameType .. ".", getRootElement(), 255, 128, 0 )
end
addCommandHandler( "setgametype", setNewGameType )

See Also