OnClientPlayerTarget

From Multi Theft Auto: Wiki
Revision as of 00:06, 2 June 2013 by Lopez (talk | contribs) (Undo revision 36276 by MOJRM-511 (talk))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event is triggered whenever the local player targets an element.

Parameters

element target
  • target: The element the player targetted.

Source

The source of this event is the player that targeted the element.

Example

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

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

See Also

Client player events


Client event functions