CopyAccountData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (→‎Syntax: OOP)
mNo edit summary
Line 9: Line 9:
{{OOP|This function is also a static function underneath the Account class. This method transfers the data from sourceAccount to targetAccount.|[[account]]:copyDataTo||}}
{{OOP|This function is also a static function underneath the Account class. This method transfers the data from sourceAccount to targetAccount.|[[account]]:copyDataTo||}}
{{OOP|This is vice-versa; transfers data from targetAccount to sourceAccount.|[[account]]:copyDataFrom||}}
{{OOP|This is vice-versa; transfers data from targetAccount to sourceAccount.|[[account]]:copyDataFrom||}}


===Required Arguments===  
===Required Arguments===  

Revision as of 13:18, 11 September 2014

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!

Note: This function is also a static function underneath the Account class. This method transfers the data from sourceAccount to targetAccount.
Method: account:copyDataTo(...)


OOP Syntax Help! I don't understand this!

Note: This is vice-versa; transfers data from targetAccount to sourceAccount.
Method: account:copyDataFrom(...)


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

See Also