OnPickupLeave: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 27: | Line 27: | ||
==See Also== | ==See Also== | ||
===Pickup events=== | |||
{{Pickup events}} | {{Pickup events}} | ||
===Event functions=== | |||
{{Event functions}} |
Revision as of 02:10, 27 September 2018
This event is triggered when a player leaves a pickup.
Parameters
player thePlayer
Source
The source of this event is the pickup that was left by the player.
Example
This example creates a pickup and outputs a message to the chat box when a player leaves it.
local thePickup = createPickup( 10, 10, 10, 2, 31, 3000, 50 ) -- Create a M4 weapon pickup when the script starts function leftWeaponPickup( player ) outputChatBox( "You have left the M4 weapon pickup.", player ) -- Output a message to the chatbox end addEventHandler( "onPickupLeave", thePickup, pickedUpWeaponCheck )
See Also
Pickup events
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled