RU/onTrailerAttach: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 19: Line 19:
==Пример==  
==Пример==  
<!-- Explain what the example is in a single sentance -->
<!-- Explain what the example is in a single sentance -->
This example removes a trailer from the truck it is attached to. Good if you do not want people attaching trailers to vehicles
Данный пример показывает, как можно отсоединить прицеп от грузовика, к которому это прицеп присоединен.
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 28: Line 28:
</syntaxhighlight>
</syntaxhighlight>


{{See also/Server event|Vehicle events}}
{{See also/Server event|RU/Vehicle events}}

Revision as of 15:57, 6 March 2010

Данное событие происходит, когда прицеп присоединяется к грузовику.

Параметры

vehicle theTruck
  • theTruck: Грузовик, к которому был присоединен прицеп

Источник

Источником этого события является прицеп, который был присоединен к грузовику.

Отмена события

Если это событие отменить, то прицеп снова отсоединится от грузовика.

Пример

Данный пример показывает, как можно отсоединить прицеп от грузовика, к которому это прицеп присоединен.

function detachTrailer(theTruck)
    detachTrailerFromVehicle(theTruck, source) --detach the newly attached trailer
 end
addEventHandler("onTrailerAttach", getRootElement(), detachTrailer)

See Also

RU/Vehicle events

Event functions