RespawnObject

From Multi Theft Auto: Wiki
Revision as of 20:44, 4 October 2014 by Lopez (talk | contribs) (removed {{Needs Example}}, removed unnecessary section)
Jump to navigation Jump to search

This function respawns a specific object.

Syntax

bool respawnObject ( object theObject )

Required Arguments

Returns

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

Example

This example prevents objects from despawning. When an object breaks, it gets respawned right away.

addEventHandler ( "onClientObjectBreak", getRootElement(),
    function ()
        respawnObject ( source )
    end
)

See Also