OnClientVehicleDrown: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client event}} __NOTOC__ This event is triggered when a vehicle starts to drown in a water. ==Parameters== ==Source== The source of this even is the vehicle that is drow...")
 
Line 4: Line 4:


==Parameters==
==Parameters==
This event has no parameters.


==Source==
==Source==

Revision as of 02:59, 26 September 2012

This event is triggered when a vehicle starts to drown in a water.

Parameters

This event has no parameters.

Source

The source of this even is the vehicle that is drowning.

Example

addEventHandler("onClientVehicleDrown",root,function()
     outputChatBox("Vehicle: "..getVehicleName(source).." is drowning!")
end)

See Also

Client vehicle events


Client event functions