GetResourceExportedFunctions: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Server function}} Returns a table containing the names of the functions that a resource exports. ==Syntax== <syntaxhighlight lang="lua"> table getResourceExportedFunctions ( resource res ) </c...)
 
mNo edit summary
Line 25: Line 25:
     end
     end
else
else
     outputConsole ( "Unable to find the scoreboard resource. ")
     outputConsole ( "Unable to find the scoreboard resource." )
end
end
</syntaxhighlight>
</syntaxhighlight>

Revision as of 12:58, 28 March 2008

Returns a table containing the names of the functions that a resource exports.

Syntax

table getResourceExportedFunctions ( resource res )

Required Arguments

  • res: the resource of which you want to know the exported functions.

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