AR/copyAccountData: Difference between revisions
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...") |
m (Добавление языков) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server function}} | ||
هذه الوظيفة تنسخ جميع البيانات من حساب إلى آخر. | |||
==Syntax== | ==Syntax== | ||
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== | |||
*'''theAccount:''' | ===العناصر المطلوبة=== | ||
*'''fromAccount:''' | *'''theAccount:''' الحساب اللذي تريد نقل البيانات إليه | ||
*'''fromAccount:''' الحساب اللذي تريد نسخ البيانات منه | |||
===Returns=== | ===Returns=== | ||
Line 16: | Line 18: | ||
==Example== | ==Example== | ||
إلى الحساب الذي تم تسجيل الدخول إليه 'guest' هذا المثال عند تسجيل الدخول يقوم بنسخ بيانات حساب | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function copyDataOnLogin ( previousAccount, currentAccount | function copyDataOnLogin(previousAccount, currentAccount) | ||
copyAccountData(currentAccount, previousAccount) | |||
end | end | ||
addEventHandler ( "onPlayerLogin", getRootElement(), copyDataOnLogin ) | addEventHandler("onPlayerLogin", getRootElement(), copyDataOnLogin)</syntaxhighlight> | ||
</syntaxhighlight> | |||
== | ==انظر ايضاً== | ||
{{AR/Account_functions}} | {{AR/Account_functions}} | ||
[[en:copyAccountData]] | [[en:copyAccountData]] | ||
[[ru:copyAccountData]] | [[ru:copyAccountData]] | ||
[[ar:copyAccountData]] | |||
[[pl:copyAccountData]] | |||
[[zh-cn:copyAccountData]] |
Latest revision as of 19:42, 11 April 2021
هذه الوظيفة تنسخ جميع البيانات من حساب إلى آخر.
Syntax
bool copyAccountData ( account theAccount, account fromAccount )
العناصر المطلوبة
- theAccount: الحساب اللذي تريد نقل البيانات إليه
- fromAccount: الحساب اللذي تريد نسخ البيانات منه
Returns
Returns a true if the accounts were valid, false otherwise.
Example
إلى الحساب الذي تم تسجيل الدخول إليه 'guest' هذا المثال عند تسجيل الدخول يقوم بنسخ بيانات حساب
function copyDataOnLogin(previousAccount, currentAccount) copyAccountData(currentAccount, previousAccount) end addEventHandler("onPlayerLogin", getRootElement(), copyDataOnLogin)