It started when i tried to configure partySkills. What went wrong?
This is the skills code I'm using; It's kind of dirty, but it should work.
Code: Select all
useSelf_skill Heal {
lvl 10
hp < 85%
whenStatusInactive EFST_POSTDELAY
sp > 10%
timeout 2
}
useSelf_skill AL_INCAGI {
lvl 10
whenStatusInactive EFST_INC_AGI, EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
useSelf_skill AL_BLESSING {
lvl 10
whenStatusInactive EFST_BLESSING, EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
useSelf_skill PR_IMPOSITIO {
lvl 5
whenStatusInactive EFST_IMPOSITIO, EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
useSelf_skill PR_KYRIE {
lvl 5
whenStatusInactive EFST_KYRIE, EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
partySkill Heal {
lvl 10
target_hp < 85%
whenStatusInactive EFST_POSTDELAY
sp > 10%
# timeout 2
}
partySkill AL_BLESSING {
lvl 10
target_whenStatusInactive EFST_BLESSING
whenStatusInactive EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
partySkill PR_IMPOSITIO {
lvl 5
target_whenStatusInactive EFST_IMPOSITIO
whenStatusInactive EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
partySkill PR_KYRIE {
lvl 5
target_whenStatusInactive EFST_KYRIE
whenStatusInactive EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}
useSelf_skill AL_INCAGI {
lvl 10
target_whenStatusInactive EFST_INC_AGI
whenStatusInactive EFST_POSTDELAY
sp > 30%
timeout 2
inLockOnly 1
}