Difference between revisions of "spirit"

From OpenKore Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
; spirit [<[[References#Range Operators|range]]>]
+
; spirit <[[range]]>
: If this option is set, the block will only be used if the number of summoned spirit spheres is within the specified range.
+
: Only use the block if the number of summoned spirit spheres matches the specified range.
  
Example:
+
== Examples ==
  useSelf_skill Vigor Condensation {
+
Use [http://irowiki.org/wiki/Summon_Spirit_Sphere Summon Spirit Sphere] when your spirit number is bellow 5 and your sp is higher than 100:
  spirit < 5
+
  [[useSelf_skill]] [[skill name|MO_CALLSPIRITS]] {
  sp > 100
+
  '''spirit''' < 5
 +
  [[sp]] > 100
 
  }
 
  }
 
* Use Vigor Condensation when your spirit number is bellow 5 and your sp is higher than 100.
 
  
 
[[Category:Self Condition]]
 
[[Category:Self Condition]]

Revision as of 11:45, 17 August 2012

spirit <range>
Only use the block if the number of summoned spirit spheres matches the specified range.

Examples

Use Summon Spirit Sphere when your spirit number is bellow 5 and your sp is higher than 100:

useSelf_skill MO_CALLSPIRITS {
	spirit < 5
	sp > 100
}