OnClientPlayerTarget: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{ | {{Client event}} | ||
This event is triggered whenever the local player targets an element. | This event is triggered whenever the local player targets an element. | ||
Revision as of 13:35, 22 October 2007
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(source))) end end addEventHandler ( "onClientPlayerTarget", getRootElement(), targetingActivated )
See Also
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled