GetPickupPropertyValue: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 12: | Line 12: | ||
== Example == | == Example == | ||
=== Server === | |||
<syntaxhighlight lang="Lua"> | <syntaxhighlight lang="Lua"> | ||
GetPickupPropertyValue( | function OnPackageStart() | ||
<syntaxhighlight> | local pickup = CreatePickup(1, 0.0, 0.0, 0.0) | ||
SetPickupPropertyValue(pickup, "testValue", "Some test value string") | |||
end | |||
AddEvent("OnPackageStart", OnPackageStart) | |||
</syntaxhighlight> | |||
=== Client === | |||
<syntaxhighlight lang="Lua"> | |||
AddEvent("OnPickupStreamIn", function(pickup) | |||
AddPlayerChat("P: "..GetPickupPropertyValue(pickup, "testValue")) | |||
end) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{PickupFunctions}} | {{PickupFunctions}} |
Latest revision as of 21:34, 22 December 2020
Description
Gets a property value for this entity.
Syntax
GetPickupPropertyValue(pickup, PropertyName)
Parameters
- pickup
The pickup identifier - PropertyName
Name of the property variable
Return Value
- Returns the value.
Example
Server
function OnPackageStart()
local pickup = CreatePickup(1, 0.0, 0.0, 0.0)
SetPickupPropertyValue(pickup, "testValue", "Some test value string")
end
AddEvent("OnPackageStart", OnPackageStart)
Client
AddEvent("OnPickupStreamIn", function(pickup)
AddPlayerChat("P: "..GetPickupPropertyValue(pickup, "testValue"))
end)
See also
- GetPickupCount
- GetStreamedPickups
- GetPickupLocation
- SetPickupPropertyValue
- GetPickupPropertyValue
- SetPickupVisibleForPlayers
- GetAllPickups
- CreatePickup
- DestroyPickup
- IsValidPickup
- SetPickupScale
- GetPickupScale
- SetPickupDimension
- GetPickupDimension
- SetPickupVisibility
- SetPickupOutline
- IsPickupStreamedIn