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

getState

API -

return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    
    log(user.getState());
end

Last updated