Eleanor maps/002-1. Attaroctre have same bug

I hope you can find where is the problem

It's not bugged, it's rewritten. I read the new script, and if I understand it right, it doesn't count healed players anymore, so you can stop wasting lifestones trying to impress Elanore. Instead, it depends on your General magic control level (#abizit), so you need to raise that. It is silly, in magic v2 you got #inma very fast to train magic (you could get 1-4 magic exp for a good heal), but now you need to train magic to get inma. Elanore and #lum/#inma were reimplemented, but they don't work the same as before, and didn't get enough testing. In fact, I suspect it might be very hard to get #inma now.dragoon84 wrote:don't work i have done enough heals i can't get it
its really bugged
Code: Select all
set @last_heal_xp, ((SCRIPT_XP & (SCRIPT_HEALSPELL_MASK << SCRIPT_HEALSPELL_SHIFT)) >> SCRIPT_HEALSPELL_SHIFT);
Code: Select all
set @last_heal_xp, ((SCRIPT_XP >> SCRIPT_HEALSPELL_SHIFT) & SCRIPT_HEALSPELL_MASK);
Code: Select all
set @last_heal_xp, ((SCRIPT_XP & SCRIPT_HEALSPELL_MASK) >> SCRIPT_HEALSPELL_SHIFT);
Code: Select all
// SCRIPT_XP "MAGIC_EXPERIENCE"
SCRIPT_XP_MASK 65535
SCRIPT_XP_SHIFT 0
SCRIPT_HEALSPELL_MASK 255
SCRIPT_HEALSPELL_SHIFT 24