AR/copyAccountData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} This function copies all of the data from one account to another. ==Syntax== <syntaxhighlight lang="lua"> bool copyAccountData ( account theAccount, account fro...")
 
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
This function copies all of the data from one account to another.
هذه الوظيفة تنسخ جميع البيانات من حساب إلى آخر.


==Syntax==  
==Syntax==  
Line 8: Line 8:
</syntaxhighlight>  
</syntaxhighlight>  


===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===
===Returns===

Revision as of 04:55, 25 August 2012

هذه الوظيفة تنسخ جميع البيانات من حساب إلى آخر.

Syntax

bool copyAccountData ( account theAccount, account fromAccount )

العناصر المطلوبة

  • theAccount: الحساب اللذي تريد نقل البيانات إليه
  • fromAccount: الحساب اللذي تريد نسخ البيانات منه

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, autoLogin)
  copyAccountData ( currentAccount, previousAccount )
end
addEventHandler ( "onPlayerLogin", getRootElement(), copyDataOnLogin )

See Also