RestoreWorldModel: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Added example)
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function|New items}}
{{Server client function|New items}}
{{Needs Example}}


This function allows restoring of world object,which was removed with [[RemoveWorldModel]].
This function allows restoring of world object,which was removed with [[RemoveWorldModel]].
Line 27: Line 26:


==Example==  
==Example==  
Bring back an model that got removed.
Bring back an model that were removed.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
restoreWorldModel(1227,200,1826,-1108,25)
restoreWorldModel(1227,200,1826,-1108,25)

Revision as of 09:38, 13 September 2012

This function allows restoring of world object,which was removed with RemoveWorldModel.

Syntax

bool restoreWorldModel ( int modelID, float radius, float x, float y, float z [, int iInterior = -1 ] )

Required Arguments

  • modelID: A whole integer specifying the GTASA object model ID.
  • radius: A floating point number representing the radius that will be eliminated.
  • x: A floating point number representing the X coordinate on the map.
  • y: A floating point number representing the Y coordinate on the map.
  • z: A floating point number representing the Z coordinate on the map.
  • iInterior:

Returns

Returns true if the world object was restored, false otherwise.

Requirements

Minimum server version 1.2.0-9.03618
Minimum client version 1.2.0-9.03618

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.2.0-9.03618" client="1.2.0-9.03618" />

Example

Bring back an model that were removed.

restoreWorldModel(1227,200,1826,-1108,25)

Changelog

Version Description
1.3.1-9.04636 Added iInterior argument

See Also