Skip to main content

Condition_Muscle

Description

Compares the character's current muscle mass value against a given threshold or range.

Parameters

ParameterDescription
BaseObjectThe character to check (Self or Target).
CompareTypeSupported compare types: Equal, NotEqual, Less, Greater, LessOrEqual, GreaterOrEqual, InRange, OutRange.
F1Muscle value threshold to compare against (cast to integer).
F2Upper bound of the range for InRange or OutRange comparisons.

Examples

DescriptionBaseObjectCommandCompareTypeF1F2
Checks if self has a muscle value of exactly 3.SelfMuscleEqual30
Checks if self has a muscle value of 5 or more.SelfMuscleGreaterOrEqual50
Checks if target has a muscle value below 2.TargetMuscleLess20
Checks if self has a muscle value between 2 and 4.SelfMuscleInRange24