EngineImageGetFiles: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Add link to IMG information)
mNo edit summary
 
Line 9: Line 9:
</syntaxhighlight>
</syntaxhighlight>


{{OOP||[https://gtamods.com/wiki/IMG_archive#Version_2_-_GTA_SA img]:getFiles|files}}
{{OOP||img:getFiles|files}}
===Required Arguments===
===Required Arguments===
* '''imgArchive''': The [https://gtamods.com/wiki/IMG_archive#Version_2_-_GTA_SA IMG] file handler you want to get files from.
* '''imgArchive''': The [https://gtamods.com/wiki/IMG_archive#Version_2_-_GTA_SA IMG] file handler you want to get files from.

Latest revision as of 15:40, 15 September 2025

ADDED/UPDATED IN VERSION 1.6.0 r21695:
This function gets the list of files from an IMG container.

Syntax

table engineImageGetFiles ( img imgArchive )


OOP Syntax Help! I don't understand this!

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


Required Arguments

  • imgArchive: The IMG file handler you want to get files from.

Returns

Returns array table with files in the IMG element if successfull, false otherwise.

Example

You could use the following code:

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