OnClientColShapeHit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (See Also for client colshape events)
Line 22: Line 22:
end
end
</syntaxhighlight>
</syntaxhighlight>
==See Also==
===Client colshape events===
{{Client_colshape_events}}
===Client event functions===
{{Client_event_functions}}

Revision as of 12:42, 12 January 2008

This event triggers whenever an element (a player, a vehicle...) enters a collision shape.

Parameters

element theElement, bool matchingDimension
  • theElement: the element that entered the colshape.
  • matchingDimension: true if theElement is in the same dimension as the colshape, false otherwise.

Source

The source of this event is the colshape that was hit.

Example

This example outputs "In." to the chatbox whenever a local user enters a collision shape.

function onClientColShapeHit( theElement, matchingDimension )
    if ( theElement == getLocalPlayer() ) then  -- Checks whether the entering element is the local player
        outputChatBox( "In." )  --Outputs.
    end
end

See Also

Client colshape events


Client event functions