Difference between revisions of "notMonsters"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with '; notMonsters [<monster names>] : If this option is set in an attackSkillSlot or attackComboSlot block, the block will not be used if you are…')
 
m
Line 22: Line 22:
  
 
* Use White Potion if no Imp and Kasa is attacking you and your hp is bellow 50%.
 
* Use White Potion if no Imp and Kasa is attacking you and your hp is bellow 50%.
 +
 +
[[Category:Self Condition]]

Revision as of 02:02, 9 January 2010

notMonsters [<monster names>]
If this option is set in an attackSkillSlot or attackComboSlot block, the block will not be used if you are attacking any one of the specified comma-separated list of monsters.
If this option is set on other blocks, the block will not be used if any one of the specified comma-separated list of monsters is attacking you.


Example:
attackSkillSlot Fire Bolt {
	notMonsters Imp, Kasa
	sp > 15
}
  • Use Fire Bolt when sp is bigger than 15 and we are not attacking Imp and Kasa.

Note. mon_control must be set to not attack Imp and Kasa.


Example:
useSelf_item White Potion {
	notMonsters Imp, Kasa
 	hp < 50%
}
  • Use White Potion if no Imp and Kasa is attacking you and your hp is bellow 50%.