SetMapName: Difference between revisions
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
==Example== | ==Example== | ||
This example sets the map name to ''My amazing map!'' | This example sets the map name to ''My amazing map!''. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
setMapName("My amazing map!") | setMapName("My amazing map!") |
Revision as of 17:42, 26 October 2018
This function is used to set a map name that will be visible in the server browser. In practice you should generally rely on the mapmanager to do this for you.
Syntax
bool setMapName ( string mapName )
Required Arguments
- mapName: The name you wish the server browser to show.
Returns
Returns true if map name was set successfully, false otherwise.
Example
This example sets the map name to My amazing map!.
setMapName("My amazing map!")
See Also