[Bug] Behavior script for NYMPHSU.CRE
IN2
Member Posts: 2
A nymph summoned by Call Woodland Beings ends up being worse than useless in combat. The reason is her override script NYMPH.BCS, that basically prevents her from following orders, making her perform crazy stuff instead. Her last-resort action is so weird it's actually hilarious: basically, she spams Dimension Door (!!!) on her enemy non-stop:
IF
See(NearestEnemyOf(Myself))
!Range(NearestEnemyOf(Myself),3)
Global("lastSpell","LOCALS",1)
THEN
RESPONSE #100
ForceSpell(NearestEnemyOf(Myself),WIZARD_DIMENSION_DOOR)
END
Please disable the override script altogether officially. There is no need for it to exist, a nymph is a caster that should be 100% controllable, not some kind of melee attacker. Currently, this potentially great summon is a total waste of a spell slot (if you don't turn off the script manually).
IF
See(NearestEnemyOf(Myself))
!Range(NearestEnemyOf(Myself),3)
Global("lastSpell","LOCALS",1)
THEN
RESPONSE #100
ForceSpell(NearestEnemyOf(Myself),WIZARD_DIMENSION_DOOR)
END
Please disable the override script altogether officially. There is no need for it to exist, a nymph is a caster that should be 100% controllable, not some kind of melee attacker. Currently, this potentially great summon is a total waste of a spell slot (if you don't turn off the script manually).
0