OnPickupLeave

From Multi Theft Auto: Wiki
Revision as of 22:47, 1 July 2018 by Bonus (talk | contribs)
Jump to navigation Jump to search

This event is triggered when a player leaves a pickup.

Parameters

player thePlayer
  • thePlayer: a player element referring to the player who left the pickup.

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 aPickup = createPickup ( 10.0, 10.0, 10.0, 2, 31, 3000, 50 ) --Create an M4 weapon pickup when script starts

function leftWeaponPickup( player )
   outputChatBox ( "You have left the M4 weapon pickup.", player ) --Display this message in the chat box
end
addEventHandler ( "onPickupLeave", aPickup, pickedUpWeaponCheck )

See Also

Pickup events


Event functions