GetAccountSerial: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Server function}} This function returns the last serial that logged onto the specified account. ==Syntax== <syntaxhighlight lang="lua"> string getAccountSerial ( account ...") |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server function}} | ||
{{New items|4.0132|1.4| | |||
This function returns the last [[serial]] that logged onto the specified [[account]]. | This function returns the last [[serial]] that logged onto the specified [[account]]. | ||
}} | |||
==Syntax== | ==Syntax== |
Revision as of 11:03, 17 April 2014
Syntax
string getAccountSerial ( account theAccount )
Required Arguments
- theAccount: The account to get serial from
Returns
Returns string containing the serial, the string is empty if the account was never used. Returns false if invalid arguments were specified.
Example
This example adds command getaccserial that outputs the given account's serial in the chat box.
addCommandHandler("getaccserial", function (player, cmd, account) account = getAccount(account) if (account) then outputChatBox("Serial: " .. getAccountSerial(account)) else outputChatBox("Account not found") end 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