removeVehicleSirens | Multi Theft Auto: Wiki Skip to content

removeVehicleSirens

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function removes sirens from a vehicle.

Syntax

removeVehicleSirens ( )

Code Examples

server

This example adds a vehicle siren on entering a vehicle and removes a vehicle siren on exiting.

addEventHandler("onVehicleEnter",root,function(player,seat)
if(player)and(seat==0)then
addVehicleSirens(source,1,1)
end
end)
addEventHandler("onVehicleExit",root,function(player,seat)
if(player)and(seat==0)then
removeVehicleSirens(source)
end
end)

See Also

Vehicle Functions