GetAllPackages: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetAllPackages()}} {{FuncParameters}} {{FuncNoParam}} {{FuncReturnValue|__EDIT_ME__}} == Example..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Server|1.0}} | {{Info|Function|Server|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Returns the name of packages in a table.}} | ||
{{FuncSyntax|GetAllPackages()}} | {{FuncSyntax|GetAllPackages()}} | ||
Line 8: | Line 8: | ||
{{FuncNoParam}} | {{FuncNoParam}} | ||
{{FuncReturnValue| | {{FuncReturnValue|This function returns a table with package names.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
local packages = GetAllPackages() | |||
print(packages[1]) -- prints your first package in server config | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{PackageFunctions}} |
Revision as of 08:08, 29 December 2019
Description
Returns the name of packages in a table.
Syntax
GetAllPackages()
Parameters
- This function has no parameters.
Return Value
- This function returns a table with package names.
Example
local packages = GetAllPackages()
print(packages[1]) -- prints your first package in server config