Difference between revisions of "useSelf skill"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with '; useSelf_skill [<skill name>] : Automatically use skills on self when certain conditions are met. This block specifies the skill to automatically use …')
 
Line 1: Line 1:
; useSelf_skill [<[[References#Skill Names|skill name]]>]
+
Automatically use skills on self when certain conditions are met. This block specifies the skill to automatically use on self.
: Automatically use skills on self when certain conditions are met. This block specifies the skill to automatically use on self.
 
  
'''Syntax:'''
+
== Syntax ==
 
  useSelf_skill [<skill name>] {
 
  useSelf_skill [<skill name>] {
 
  smartEncore [<boolean flag>]
 
  smartEncore [<boolean flag>]
Line 10: Line 9:
 
  }
 
  }
  
''' Attribute definitions'''
+
=== Attribute definitions ===
 +
----
 +
 
 +
 
 +
; useSelf_skill [<[[References#Skill Names|skill name]]>]
 +
: This block specifies the skill to automatically use on self.
 +
 
  
:; smartEncore [<boolean flag>]
+
; smartEncore [<boolean flag>]
:: If this option is set, Kore will use the Encore skill instead of the specified skill if Encore would cause this skill to be cast (saves SP for bards and dancers).  
+
: If this option is set, Kore will use the Encore skill instead of the specified skill if Encore would cause this skill to be cast (saves SP for bards and dancers).  
  
  
''' Example '''
+
== Example ==
  
 
* Use Crazy Uproar when the skill status if off and SP is higher than 8.
 
* Use Crazy Uproar when the skill status if off and SP is higher than 8.
Line 24: Line 29:
 
  whenStatusInactive Crazy Uproar
 
  whenStatusInactive Crazy Uproar
 
  }
 
  }
 +
  
 
[[Category:config.txt]]
 
[[Category:config.txt]]
 
[[Category:Skills]]
 
[[Category:Skills]]

Revision as of 01:01, 13 December 2009

Automatically use skills on self when certain conditions are met. This block specifies the skill to automatically use on self.

Syntax

useSelf_skill [<skill name>] {
	smartEncore [<boolean flag>]

	# Skill Use Conditions
	# Self Conditions
}

Attribute definitions



useSelf_skill [<skill name>]
This block specifies the skill to automatically use on self.


smartEncore [<boolean flag>]
If this option is set, Kore will use the Encore skill instead of the specified skill if Encore would cause this skill to be cast (saves SP for bards and dancers).


Example

  • Use Crazy Uproar when the skill status if off and SP is higher than 8.
useSelf_skill Crazy Uproar {
	lvl 1
	sp > 8
	whenStatusInactive Crazy Uproar
}