SetMapName
From Liberty Unleashed Wiki
Changes the map name of the server.
Syntax
bool SetMapName( string name )
Arguments
- name - The name you want to change it to
Example
This example will change the mapname of the server when someone types '/changename Liberty City'
function OnPlayerCommand( id, cmd, text ) { if ( cmd == "changename" ) { SetMapName( text ); } }
Notes
The call onPlayerCommand was also used in the example. More info about this in the corresponding page.