RemoveVehicleSirens: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 17: Line 17:


==Example==
==Example==
This example adds a vehicle siren on entering a vehicle and removes a vehicle siren on exiting.(TESTED!)
This example adds a vehicle siren on entering a vehicle and removes a vehicle siren on exiting.
<syntaxhighlight lang="lua">addEventHandler("onVehicleEnter",root,function(player,seat)
<syntaxhighlight lang="lua">addEventHandler("onVehicleEnter",root,function(player,seat)
   if(player)and(seat==0)then
   if(player)and(seat==0)then

Revision as of 13:47, 26 January 2016

This function removes sirens from a vehicle.

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)

Requirements

This template will be deleted.

See Also