AR/copyAccountData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 16: Line 16:


==Example==
==Example==
This example copies the account data from the 'guest' to a registered account when they login
إلى الحساب الذي تم تسجيل الدخول إليه 'guest' هذا المثال عند تسجيل الدخول يقوم بنسخ بيانات حساب
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function copyDataOnLogin ( previousAccount, currentAccount, autoLogin)
function copyDataOnLogin(previousAccount, currentAccount)
   copyAccountData ( currentAccount, previousAccount )
   copyAccountData(currentAccount, previousAccount)
end
end
addEventHandler ( "onPlayerLogin", getRootElement(), copyDataOnLogin )
addEventHandler("onPlayerLogin", getRootElement(), copyDataOnLogin)</syntaxhighlight>
 
</syntaxhighlight>


==See Also==
==See Also==

Revision as of 05:00, 25 August 2012

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

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)

See Also