ZH-CN/GetAccountByID

From Multi Theft Auto: Wiki
Revision as of 11:17, 11 April 2021 by Myonlake (talk | contribs)
Jump to navigation Jump to search

此函数返回具有特定ID的帐户.

语法

account getAccountByID ( int id )

必填参数

  • id: 要获取的账号的ID

返回值

返回与指定ID关联的“账户”(Account)。如果指定的参数无效或没有具有此ID的帐户,则返回“false”.

示例

此示例添加命令“getAccount”,该命令输出此ID代表账户的用户名.

addCommandHandler("getAccount", 
	function (player, cmd, id)
                id = tonumber(id)
		local account = getAccountByID(id)
                if account then
		   outputChatBox("The name of the account with that ID is: "..getAccountName(account), player)
                else 
                   outputChatBox("There is no account with this ID.", player)
                end
	end)

See Also