GetServerName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Minor fix)
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
string getServerName ( )
string getServerName (Bocah Indolife Roleplay )
</syntaxhighlight>
</syntaxhighlight>



Revision as of 11:10, 16 December 2014

This function retrieves the server's name.

Syntax

string getServerName (Bocah Indolife Roleplay )

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