PL/getAccountsBySerial: Difference between revisions
Jump to navigation
Jump to search
Jurandovsky (talk | contribs) m (Jurandovsky moved page PL/getAccountsBySerials to PL/getAccountsBySerial) |
m (Добавление языков) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
{{Server function}} | {{Server function}} | ||
{{New items|3.014|1.4| | {{New items|3.014|1.4| | ||
Funkcja ta zwraca tabelę [[table]] zawierającą wszystkie konta [[ | Funkcja ta zwraca tabelę [[table]] zawierającą wszystkie konta [[account]] które zalogowały się na dany [[serial]]. Jeżeli serial jest pustym stringiem, zwrócone zostaną wszystkie konta na które nie logowano się nigdy. | ||
}} | }} | ||
Line 32: | Line 32: | ||
[[en:getAccountsBySerial]] | [[en:getAccountsBySerial]] | ||
[[ru:getAccountsBySerial]] | |||
[[pl:getAccountsBySerial]] | |||
[[zh-cn:getAccountsBySerial]] |
Latest revision as of 13:24, 12 April 2021
Funkcja ta zwraca tabelę table zawierającą wszystkie konta account które zalogowały się na dany serial. Jeżeli serial jest pustym stringiem, zwrócone zostaną wszystkie konta na które nie logowano się nigdy.
Składnia
table getAccountsBySerial ( string serial )
OOP Syntax Help! I don't understand this!
- Note: This function is a static function underneath the Account class.
- Method: Account.getAllBySerial(...)
Wymagane argumenty
- serial: serial z którego chcemy pobrać konta
Zwracana wartość
Funkcja ta zwraca tabelę table zawierającą konta powiązane z tym serialem. Fałsz jeżeli podaliśmy zły serial w argumencie.
Przykład
Przykład ten dodaje komendę getAccounts która wyświetla ilość kont powiązaną z naszym serialem.
addCommandHandler("getAccounts", function (player, cmd) local serial = getPlayerSerial(player) local accounts = getAccountsBySerial(serial) outputChatBox("You have " .. #accounts .. " accounts.", player) end)
Zobacz również
- addAccount
- copyAccountData
- getAccount
- getAccountData
- getAccountName
- getAccountPlayer
- getAccountSerial
- getAccounts
- getAccountsBySerial
- getAllAccountData
- getPlayerAccount
- isGuestAccount
- logIn
- logOut
- removeAccount
- setAccountData
- setAccountPassword
- getAccountByID
- getAccountID
- getAccountIP
- getAccountsByData
- getAccountsByIP
- setAccountName