OnColShapeHit: Difference between revisions
Jump to navigation
Jump to search
m (→Parameters) |
m (→Parameters) |
||
Line 8: | Line 8: | ||
==Parameters== | ==Parameters== | ||
*The '''source''' of this event refers to the [[colshape]] which was hit by the | *The '''source''' of this event refers to the [[colshape]] which was hit by the element. | ||
*'''hitElement''': the [[element]] that entered the colshape. | *'''hitElement''': the [[element]] that entered the colshape. | ||
*'''matchingDimension''': a boolean referring to whether the hit collision shape was in the same dimension as the | *'''matchingDimension''': a boolean referring to whether the hit collision shape was in the same dimension as the element. | ||
==Example== | ==Example== |
Revision as of 11:40, 24 December 2007
This event is triggered when the player hits a colshape.
Syntax
void onColShapeHit ( element hitElement, bool matchingDimension )
Parameters
- The source of this event refers to the colshape which was hit by the element.
- hitElement: the element that entered the colshape.
- matchingDimension: a boolean referring to whether the hit collision shape was in the same dimension as the element.
Example
This example creates a hill area for a King of the hill gamemode. When a player enters or leaves the area, it's announced in the chatbox.
-- create our hill area for our gamemode local hillArea = createColSquare ( -2171.0678710938, 678.17950439453, 0, 15, 15 ) -- add hill_Enter as a handler for when a player enters the hill area addEventHandler ( "onColShapeHit", hillArea, "hill_Enter" ) function hill_Enter ( thePlayer, matchingDimension ) --announce to everyone that the player entered the hill outputChatBox( getClientName(thePlayer).." entered the zone!", getRootElement(),255, 255, 109, ) end -- add hill_Enter as a handler for when a player leaves the hill area addEventHandler ( "onColShapeLeave", hillArea, "hill_Exit" ) function hill_Exit ( thePlayer, matchingDimension ) --check if the player is not dead if isPlayerDead ( thePlayer ) ~= true then --if he was alive, announce to everyone that the player has left the hill outputChatBox ( getClientName(thePlayer).." left the zone!", getRootElement(), 255, 255, 109 ) end end
See Also
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled