getAccountType | Multi Theft Auto: Wiki Skip to content

getAccountType

Client-side
Server-side
Shared

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

  • string: account type

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

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)