SetMapName

From Multi Theft Auto: Wiki
Revision as of 09:30, 3 October 2024 by Fernando187 (talk | contribs) (add MAX 200 characters according to ASE.h constants)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

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