GetResourceExportedFunctions: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Add missing OOP info)
 
Line 7: Line 7:
table getResourceExportedFunctions ( [ resource theResource = getThisResource( ) ] )
table getResourceExportedFunctions ( [ resource theResource = getThisResource( ) ] )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[resource]]:getExportedFunctions|exportedFunctions}}


===Optional Arguments===
===Optional Arguments===

Latest revision as of 13:45, 10 August 2021

Returns a table containing the names of the functions that a resource exports. It will return the exports of the current resource if there is no argument passed in.

Syntax

table getResourceExportedFunctions ( [ resource theResource = getThisResource( ) ] )

OOP Syntax Help! I don't understand this!

Method: resource:getExportedFunctions(...)
Variable: .exportedFunctions


Optional Arguments

Returns

Returns a table of function names if successful, false otherwise.

Example

This simple example will output the names of the functions that the "scoreboard" resource exports.

local res = getResourceFromName ( "scoreboard" )
if res then
    local functionNames = getResourceExportedFunctions ( res )
    outputConsole ( "The scoreboard resource exports " .. #functionNames .. " functions:" )
    for i, name in ipairs ( functionNames ) do
        outputConsole ( name )
    end
else
    outputConsole ( "Unable to find the scoreboard resource." )
end

See Also