RemoveVehicleSirens: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Remove obsolete Requirements section)
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server function}}
{{Shared function}}
{{New feature/item|3.0130|1.3.0|3968|
This function removes sirens from a vehicle.
This function removes sirens from a vehicle.
}}
 
{{New feature/item|3.0161|1.6.0|22862|This function is shared now.}}
 


==Syntax==  
==Syntax==  
Line 33: Line 34:


==See Also==
==See Also==
{{Vehicle_functions|server}}
{{Vehicle functions}}

Revision as of 02:43, 31 December 2024

This function removes sirens from a vehicle.

ADDED/UPDATED IN VERSION 1.6.0 r22862:
This function is shared now.


Syntax

bool removeVehicleSirens ( vehicle theVehicle )

Required Arguments

  • theVehicle: The vehicle to remove the sirens of

Returns

Returns true if sirens were successfully removed from the vehicle, false otherwise.

Example

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