Account: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
The [[account]] class represents a client's account and should be used to call any scripting functions that involve accounts. You can get an account object from any client using [[getClientAccount]].
The [[account]] class represents a [[client]]'s server account. You can get the account object associated to any client using [[getClientAccount]].


Accounts are unique to each client and can be used to store information that is persistent across maps and user's sessions. Clients that join without an account are given a 'guest' account. This can store information like any other account, but isn't saved across sessions. When a user logs in, the account object assigned to them will change. As such, you MUST not assume that the account attached to a client remains constant during their session.
Accounts are unique to each client and can be used to store information that is persistent across map changes and user sessions. Clients that join without an account are given a temporary 'guest' account. This can store information like any other account, but isn't saved across sessions.
 
When a user logs in or out, the account object assigned to them will change. As such, you must not assume that the account attached to a client remains constant during their session.
 
==Related scripting functions==
{{Account functions}}

Revision as of 14:40, 28 August 2007

The account class represents a client's server account. You can get the account object associated to any client using getClientAccount.

Accounts are unique to each client and can be used to store information that is persistent across map changes and user sessions. Clients that join without an account are given a temporary 'guest' account. This can store information like any other account, but isn't saved across sessions.

When a user logs in or out, the account object assigned to them will change. As such, you must not assume that the account attached to a client remains constant during their session.

Related scripting functions