CopyAccountData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Добавление языков)
Line 28: Line 28:
==See Also==
==See Also==
{{Account_functions}}
{{Account_functions}}
[[en:copyAccountData]]
[[ru:copyAccountData]]
[[ru:copyAccountData]]
[[ar:copyAccountData]]
[[ar:copyAccountData]]
[[pl:copyAccountData]]
[[pl:copyAccountData]]
[[zh-cn:copyAccountData]]
[[zh-cn:copyAccountData]]

Revision as of 19:42, 11 April 2021

This function copies all of the data from one account to another.

Syntax

bool copyAccountData ( account theAccount, account fromAccount )

OOP Syntax Help! I don't understand this!

Method: account:copyDataTo(...)


Required Arguments

  • theAccount: The account you wish to copy the data to.
  • fromAccount: The account you wish to copy the data from.

Returns

Returns a true if the accounts were valid, false otherwise.

Example

This example copies the account data from the 'guest' to a registered account when they login

function copyDataOnLogin ( previousAccount, currentAccount )
  copyAccountData ( currentAccount, previousAccount )
end
addEventHandler ( "onPlayerLogin", getRootElement(), copyDataOnLogin )

See Also