SetGameType: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 21: Line 21:


==See Also==
==See Also==
{{ASE functions}}
{{Announce functions}}

Revision as of 16:19, 30 January 2009

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.

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" )

See Also