Client-side function

restoreGameWorld

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

BETA: NEW FEATURE (BUILD: 1.6.0 r22909)

This function restores the entire game world.

Syntax

nil restoreGameWorld()

Returns

This function does not return any value.

Example

This example restores game world.

addEventHandler("onClientResourceStop", resourceRoot, function()
	restoreGameWorld()
end)

See Also