GetHeliBladeCollisionsEnabled

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
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.

This function gets the state of the helicopter blades collisions on the specified vehicle.

Syntax

bool getHeliBladeCollisionsEnabled ( vehicle theVehicle )

OOP Syntax Help! I don't understand this!

Method: vehicle:areHeliBladeCollisionsEnabled(...)
Variable: .heliBladeCollisionsEnabled
Counterpart: setHeliBladeCollisionsEnabled

Required Arguments

  • theVehicle: The vehicle that will be checked.

Returns

Returns true if the collisions are enabled for specified vehicle, false if the collisions aren't enabled for the specified vehicle, if the vehicle is not a helicopter or if invalid arguments are specified.

Example

Click to collapse [-]
Client

This example shows the blade collisions state

function onVehicleEnter ( seat, jacked )
	--If the player entered a helicopter
	if ( getVehicleType ( source ) == "Helicopter" ) then
		local state = getHeliBladeCollisionsEnabled‎(source )
		outputChatBox("Helicopter blades collisions are turned ".. (state and "on" or "off") )
	end
end
addEventHandler ( "onClientVehicleEnter", localPlayer, onVehicleEnter )

See Also