Dupre won't heal
Forum rules
NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
-
- Posts: 42
- Joined: Thu May 14, 2020 1:34 pm
Dupre won't heal
I'm in Monitor in SI and I've been killing Trolls to level up for the Knights Challenge, but for some reason Dupre isn't healing like normal. He'll heal up to 9 HP and then stop and never go higher. He has more HP because his health gauge doesn't get more than halfway. But myself and Shamino heal just fine. Any ideas?
-
- Posts: 42
- Joined: Thu May 14, 2020 1:34 pm
Re: Dupre won't heal
Okay, he is healing, just at a much slower rate than the other companions. Also, I've noticed that sometimes Shamino will be at full health, and then suddenly drop a little, though nothing hit him. Weird.
-
- Site Admin
- Posts: 985
- Joined: Thu May 14, 2020 1:34 pm
Re: Dupre won't heal
Is Shamino starving?
HP gained is random based on max health if max hp is greater than 2. Currently, everyone regains health over time unless dead.
HP gained is random based on max health if max hp is greater than 2. Currently, everyone regains health over time unless dead.
Code: Select all
if (maxhp >= 3)
hp += 1 + rand()%(maxhp/3);
else
hp += 1;