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

nametag {get;set}

API -

return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    
    log('user is currently using nametag: ' .. user.nametag);
    
    user.nametag= 'subOnly_tag';
end

Last updated