EngineRestoreModel

From Multi Theft Auto: Wiki
Revision as of 10:44, 27 January 2008 by Mekorea (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This function restores the visual DFF model of the given model ID. This restores the result of engineReplaceModel.

Syntax

bool engineRestoreModel ( number modelID )

Required Arguments

  • modelID: The model ID to restore the visuals of

Returns

Returns true if the model was successfully restored, false or nil if it failed for some reason.

Example

This example does...

Click to collapse [-]
Client

Client-Side example for restoring model / vehicle.

function ResetModel ( )
engineRestoreModel ( 587 )  -- Object / Vehicle to restore to default GTA one.
end

addEvent ( "restoreClientModel", true )
addEventHandler ( "restoreClientModel", getRootElement(), ResetModel )


Click to collapse [-]
Server

Server-Side example for triggering model / vehicle restore function with "restore" command.

function RestoreModel ( )
triggerClientEvent ( "restoreClientModel", getRootElement(), restoreClientModel )
end

addCommandHandler( "restore", RestoreModel )

See Also