OnClientPlayerTarget

From Multi Theft Auto: Wiki
Revision as of 16:22, 14 September 2007 by Lucif3r (talk | contribs) (→‎Example)
Jump to navigation Jump to search
Dialog-information.png This article needs checking.

Reason(s): Could not make work with
root = getRootElement ()

addEventHandler ( "onClientPlayerTarget", root, "targetingActivated" )
function targetingActivated ( target )
outputChatBox ( "hi" )
end

and yes it was defined as a client script. --Ransom 00:34, 12 April 2007 (CDT)


This event is blahblah and is used for blahblah.

Syntax

void onClientPlayerTarget ( element target )

Example

This example outputs the type of the target the client is aiming at

function targetingActivated ( target )
if ( target ) then
	outputChatBox(tostring(getElementType(source)))
end
end
addEventHandler ( "onClientPlayerTarget", getRootElement(), targetingActivated )