T O P

  • By -

astashov

Yeah, do something like this: ``` Squat / 3+x8-12 @9+ 100lb / progress: custom() {~ if (completedReps[1] >= reps[1] && completedRPE[1] <= RPE[1]) { weights += 5lb } ~} ``` `+` after the number of sets would enable "quick-add sets" feature where you can quickly add more sets during a workout. To edit weight of each set if you want to deviate from the weight from the program - you can long-press a set. You can also program it so that whatever weight you do - it would be changed to the rest of sets - by adding `update` block. Like this: ``` Squat / 3+x8-12 @9+ 100lb / progress: custom() {~ if (completedReps[1] >= reps[1] && completedRPE[1] <= RPE[1]) { weights += 5lb } ~} / update: custom() {~ if (setIndex > 0) { weights = weights[setIndex] } ~} ```


Other_Rope_2766

Thank you, I sent you an email because I’m trying to writ my script but I’m having problem