Domaine concerné: script
Logiciel utilisé: Rpg maker Mv
Salut,
J'aimerai de l'aide sur un bout de code que Yanfly a fournit lors de l'une de ses vidéos d'astuces.
Son astuce est de reproduire une résurrection auto lorsqu'un personnage meurt.
Moi, je veux applique un soins auto lorsque le personnage est dessous de 30% (par exemple) et le soigne de 10%.
Je vois les partie où je dois changer mais je connais absolument pas la formule de calcule en javascript pour les %.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <Custom React Effect>
// Check to see if the party is in battle.
if ($gameParty.inBattle()) {
// Sets the flag if the target has more than 1 HP at the time of death.
target._secondChance = target.hp > 1;
}
</Custom React Effect>
<Custom Respond Effect>
// Check to see if the party is in battle, has the Second Chance flag, and if the target is dead with 0 HP.
if ($gameParty.inBattle() && target._secondChance && target.hp <= 0) {
// Play the revival animation.
target.startAnimation(49);
// Set the target's HP to 1.
target.setHp(1);
}
</Custom Respond Effect> |
|