GetAccountsByData: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
==Example== | ==Example== | ||
Useless example to show how it works. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
addCommandHandler("accountsbydata", function (player) | addCommandHandler("accountsbydata", function (player) | ||
local account = getPlayerAccount(player) | local account = getPlayerAccount(player) |
Revision as of 22:17, 1 July 2018
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
- addAccount
- copyAccountData
- getAccount
- getAccountData
- getAccountName
- getAccountPlayer
- getAccountSerial
- getAccounts
- getAccountsBySerial
- getAllAccountData
- getPlayerAccount
- isGuestAccount
- logIn
- logOut
- removeAccount
- setAccountData
- setAccountPassword
- getAccountByID
- getAccountID
- getAccountIP
- getAccountsByData
- getAccountsByIP
- setAccountName