GetAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 18: Line 18:


==Example==
==Example==
[[Category:Needs Example]]
<syntaxhighlight lang="lua">
function retAccount ( username, password ) --both arguements are strings
    if getAccount( username, password ) then
        return getAccount( username, password )
    end
        return false
end
</syntaxhighlight>


==See Also==
==See Also==

Revision as of 23:25, 14 October 2008

This function returns an account for a specific user.

Syntax

account getAccount ( string username, [ string password ] )

Required Arguments

  • username: The username of the account you want to retrieve

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • password: The password for the account. If this argument is not specified, you can get the account whatever password it is, otherwise the password must match the account's.

Returns

An account value or false if an account matching the username specified (and password, if specified) could not be found.

Example

function retAccount ( username, password ) --both arguements are strings
    if getAccount( username, password ) then
        return getAccount( username, password )
    end
        return false
end

See Also