GetVehiclePropertyValue

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
GetVehiclePropertyValue

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Gets a property value for this entity.

Syntax

GetVehiclePropertyValue(vehicle, PropertyName)

Parameters

  • vehicle
    The vehicle identifier
  • PropertyName
    Name of the property variable

Return Value

  • Returns the value.

Example

Server

function OnPackageStart()
	local vehicle = CreateVehicle(1, 0.0, 0.0, 0.0)
	SetVehiclePropertyValue(vehicle, "testValue", "Some test value string")
end
AddEvent("OnPackageStart", OnPackageStart)

Client

AddEvent("OnVehicleStreamIn", function(vehicle)
	AddPlayerChat("Value: "..GetVehiclePropertyValue(vehicle, "testValue"))
end)

See also