OnClientVehicleDrown

From Multi Theft Auto: Wiki
Revision as of 20:07, 27 September 2012 by Callum (talk | contribs) (Fixed a typo and added additional information.)
Jump to navigation Jump to search

This event is triggered when a vehicle starts to drown in water. This event is even triggered when vehicles merely come into contact with water, so not every trigger is an indication of actual drowning.

Parameters

This event has no parameters.

Source

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

Example

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

See Also

Client vehicle events


Client event functions