GetAccountsByData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Обновление информации)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
This function returns a [[table]] containing all accounts with specified dataName and value (setted with setAccountData)
{{New feature/item|3.156|1.5.5|11747|
This function returns a [[table]] containing all accounts with specified dataName and value (set with setAccountData).
}}


==Syntax==  
==Syntax==  
Line 16: Line 18:


==Example==  
==Example==  
Useless example to show how it works.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Useless example to show how it works.
addCommandHandler("accountsbydata", function (player)
addCommandHandler("accountsbydata", function (player)
   local account = getPlayerAccount(player)
   local account = getPlayerAccount(player)
Line 28: Line 30:
==See Also==
==See Also==
{{Account_functions}}
{{Account_functions}}
[[en:GetAccountsByData]]
[[ru:getAccountsByData]]
[[zh-cn:GetAccountsByData]]

Latest revision as of 17:10, 12 April 2021

ADDED/UPDATED IN VERSION 1.5.5 r11747:

This function returns a table containing all accounts with specified dataName and value (set with setAccountData).

Syntax

table getAccountsByData ( string dataName, string value )

OOP Syntax Help! I don't understand this!

Note: This function is a static function underneath the Account class.
Method: Account.getAllByData(...)


Required Arguments

  • dataName: The name of the data
  • value: The value the dataName should have

Returns

Returns table containing the accounts associated with specified value at dataName. Returns false if invalid arguments were specified.

Example

Useless example to show how it works.

addCommandHandler("accountsbydata", function (player)
   local account = getPlayerAccount(player)
   setAccountData(account, "test", "hello")
   local accounts = getAccountsByData("test", "hello")
   outputChatBox(getAccountName(accounts[1]), player)                
end)

See Also