OutputServerLog: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 14: Line 14:


==Example==  
==Example==  
This example does...
This example outputs client logins to the server log.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
addEventHandler ( "onClientLogin", getRootElement(), "logClientLogin" )
blabhalbalhb --abababa
function logClientLogin ( previous_account, current_account )
--This line does this...
outputServerLog ( "Client "..getClientName ( source ).." logged in as "..getAccountName ( current_account ) )
mooo
end
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Server functions}}
{{Server functions}}
[[Category:Incomplete]]

Revision as of 00:30, 27 January 2007

This outputs a line of text to the server's log. This could be useful for debugging.

Syntax

bool outputServerLog ( string text )              

Required Arguments

  • text: The text to be output to the log.

Returns

Returns true if successful, false otherwise.

Example

This example outputs client logins to the server log.

addEventHandler ( "onClientLogin", getRootElement(), "logClientLogin" )
function logClientLogin ( previous_account, current_account )
	outputServerLog ( "Client "..getClientName ( source ).." logged in as "..getAccountName ( current_account ) )
end

See Also