OnClientVehicleExplode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Added interwiki (ES))
Line 23: Line 23:
===Client event functions===
===Client event functions===
{{Client_event_functions}}
{{Client_event_functions}}
[[es:onClientVehicleExplode]]

Revision as of 00:38, 14 May 2012

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