AclCreate: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
<!-- 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 function creates an ACL entry in the Access Control List system with the specified name.
This function creates an ACL entry in the Access Control List system with the specified name.

Revision as of 10:03, 26 November 2007

This function creates an ACL entry in the Access Control List system with the specified name.

Syntax

acl aclCreate ( string aclName )

Required Arguments

  • aclName: The name of the ACL entry to add.

Returns

Returns the created ACL object if successful. Returns false if an ACL of the given name could not be created.

Example

This example does...

--TODO

See Also