For some reason this thread was marked as read for me, so I didn't notice the bug reports until now. I will look into these - thanks.
About the horizontal lines on the map, this is a known issue in EE when using old map file formats, although I've seen some forum posts elsewhere saying that even after conversion to new formats these lines sometimes appear. I will try converting to the newer formats anyway.
Imp suggested this:
APPEND ~ACTION.IDS~ ~337 ReallyForceSpellPointRES(S:RES*,P:Target*)~
UNLESS (~337~ OR ~ReallyForceSpellPointRES(S:RES\*,P:Target\*)~)
But UNLESS can only be followed by a single string, not an OR conditional, I believe. However, APPEND accepts a 'when' list, so we can do it like this:
APPEND ~ACTION.IDS~ ~337 ReallyForceSpellPointRES(S:RES*,P:Target*)~
UNLESS ~337~ UNLESS ~ReallyForceSpellPointRES(S:RES\*,P:Target\*)~
I will make that change too - seems like a good idea.
Edited by agb1, 21 November 2016 - 04:35 PM.