
I am working on a model to provide my players the ability to call a form, based largely on Nick O.'s Spiritual Weapon API. The macro I am using to call the API is:
?{Spell:|
Darkness,!spellEffect darkness |
Faerie Fire,!spellEffect faeriefire |
Fireball,!spellEffect fireball |
Spiritual Weapon, !spellEffect spiritualWeapon |
Ring of Fire,!spellEffect ringoffire |
Wall of Fire,!spellEffect walloffire |
Web,!spellEffect web
}
Is there a way to also add in the ACT on some of those? Specifically the Faerie Fire, Ring / Wall of Fire and Spiritual Weapon? I have been hammering away at it for a couple hours, and before tossing in the towel, thought I would ask here.
Turns out yes, and it is easy. Leaving it here for those who might also have the same question. If there is an easier / more elegant way to do it, please don't hesitate to chime in.
?{Spell:|
Darkness,!spellEffect darkness |
Faerie Fire,!spellEffect faeriefire
!act -1 10 --Faerie Fire (C)|
Fireball,!spellEffect fireball |
Spiritual Weapon, !spellEffect spiritualWeapon
!act -1 10 --Spiritual Weapon (C)|
Ring of Fire,!spellEffect ringoffire
!act -1 10 --Ring of Fire (C) |
Wall of Fire,!spellEffect walloffire
!act -1 10 --Wall of Fire (C)|
Web,!spellEffect web
}