OnClientVehicleExplode

From Multi Theft Auto: Wiki
Revision as of 00:38, 14 May 2012 by Kzman (talk | contribs) (Added interwiki (ES))
Jump to navigation Jump to search

This event is triggered when a vehicle explodes.

Parameters

This event has no parameters.

Source

The source of this event is the vehicle that exploded.

Example

This example will output some text to chat on vehicle explosion

addEventHandler("onClientVehicleExplode", getRootElement(), function()
  local modelname = getVehicleName(source)
  outputChatBox(modelname.." just exploded!")
end)

See Also

Client vehicle events


Client event functions