GetServerName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 14: Line 14:
This example creates a console command that outputs the server's name to the chatbox.
This example creates a console command that outputs the server's name to the chatbox.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function outputServerName ( )
function outputServerName (Zone Gaming )
outputChatBox ( getServerName( ) )
outputChatBox ( getServerName( ) )
end
end

Revision as of 07:18, 21 December 2016

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 (Zone Gaming )
	outputChatBox ( getServerName( ) )
end

-- Add console command 'getServerName'
addCommandHandler ( "getServerName", outputServerName )

See Also