- Joined
- Jan 4, 2016
- Messages
- 67
- Reaction score
- 1
- Primarily Uses
when using
<Custom Replace Attack>
if (user.tp == 100 && user.isLearnedSkill(26)) {
id = 26;
} else {
id = 0;
}
</Custom Replace Attack>
skill 26 has <Cast Animation: 129>
when actor has 100 tp replaces attack with skill 26 whskill 26 is used does not play <Cast Animation: 129>
if (user.tp == 99
then it will play <Cast Animation: 129>
why? what is causing this?
http://yanfly.moe/2015/10/10/yep-3-battle-engine-core/
http://yanfly.moe/2015/12/26/yep-51-weapon-unleash/


<Custom Replace Attack>
if (user.tp == 100 && user.isLearnedSkill(26)) {
id = 26;
} else {
id = 0;
}
</Custom Replace Attack>
skill 26 has <Cast Animation: 129>
when actor has 100 tp replaces attack with skill 26 whskill 26 is used does not play <Cast Animation: 129>
if (user.tp == 99
then it will play <Cast Animation: 129>
why? what is causing this?
http://yanfly.moe/2015/10/10/yep-3-battle-engine-core/
http://yanfly.moe/2015/12/26/yep-51-weapon-unleash/


Last edited by a moderator:
