engineImageGetFiles | Multi Theft Auto: Wiki Skip to content

engineImageGetFiles

Client-side
Server-side
Shared

Added in 1.6.0 r21695

This function gets the list of files from an IMG container.

OOP Syntax Help! I don't understand this!

  • Method:img:getFiles(...)
  • Variable: .files

Syntax

table engineImageGetFiles ( ​img imgArchive )
Required Arguments
  • imgArchive: The IMG file handler you want to get files from.

Returns

  • table: files array

Returns array table with files in the IMG element if successfull; otherwise, it throws an error.

Code Examples

client
local img = engineLoadIMG("file.img")
local filesInArchive = engineImageGetFiles(img)
outputChatBox("'file.img' contains files:")
for fileId = 1, #filesInArchive do
outputChatBox(fileId .. ": " .. filesInArchive[fileId])
end

See Also

Engine Functions