OnClientVehicleExplode: 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 explodes. ==Parameters== This event has no parameters. ==Source== The source of this event is the vehicle th…')
 
Line 10: Line 10:


==Example==  
==Example==  
This example will output some text to chat on vehicle explosion
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- TODO
addEventHandler("onClientVehicleExplode", getRootElement(), function()
  local modelname = getVehicleName(source)
  outputChatBox(modelname.." just exploded!")
end)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 15:31, 12 August 2010

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