Dupre won't heal

NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
Forum rules
NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
Locked
Guru Dragon
Posts: 42
Joined: Thu May 14, 2020 1:34 pm

Dupre won't heal

Post by Guru Dragon »

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?
Guru Dragon
Posts: 42
Joined: Thu May 14, 2020 1:34 pm

Re: Dupre won't heal

Post by Guru Dragon »

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.
Malignant Manor
Site Admin
Posts: 985
Joined: Thu May 14, 2020 1:34 pm

Re: Dupre won't heal

Post by Malignant Manor »

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.

Code: Select all

	if (maxhp >= 3)  
		hp += 1 + rand()%(maxhp/3);
	else
		hp += 1;
Locked