1
0
forked from tommy/tommy-bot

add username history to user embed

This commit is contained in:
2023-08-07 11:49:08 -04:00
parent 5b7f48333e
commit 88f81208cc
2 changed files with 16 additions and 0 deletions

View File

@ -99,6 +99,13 @@ commands:Add('user',{},'user <username|mention|"me">', function(t)
local name = user_info.name
local displayName = user_info.displayName
local usernameHistory = API:GetUserUsernameHistory(id).data
local usernameHistoryTable = {}
for index,usernameObj in next,usernameHistory do
table.insert(usernameHistoryTable,usernameObj.name)
end
local usernameHistoryString = table.concat(usernameHistoryTable,', ')
local onlineStatus_info = API:GetUserOnlineStatus(id)
table.foreach(onlineStatus_info,print)
@ -146,6 +153,7 @@ commands:Add('user',{},'user <username|mention|"me">', function(t)
{name='Last Location',value=LastLocation,inline=true},
{name='Banned',value=isBanned,inline=true},
{name='Description',value=description,inline=false},
{name='Username History',value=usernameHistoryString,inline=false},
}
}
if firstBadge and firstBadgeDate~=math.huge then