GetServerPort: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 14: Line 14:
This example Sends out the serverPort when you type: /serverport
This example Sends out the serverPort when you type: /serverport
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function outputServerPort ( )
function outputServerPort (22003)
         local serverPort = getServerPort(22003)  
         local serverPort = getServerPort(22003)  
outputChatBox (" Server Port: "..serverPort.." ") --Output Serverport in Chatbox
outputChatBox (" Server Port: "103.38.90.34." ") --Output Serverport in Chatbox
end
end
addCommandHandler ( "serverport", outputServerPort )  --add the command Handler
addCommandHandler ( "serverport", outputServerPort )  --add the command Handler

Revision as of 11:28, 16 December 2014

This function retrieves the server's port.

Syntax

int getServerPort (22003 )

Returns

An integer corresponding to the server's port.

Example

This example Sends out the serverPort when you type: /serverport

function outputServerPort (22003)
        local serverPort = getServerPort(22003) 
	outputChatBox (" Server Port: "103.38.90.34." ") --Output Serverport in Chatbox
end
addCommandHandler ( "serverport", outputServerPort )  --add the command Handler

See Also