OnPlayerNetworkUpdatePropertyValue: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
*[[OnObjectNetworkUpdatePropertyValue]] | |||
*[[OnPlayerNetworkUpdatePropertyValue]] | *[[OnPlayerNetworkUpdatePropertyValue]] | ||
*[[OnVehicleNetworkUpdatePropertyValue]] | *[[OnVehicleNetworkUpdatePropertyValue]] |
Revision as of 22:16, 26 January 2020
Description
Called when a property value is updated from the network.
Syntax
OnPlayerNetworkUpdatePropertyValue(player, PropertyName, PropertyValue)
Parameters
- player
The player identifier. - PropertyName
The name of the property that has changed. - PropertyValue
The new property value.
Example
AddEvent("OnPlayerNetworkUpdatePropertyValue", function(playerid, propertyName, propertyValue)
end)