BreakObject

From Multi Theft Auto: Wiki
Revision as of 16:50, 18 January 2014 by Prime (talk | contribs)
Jump to navigation Jump to search

This function breaks a specific object. Note: Only breakable objects can be broken.


[[{{{image}}}|link=|]] Note: This function does not support any kind of glass objects

Syntax

bool breakObject ( object theObject )

Required Arguments

Returns

Returns true if the object was successfully broken. false if the object is not breakable, or a wrong object was given.

Example

This example checks if the object created is breakable and if it is then breaks it.

addCommandHandler("createObj",
function(command, id)
    local x, y, z = getElementPosition(localPlayer)
    local object = createObject (id, x, y, z)
    if (id) then
        if isObjectBreakable(object) then
            breakObject(object)
        end
    end
end
)

See Also