ES/onClientTrailerAttach

From Multi Theft Auto: Wiki
Revision as of 00:02, 14 May 2012 by Kzman (talk | contribs) (Created page with "{{Client event}} __NOTOC__ Este evento es provocado cuando un tráiler se acopla a un vehiculo de remolque. ==Parámetros== <syntaxhighlight lang="lua"> vehicle remolcadoPor </syntaxhighlight> *'''remol...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Este evento es provocado cuando un tráiler se acopla a un vehiculo de remolque.

Parámetros

vehicle remolcadoPor
  • remolcadoPor: el vehículo que remolca al tráiler.

Origen

La variable source de este evento corresponde al tráiler que está siendo remolcado.

Example

En este ejemplo se envía al chat el nombre del vehículo que acopla a un trailer.

Click to collapse [-]
Client
function onAttach(vehicle)
	local name = getVehicleName(vehicle)
	outputChatBox(name.." acopló el remolque")
end
addEventHandler("onClientTrailerAttach", getRootElement(), onAttach)

Vea también

Eventos cliente de vehículos

Funciones cliente de eventoss