Another mage! This time one of the hostile merchants in Neera's quest
Succubus
Member Posts: 90
Just a detail, but details add up. This is a hostile encounter with 3 merchants, 2 guards and a red wizard.
Area: oh6300
Creature: ohnwanme (Merchant)
Problem: wrong spell memorized
So, the first thing his mage script tells him to do is:
IF
See(NearestEnemyOf(Myself))
HaveSpell(WIZARD_IMPROVED_INVISIBILITY)
THEN
RESPONSE #100
ApplySpell(Myself,WIZARD_STONE_SKIN)
Spell(Myself,WIZARD_IMPROVED_INVISIBILITY)
END
The problem is, he has 2 stoneskins memorized and no improved invisibility. So he ends up not casting either and being completely vulnerable.
Easy fix: replace one stoneskin with improved invisibility in memorized spells (both are known).
Area: oh6300
Creature: ohnwanme (Merchant)
Problem: wrong spell memorized
So, the first thing his mage script tells him to do is:
IF
See(NearestEnemyOf(Myself))
HaveSpell(WIZARD_IMPROVED_INVISIBILITY)
THEN
RESPONSE #100
ApplySpell(Myself,WIZARD_STONE_SKIN)
Spell(Myself,WIZARD_IMPROVED_INVISIBILITY)
END
The problem is, he has 2 stoneskins memorized and no improved invisibility. So he ends up not casting either and being completely vulnerable.
Easy fix: replace one stoneskin with improved invisibility in memorized spells (both are known).
0
Comments
That's the best way to ensure that they will be handled.