OnPlayerPickupLeave

From Multi Theft Auto: Wiki
Revision as of 21:32, 1 July 2018 by Bonus (talk | contribs) (Created page with "__NOTOC__ {{Server event}} This event is triggered when a player leaves a pickup. ==Parameters== <syntaxhighlight lang="lua"> pickup pickupLeft </syntaxhighlight> *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This event is triggered when a player leaves a pickup.

Parameters

pickup pickupLeft

Source

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( pickup )
   if pickup == aPickup then
      outputChatBox ( "You have left the M4 weapon pickup.", source ) --Display this message in the chat box
   end
end
addEventHandler ( "onPlayerPickupLeave", root, pickedUpWeaponCheck )

See Also

Player events


Event functions