Difference between revisions of "partyAggressives"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with '; partyAggressives [<range>] : If this option is set, the block will only be used if the number of monsters who has hit or missed you and your part…')
 
m (Conversion script moved page PartyAggressives to partyAggressives: Converting page titles to lowercase)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
; partyAggressives [<[[References#Range Operators|range]]>]
+
; partyAggressives <[[References#Range_Operators|range]]>
: If this option is set, the block will only be used if the number of monsters who has hit or missed you and your party members is within the specified range.
+
: Only use the block if the number of monsters who attempted to hit you and your party members matches the specified range.
  
Example:
+
== Examples ==
  useSelf_skill Kyrie Eleison {
+
Use [http://irowiki.org/wiki/Kyrie_Eleison Kyrie Eleison] on you when more than 5 monsters are attacking you or your party and you are not with Kyrie Eleison:
  partyAggressives > 5
+
  [[useSelf_skill]] [[References#Skill_Names|PR_KYRIE]] {
  whenStatusInactive Kyrie Eleison
+
  '''partyAggressives''' > 5
 +
  [[whenStatusInactive]] [[References#Status_Names|EFST_KYRIE]]
 
  }
 
  }
  
* Use Kyrie Eleison on you when more than 5 monsters are attacking you or your party and you are not with Kyrie Eleison.
+
[[Category:Self Condition]]

Latest revision as of 22:34, 26 April 2021

partyAggressives <range>
Only use the block if the number of monsters who attempted to hit you and your party members matches the specified range.

Examples

Use Kyrie Eleison on you when more than 5 monsters are attacking you or your party and you are not with Kyrie Eleison:

useSelf_skill PR_KYRIE {
	partyAggressives > 5
	whenStatusInactive EFST_KYRIE
}