OutputServerLog

From Multi Theft Auto: Wiki
Revision as of 11:22, 16 December 2014 by Glossy (talk | contribs) (→‎Example)
Jump to navigation Jump to search

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

Click to collapse [-]
Server

Example 1: This example outputs client logins to the server log.

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

Example 2: This example outputs the clients position to the server

function outputPosition(source)
	local x,y,z = getElementPosition(source)
	outputServerLog(tostring(x) .. "," .. tostring(y) .. "," .. tostring(z))
end
addCommandHandler("op",outputPosition)

See Also