override_scale {get;set}

API -

return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    
    user.override_scale = 2; --sets the avatars scale to 2 disregarding any other modifiers!
    --this value will be reset upon restarting application.
    
    --to turn off the override scale, set it's value to -1
    --warning: other commands or games might use this value and return it to -1 upon finishing.
end

Last updated