GetServerPort: Difference between revisions
Jump to navigation
Jump to search
(Added doc page, adapted from getServerName) |
No edit summary |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 12: | Line 12: | ||
==Example== | ==Example== | ||
This example | This example Sends out the serverPort when you type: /serverport | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function outputServerPort ( ) | function outputServerPort ( ) | ||
outputChatBox ( | local serverPort = getServerPort() | ||
outputChatBox (" Server Port: "..serverPort.." ") --Output Serverport in Chatbox | |||
end | end | ||
addCommandHandler ( "serverport", outputServerPort ) --add the command Handler | |||
addCommandHandler ( " | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Server functions}} | {{Server functions}} |
Latest revision as of 14:49, 16 December 2014
This function retrieves the server's port.
Syntax
int getServerPort ( )
Returns
An integer corresponding to the server's port.
Example
This example Sends out the serverPort when you type: /serverport
function outputServerPort ( ) local serverPort = getServerPort() outputChatBox (" Server Port: "..serverPort.." ") --Output Serverport in Chatbox end addCommandHandler ( "serverport", outputServerPort ) --add the command Handler
See Also
- getMaxPlayers
- getServerConfigSetting
- getServerHttpPort
- getServerName
- getServerPassword
- getServerPort
- isGlitchEnabled
- setGlitchEnabled
- setMaxPlayers
- setServerConfigSetting
- setServerPassword
- shutdown