ap

From OpenKore Wiki
Revision as of 19:18, 15 December 2024 by 4epT (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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