EngineImageGetFilesCount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function returns the number of files an IMG file has. ==Syntax== <syntaxhighlight lang="lua"> int engineImageGetFilesCount ( img imgArchive ) </syntaxhighlight> {{OOP||img:getFilesCount||}} ===Required Arguments=== *'''imgArchive:''' the IMG archive handler ===Returns=== Returns an ''int'' with the number of files. ==Example== You could use the following code: <syntaxhighlight lang="lua"> local img = engineLoadIMG( "file.im...")
 
Line 26: Line 26:
==See Also==
==See Also==
{{Engine_functions}}
{{Engine_functions}}
[[Category:Changes in 1.6.0]]

Revision as of 15:32, 10 April 2023

This function returns the number of files an IMG file has.

Syntax

int engineImageGetFilesCount ( img imgArchive )

OOP Syntax Help! I don't understand this!

Method: img:getFilesCount(...)


Required Arguments

  • imgArchive: the IMG archive handler

Returns

Returns an int with the number of files.

Example

You could use the following code:

local img = engineLoadIMG( "file.img" )
local count = engineImageGetFilesCount( img )
outputChatBox("'file.img' has " .. count .. " files")

See Also