OnPlayerPickupLeave: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
{{See also/Server event|Player events}}
===Player events===
{{Player_events}}
===Event functions===
{{Event functions}}

Revision as of 03:02, 27 September 2018

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