OnClientPlayerPickupHit

From Multi Theft Auto: Wiki
Revision as of 04:20, 19 March 2012 by Ccw (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event triggers whenever a player hits a pickup locally.

Parameters

pickup thePickup, bool matchingDimension
  • thePickup: the pickup that was hit.
  • matchingDimension: true if thePickup is in the same dimension as the player, false otherwise.

Source

The source of this event is the player that hit the pickup.

Example

This example outputs a message whenever the local player hits a pickup.

local function clientPlayerPickupHit(thePickup, matchingDimension)
    outputChatBox("* You have hit a pickup!", 255, 0, 0)
end
addEventHandler("onClientPlayerPickupHit", localPlayer, clientPlayerPickupHit)

Requirements

Minimum server version n/a
Minimum client version 1.3.0-9.03919

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.0-9.03919" />

See Also

Client pickup events


Client player events


Client event functions