For the complete documentation index, see llms.txt. This page is also available as Markdown.

name {get}

API -

return function()
    local avatar = getAvatar('block_man');
    if avatar == nil then
        log('the avatar was not found');
        return;
    end
    
    log(avatar.name);
end

Last updated