- Joined
- Jan 4, 2016
- Messages
- 67
- Reaction score
- 1
- Primarily Uses
i sorta got a limit break tag code....
<Custom Replace Attack>
if (user.tp == 100) {
id = 50;
} else {
id = 0;
}
</Custom Replace Attack>
it works but the skill can be used even when it hasnt been learnt
solved!
also when TP is set to 100 when using the limit break skill it wont play the cast animation unless the TP needed is set to 99 or less any idea how to fix this?
what would the code be to do the same but just to add the skill as a command?
also would this work
<Custom Replace Attack>
if (user.tp == 100 && user.isLearnedSkill(50, 49, 48)) {
id = 50, 49, 48;
} else {
id = 0;
}
</Custom Replace Attack>
http://yanfly.moe/2015/12/26/yep-51-weapon-unleash/

<Custom Replace Attack>
if (user.tp == 100) {
id = 50;
} else {
id = 0;
}
</Custom Replace Attack>
it works but the skill can be used even when it hasnt been learnt
solved!
also when TP is set to 100 when using the limit break skill it wont play the cast animation unless the TP needed is set to 99 or less any idea how to fix this?
what would the code be to do the same but just to add the skill as a command?
also would this work
<Custom Replace Attack>
if (user.tp == 100 && user.isLearnedSkill(50, 49, 48)) {
id = 50, 49, 48;
} else {
id = 0;
}
</Custom Replace Attack>
http://yanfly.moe/2015/12/26/yep-51-weapon-unleash/

Last edited by a moderator:
