setMapName
Client-side
Server-side
Shared
Pair: getMapName
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. (Max 200 characters).
Returns
- bool: result
Returns true if map name was set successfully, false otherwise.
Code Examples
server
This example sets the map name to My amazing map!.
setMapName("My amazing map!")