GetResources: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 24: Line 24:
     end
     end
end
end
addEventHandler("onClientResourceStart", resourceRoot, displayResources)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Resource_functions|server}}
{{Resource_functions|server}}

Revision as of 12:02, 25 March 2026

This function retrieves a table of all the resources that exist on the server.

Syntax

table getResources ()

OOP Syntax Help! I don't understand this!

Method: Resource.getAll(...)


Returns

Returns a table of resources.

Example

This function lists all loaded resources in the console.

function displayResources()
     outputConsole("List of resources:")
     local resourceTable = getResources() -- get a table of resources
     for resourceKey, resourceValue in ipairs(resourceTable) do
          -- iterate through the table and output each resource's name
          local name = getResourceName(resourceValue)
          outputConsole(" " .. name)
     end
end
addEventHandler("onClientResourceStart", resourceRoot, displayResources)

See Also