OnClientPlayerTarget
Jump to navigation
Jump to search
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 )