OnClientVehicleExplode

From Multi Theft Auto: Wiki
Revision as of 15:31, 12 August 2010 by Varez (talk | contribs)
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