engineRemoveImage | Multi Theft Auto: Wiki Skip to content

engineRemoveImage

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

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


This function disables streaming from an IMG container.

Syntax

engineRemoveImage ( )

Code Examples

client

This example loads IMG file, adds it to GTA and after 10 seconds removes it.

local img = engineLoadIMG('file.img') -- load IMG file to mta
engineAddImage(img) -- add it to GTA world
setTimer(engineRemoveImage, 600*1000, 1, img)

See Also

Engine Functions
Engine Elements