AreTrafficLightsLocked: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Removed 'Example Needed' category)
mNo edit summary
 
Line 28: Line 28:
==See Also==
==See Also==
{{World_functions}}
{{World_functions}}
[[ru:areTrafficLightsLocked]]

Latest revision as of 11:15, 16 August 2012

Gets whether the traffic lights are currently locked or not. If the lights are locked, it means they won't change unless you do setTrafficLightState.

Syntax

bool areTrafficLightsLocked ( )

Returns

Returns true the traffic lights are currently locked, false otherwise.

Example

This example toggles traffic lights between 'locked' and 'unlocked'.

function toggleTrafficLights()
    if areTrafficLightsLocked() then -- See if traffic lights are currently locked
	setTrafficLightsLocked(false) -- unlock traffic lights if they are currently locked
    else
	setTrafficLightsLocked(true) -- lock traffic lights if they are not
    end
end
-- add command for toggling traffic lights
addCommandHandler("toggletrafficlights",toggleTrafficLights)

See Also