CopyAccountData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
{{OOP_ZH-CN||[[account]]:copyDataTo||}}
{{OOP_ZH-CN||[[account]]:copyDataTo||}}


===Required Arguments===  
===必填参数===  
*'''theAccount:''' The account you wish to copy the data ''to''.
*'''theAccount:''' 复制数据的账户
*'''fromAccount:''' The account you wish to copy the data ''from''.
*'''fromAccount:''' 黏贴数据的账户
===返回(Returns)===
如果帐户有效,则返回“true”,否则返回“false”.


===Returns===
==例子==
Returns a ''true'' if the accounts were valid, ''false'' otherwise.
此示例在“guest”登录时将帐户数据从其复制到已注册的帐户
 
==Example==
This example copies the account data from the 'guest' to a registered account when they login
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function copyDataOnLogin ( previousAccount, currentAccount )
function copyDataOnLogin ( previousAccount, currentAccount )

Revision as of 01:29, 4 February 2021

此函数用于将所有数据从一个帐户account复制到另一个帐户.

语法

bool copyAccountData ( account theAccount, account fromAccount )

OOP 语法 什么是OOP?

方法: account:copyDataTo(...)

必填参数

  • theAccount: 复制数据的账户
  • fromAccount: 黏贴数据的账户

返回(Returns)

如果帐户有效,则返回“true”,否则返回“false”.

例子

此示例在“guest”登录时将帐户数据从其复制到已注册的帐户

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

See Also