OnPlayerContact: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ This event is triggered when the player hits an element. ==Syntax== <syntaxhighlight lang="lua"> void onPlayerContact ( element previous, element current ) </syntaxhighlight> ==Parameters== *The ...) |
No edit summary |
||
(6 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
This event is triggered when | {{Server event}} | ||
This event is triggered when a player stands on a different element than before. | |||
== | ==Parameters== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
element previousElement, element currentElement | |||
</syntaxhighlight> | </syntaxhighlight> | ||
*'''previousElement''': the [[element]] [[player]] was standing on before. ''nil'' if none. | |||
* | *'''currentElement''': the new [[element]] that the [[player]] is standing on now. ''nil'' if none. | ||
*''' | |||
==Source== | |||
The [[event system#Event source|source]] of this event is the [[player]] who hit an element. | |||
==Example== | ==Example== | ||
This example outputs the element you have hit | This example outputs the element type of an element you have hit | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function | function outputElementType ( prev, current ) | ||
if ( current | if ( current ) then | ||
outputChatBox ( "You have hit an "..getElementType ( current ) ) | outputChatBox ( "You have hit an "..getElementType ( current ) ) | ||
end | end | ||
end | end | ||
addEventHandler ( "onPlayerContact", getRootElement(), | addEventHandler ( "onPlayerContact", getRootElement(), outputElementType ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{See also/Server event|Player events}} | |||
{{ |
Latest revision as of 03:01, 27 September 2018
This event is triggered when a player stands on a different element than before.
Parameters
element previousElement, element currentElement
- previousElement: the element player was standing on before. nil if none.
- currentElement: the new element that the player is standing on now. nil if none.
Source
The source of this event is the player who hit an element.
Example
This example outputs the element type of an element you have hit
function outputElementType ( prev, current ) if ( current ) then outputChatBox ( "You have hit an "..getElementType ( current ) ) end end addEventHandler ( "onPlayerContact", getRootElement(), outputElementType )
See Also
Player events
- onPlayerACInfo
- onPlayerBan
- onPlayerChangeNick
- onPlayerChat
- onPlayerClick
- onPlayerCommand
- onPlayerConnect
- onPlayerContact
- onPlayerDamage
- onPlayerJoin
- onPlayerLogin
- onPlayerLogout
- onPlayerMarkerHit
- onPlayerMarkerLeave
- onPlayerModInfo
- onPlayerMute
- onPlayerNetworkStatus
- onPlayerPickupHit
- onPlayerPickupLeave
- onPlayerPickupUse
- onPlayerPrivateMessage
- onPlayerQuit
- onPlayerScreenShot
- onPlayerSpawn
- onPlayerStealthKill
- onPlayerTarget
- onPlayerUnmute
- onPlayerVehicleEnter
- onPlayerVehicleExit
- onPlayerVoiceStart
- onPlayerVoiceStop
- onPlayerWasted
- onPlayerWeaponFire
- onPlayerWeaponSwitch
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled