GetAccountSerial: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 21: Line 21:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addCommandHandler("getaccserial",  
addCommandHandler("getaccserial",  
function (player, cmd, accountName)
  function (player, cmd, accountName)
local account = getAccount(accountName)
      if accountName then
if (account) then
local account = getAccount(accountName)
outputChatBox("Serial: " .. getAccountSerial(account))
if (account) then
else
    outputChatBox("Serial: " .. getAccountSerial(account))
outputChatBox("Account not found")
else
end
    outputChatBox("Account not found")
end)
end
    end
end
)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Account_functions}}
{{Account_functions}}

Revision as of 23:19, 2 September 2016

This function returns the last serial that logged onto the specified account.


Syntax

string getAccountSerial ( account theAccount )

OOP Syntax Help! I don't understand this!

Method: account:getSerial(...)
Variable: .serial


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, accountName)
      if accountName then 
	 local account = getAccount(accountName)
	 if (account) then
	     outputChatBox("Serial: " .. getAccountSerial(account))
	 else
	     outputChatBox("Account not found")
	 end
     end
 end
)

See Also