GetServerName
From Multi Theft Auto: Wiki
This function retrieves the server's name.
Syntax
string getServerName ( )
Returns
A string containing the server's name.
Example
This example creates a console command that outputs the server's name to the chatbox.
function outputServerName ( ) outputChatBox ( getServerName( ) ) end -- Add console command 'getServerName' addCommandHandler ( "getServerName", outputServerName )
See Also
- getFPSLimit
- getMaxPlayers
- getServerHttpPort
- getServerName
- getServerPassword
- getServerPort
- getVersion
- isGlitchEnabled
- setFPSLimit
- setGlitchEnabled
- setMaxPlayers
- setServerPassword
- shutdown