Skip to content

getAccountType

Server-side

Added in 1.6.0 r22470

This function returns an account type.

OOP Syntax Help! I don't understand this!

Syntax

string getAccountType ( ​account theAccount )
Required arguments
  • theAccount: An account you want to get info from.

Returns

Returns string containing the type (player, guest or console) of the account if the account is valid, unknown or error otherwise.

  • string: account type

Code Examples

server

This example adds command accountInfo that outputs provided account info.

addCommandHandler("accountInfo", function(player, cmd, accountName)
if (not accountName) then
outputChatBox("You have to provide an account's name to get info from!", player)
return
end
local acc = getAccount(accountName)
if (not acc) then
outputChatBox("That account doesn't exist!", player)
return
end
local accName = getAccountName(acc)
local accType = getAccountType(acc)
outputChatBox('Account name: '..accName..', type: '..accType, player)
end)