AclGroupList: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
<!-- Describe in plain english what this function does. Don't go into details, just give an overview -->
<!-- Describe in plain english what this function does. Don't go into details, just give an overview -->
This fake function is for use with blah & blah and does blahblahblabhalbhl
This function returns a table of all the ACL groups.


==Syntax==  
==Syntax==  
Line 8: Line 8:
table of aclgroup aclGroupList ()
table of aclgroup aclGroupList ()
</syntaxhighlight>  
</syntaxhighlight>  
===Required Arguments===
<!-- List each argument one per line. This should be the argument's name as in the argument list above, NOT the argument's data type -->
*'''argumentName:''' description
<!-- Only include this section below if there are optional arguments -->
===Optional Arguments===
{{OptionalArg}}
*'''argumentName2:''' description
*'''argumentName3:''' description


===Returns===
===Returns===
<!-- Make this descriptive. Explain what cases will return false. If you're unsure, add a tag to it so we can check -->
<!-- Make this descriptive. Explain what cases will return false. If you're unsure, add a tag to it so we can check -->
Returns ''true'' if blah, ''false'' otherwise.
Returns a table over all ACL groups if successfull, returns an empty table if no ACL groups exist. ''false''/''nil'' can be returned if this function fails for some other reason.


==Example==  
==Example==  
Line 28: Line 18:
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
--TODO
blabhalbalhb --abababa
--This line does this...
mooo
</syntaxhighlight>
</syntaxhighlight>



Revision as of 09:24, 26 November 2007

This function returns a table of all the ACL groups.

Syntax

table of aclgroup aclGroupList ()

Returns

Returns a table over all ACL groups if successfull, returns an empty table if no ACL groups exist. false/nil can be returned if this function fails for some other reason.

Example

This example does...

--TODO

See Also