restoreWorldModel | Multi Theft Auto: Wiki Skip to content

restoreWorldModel

Client-side
Server-side
Shared

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function restoring a removed world object, reversing the effect of 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.
Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use.

  • iInterior (default: -1): MISSING_PARAM_DESC

Returns

  • bool: value

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

Code Examples

shared

Remove every lamp post (object 1226) besides Grove Street.

removeWorldModel(1226, 4000, 0, 0, 0, -1)
restoreWorldModel(1226, 50, 2489, -1665, 13, -1)

See Also

World Functions