partySkill: Difference between revisions
Jump to navigation
Jump to search
Technology (talk | contribs) m (Reverted edits by Ifasite (Talk) to last revision by EternalHarvest) |
No edit summary |
||
(11 intermediate revisions by 6 users not shown) | |||
Line 2: | Line 2: | ||
== Syntax == | == Syntax == | ||
partySkill [ | partySkill <[[References#Skill_Names|skill name]]> { | ||
notPartyOnly [ | notPartyOnly <[[boolean]]> | ||
target [ | dist <[[References#Range_Operators|range]]> | ||
target {<[[player name]]s> | @homunculus | @mercenary} | |||
# Skill Use | # [[:Category:Skill Use Condition|Skill Use Condition]]s, including [[isSelfSkill]] | ||
# Self | # [[:Category:Self Condition|Self Condition]]s | ||
# Target Player | # [[:Category:Player Condition|Target Player Condition]]s | ||
} | } | ||
Line 15: | Line 15: | ||
---- | ---- | ||
; partySkill | ; partySkill <[[References#Skill_Names|skill name]]> | ||
: This option specifies the skill to automatically use on players as long as you are not currently using any other skill. | : This option specifies the skill to automatically use on players as long as you are not currently using any other skill. | ||
; notPartyOnly | ; dist <[[References#Range_Operators|range]]> | ||
: This option specifies the distance (in number of blocks) from the monster that Kore will move to before using this skill. | |||
::'''Notes:''' | |||
::* Default distance is set with [[partySkillDistance]]. | |||
; notPartyOnly <boolean flag> | |||
: By default, Kore will only use party skills on members of your party. If this option is set to '''1''', Kore will also be allowed to use this on non-party members. | : By default, Kore will only use party skills on members of your party. If this option is set to '''1''', Kore will also be allowed to use this on non-party members. | ||
; target | ; target {<[[player name]]s> | @homunculus | @mercenary} | ||
: If this option is set, Kore will only use the specified skill on the specified comma-separated list of players/party members. @homunculus and @mercenary used to refer to your active ones. If this option is left blank, Kore will use the skill on all players/party members. | : If this option is set, Kore will only use the specified skill on the specified comma-separated list of players/party members. @homunculus and @mercenary used to refer to your active ones. If this option is left blank, Kore will use the skill on all players/party members. | ||
== Notes == | |||
* [[isSelfSkill]] is useful for [http://irowiki.org/wiki/Magnificat Magnificat] or [http://irowiki.org/wiki/Gloria Gloria] and other non-target skills. | |||
== Examples == | == Examples == | ||
* Use Blessing level 10 on all your party members when your SP is higher than | * Use [http://irowiki.org/wiki/Blessing Blessing] level 10 on all your party members when your SP is higher than 64 and they aren't with ''Blessing'' status. | ||
partySkill | partySkill [[References#Skill_Names|AL_BLESSING]] { | ||
lvl 10 | lvl 10 | ||
sp > | sp > 64 | ||
target_whenStatusInactive | target_whenStatusInactive [[References#Status_Names|EFST_BLESSING]] | ||
} | } | ||
* Use Increase AGI level 10 on everybody near your when your SP is higher than | * Use [http://irowiki.org/wiki/Increase_AGI Increase AGI] level 10 on everybody near your when your SP is higher than 45 and they aren't with ''Increase AGI'' status. | ||
partySkill | partySkill [[References#Skill_Names|AL_INCAGI]] { | ||
lvl 10 | lvl 10 | ||
sp > | sp > 45 | ||
notPartyOnly 1 | notPartyOnly 1 | ||
target_whenStatusInactive | target_whenStatusInactive [[References#Status_Names|EFST_AGIUP]] | ||
} | } | ||
Line 56: | Line 60: | ||
[[Category:skills]] | [[Category:skills]] | ||
[[Category:config block]] | [[Category:config block]] | ||
[[Category: | [[Category:party]] |
Latest revision as of 19:26, 27 April 2021
Automatically use skills on players when specified conditions are met.
Syntax
partySkill <skill name> { notPartyOnly <boolean> dist <range> target {<player names> | @homunculus | @mercenary} # Skill Use Conditions, including isSelfSkill # Self Conditions # Target Player Conditions }
Attribute definitions
- partySkill <skill name>
- This option specifies the skill to automatically use on players as long as you are not currently using any other skill.
- dist <range>
- This option specifies the distance (in number of blocks) from the monster that Kore will move to before using this skill.
- Notes:
- Default distance is set with partySkillDistance.
- Notes:
- notPartyOnly <boolean flag>
- By default, Kore will only use party skills on members of your party. If this option is set to 1, Kore will also be allowed to use this on non-party members.
- target {<player names> | @homunculus | @mercenary}
- If this option is set, Kore will only use the specified skill on the specified comma-separated list of players/party members. @homunculus and @mercenary used to refer to your active ones. If this option is left blank, Kore will use the skill on all players/party members.
Notes
- isSelfSkill is useful for Magnificat or Gloria and other non-target skills.
Examples
- Use Blessing level 10 on all your party members when your SP is higher than 64 and they aren't with Blessing status.
partySkill AL_BLESSING { lvl 10 sp > 64 target_whenStatusInactive EFST_BLESSING }
- Use Increase AGI level 10 on everybody near your when your SP is higher than 45 and they aren't with Increase AGI status.
partySkill AL_INCAGI { lvl 10 sp > 45 notPartyOnly 1 target_whenStatusInactive EFST_AGIUP }