ap: Difference between revisions
Jump to navigation
Jump to search
(Created page with "; ap <range>[%] : If this option is set, the block will only be used if the amount of AP (Activity Points) is within the specified range. The amount of AP can be in % (percent) or it can the the absolute amount of AP. == Examples == Use "Increasing Activity" skill when AP is greater than or equal 50: useSelf_skill Increasing Activity { ap >= 50 timeout 60 } Appeared in [https://github.com/OpenKore/openkore/pull/3902 PR#3902] Ca...") |
No edit summary |
||
Line 1: | Line 1: | ||
; ap <[[References#Range_Operators|range]]>[%] | ; ap <[[References#Range_Operators|range]]>[%] | ||
: If this option is set, the block will only be used if the amount of AP (Activity Points) is within the specified range. The amount of AP can be in % (percent) or it can the the absolute amount of AP. | : If this option is set, the block will only be used if the amount of AP (Activity Points) is within the specified range. The amount of AP can be in % (percent) or it can the the absolute amount of AP. | ||
: [[File:ActivityPoints.png]] | |||
== Examples == | == Examples == |
Latest revision as of 19:28, 15 December 2024
- ap <range>[%]
- If this option is set, the block will only be used if the amount of AP (Activity Points) is within the specified range. The amount of AP can be in % (percent) or it can the the absolute amount of AP.
Examples
Use "Increasing Activity" skill when AP is greater than or equal 50:
useSelf_skill Increasing Activity { ap >= 50 timeout 60 }
Appeared in PR#3902