OnNPCNetworkUpdatePropertyValue

From Onset Developer Wiki
Revision as of 18:04, 14 July 2020 by BlueMountains (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
OnNPCNetworkUpdatePropertyValue

Type: Function
Context: Client
Introduced: v1.0

Description

Called when a property value is updated from the network.

Syntax

OnNPCNetworkUpdatePropertyValue(npc, PropertyName, PropertyValue)

Parameters

  • npc
    The npc identifier.
  • PropertyName
    The name of the property that has changed.
  • PropertyValue
    The new property value.

Example

AddEvent("OnNPCNetworkUpdatePropertyValue", function(npcId, propertyName, propertyValue)
end)

See also