Are you able to make a operate that informs that the automobile is on the elevate or not so it may be used within the following export
--export for is automobile on elevate
operate IsOnLift()
native automobile = GetClosestVehicle(coords.x, coords.y, coords.z, 5.0, 0, 71)
native plate = GetVehicleNumberPlateText(automobile):gsub("^%s*(.-)%s*$", "%1")
if vehOnLift[plate] ~= nil then
IsOnLift = true
else
IsOnLift = false
finish
return IsOnLift
finish
--export finish