Difference between revisions of "equip"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with '; equip_(<equip slot>) [<equipment name>] : If this option is set for a specific equipment slot, Kore will automatic…')
 
m (Conversion script moved page Equip to equip: Converting page titles to lowercase)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
; equip_(<[[References#Equipment Slots|equip slot]]>) [<[[References#Equipment Names|equipment name]]>]
+
; equip_<[[References#Equipment_Slots|equipment_slot]]> <[[References#Equipment_Names|equipment_name]]>
 
: If this option is set for a specific equipment slot, Kore will automatically equip the specified equipment on the corresponding equipment slot when attempting to use the skill.
 
: If this option is set for a specific equipment slot, Kore will automatically equip the specified equipment on the corresponding equipment slot when attempting to use the skill.
  
'''Example:'''
+
== Examples ==
* If you want to automatically equip a Healing Clip when you attempt to use Heal.
+
If you want to automatically equip a Healing Clip when you attempt to use Heal:
 
  useSelf_skill Heal {
 
  useSelf_skill Heal {
 
         lvl 10
 
         lvl 10
Line 10: Line 10:
 
         equip_rightAccessory Clip [Vitata] [1]
 
         equip_rightAccessory Clip [Vitata] [1]
 
  }
 
  }
 +
 +
[[Category:Skill Use Condition]]

Latest revision as of 22:34, 26 April 2021

equip_<equipment_slot> <equipment_name>
If this option is set for a specific equipment slot, Kore will automatically equip the specified equipment on the corresponding equipment slot when attempting to use the skill.

Examples

If you want to automatically equip a Healing Clip when you attempt to use Heal:

useSelf_skill Heal {
        lvl 10
        sp > 5%
        notWhileSitting 1
        equip_rightAccessory Clip [Vitata] [1]
}