Condition_Skill
Description
Checks if an entity's skill level satisfies the specified comparison condition.
Parameters
| Parameter | Description |
|---|---|
| BaseObject | The entity whose skill level is checked (Self or Target). |
| CompareType | The comparison operation to apply (Equal, NotEqual, Greater, Less, GreaterEqual, |
| LessEqual, Between). | |
| S1 | The skill ID to check (e.g., Charisma, Cooking). |
| F1 | The primary value to compare against the skill level. |
| F2 | The upper bound for range comparison (used with Between). |
Examples
| Description | BaseObject | Command | CompareType |
|---|---|---|---|
| Check if Self's Charisma skill level is at least 5 | Self | Skill | GreaterEqual |
| Check if Self's Cooking skill level equals 3 | Self | Skill | Equal |
| Check if Self's Cooking skill level is between 3 and 7 | Self | Skill | Between |
| Check if Target's Logic skill level is less than 10 | Target | Skill | Less |