You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a Liftoscript variable that returns the maximum available weight for specified equipment, enabling automatic progression logic when weight limits are reached. For instance, if the heaviest dumbbells available are 60 lbs, this variable would return a value of 60.
Use Case:
In environments with limited equipment (home gyms, hotels, budget facilities), users can reach the heaviest available weight before completing their planned progression. Currently, there's no programmatic way to detect this ceiling and automatically switch to alternative progression methods.
Proposed Implementation:
A Liftoscript variable (e.g., maxWeight or equipmentLimit) that returns the heaviest weight available for the current exercise's equipment type.
Example Usage:
if(weight>=maxWeight){// Switch to rep progression instead of weight progressionreps=reps+1;}else{weight=weight+2.5;}
Benefits:
Seamless transition between weight and rep progression
Eliminates manual program modifications when equipment limits are reached
Particularly valuable for dumbbell exercises where weight increments are typically larger and limits more commonly encountered
Maintains training continuity across different gym environments
This would significantly enhance Liftosaur's adaptability for users training in equipment-constrained environments while maintaining the automated progression that makes the platform valuable.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Feature Request:
Add a Liftoscript variable that returns the maximum available weight for specified equipment, enabling automatic progression logic when weight limits are reached. For instance, if the heaviest dumbbells available are 60 lbs, this variable would return a value of 60.
Use Case:
In environments with limited equipment (home gyms, hotels, budget facilities), users can reach the heaviest available weight before completing their planned progression. Currently, there's no programmatic way to detect this ceiling and automatically switch to alternative progression methods.
Proposed Implementation:
A Liftoscript variable (e.g.,
maxWeight
orequipmentLimit
) that returns the heaviest weight available for the current exercise's equipment type.Example Usage:
Benefits:
This would significantly enhance Liftosaur's adaptability for users training in equipment-constrained environments while maintaining the automated progression that makes the platform valuable.
Beta Was this translation helpful? Give feedback.
All reactions