OnClientObjectBreak: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
Line 27: Line 27:
)</syntaxhighlight>
)</syntaxhighlight>
</section>
</section>
==Requirements==
{{Requirements|n/a|1.3-9.05086|}}


==See Also==
==See Also==

Latest revision as of 17:11, 7 November 2024

This event is fired before an object breaks.

[[{{{image}}}|link=|]] Note: This event is only triggered for objects that are streamed in

Parameters

element attacker
  • attacker: the vehicle/ped/player who is breaking the object

Source

The source of this event is the object which will break.

Cancel effect

If this event is canceled, the object will not break.

Example

Click to collapse [-]
Client

This example prevents objects from beeing broken in interiors.

addEventHandler("onClientObjectBreak", root,
    function()
        if getElementInterior(source) ~= 0 then
            cancelEvent()
        end
    end
)

See Also

Client object events


Client event functions