GetServerName: Difference between revisions
Jump to navigation
Jump to search
m (Added template, fixed typo) |
m (Minor fix) |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server function}} | ||
This function | This function retrieves the server's name. | ||
==Syntax== | ==Syntax== |
Revision as of 20:43, 14 August 2007
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
- getMaxPlayers
- getServerConfigSetting
- getServerHttpPort
- getServerName
- getServerPassword
- getServerPort
- isGlitchEnabled
- setGlitchEnabled
- setMaxPlayers
- setServerConfigSetting
- setServerPassword
- shutdown