-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Casting class features does not deduct from available spell slots. #420
Comments
Kryx and I have been looking at this and we're not sure how it ever worked. It turns out to be quite hard to do properly given they way divine smite works in the sheet, since the sheet makes no distinction between using a 5th vs a 4th level slot, since they have the same effect, but obviously the script would need the correct information to decrement slots properly. I'm still talking to Kryx about possible workarounds, but I think for the moment you may be stuck doing this manually. |
I found a solution for myself. The reason I needed this to work is because
I was referencing Divine Smite class feature in my player's Paladin macros.
So instead I create a level 1 spell that mimics Divine Smite class feature
and am referencing that spell now.
May be you can do something similar with the script, making it think that
the Divine Smite class feature is actually a Spell.
Because for all intents and purposes it is.
Here are some images:
https://cloud.githubusercontent.com/assets/26654157/24409214/fe407606-13e8-11e7-8f75-917578dbfe93.png
https://cloud.githubusercontent.com/assets/26654157/24409227/08ba3c20-13e9-11e7-8490-f4f3a4c48a03.png
…On Tue, Mar 28, 2017 at 5:54 PM, Lucian H ***@***.***> wrote:
Kryx and I have been looking at this and we're not sure how it ever
worked. It turns out to be quite hard to do properly given they way divine
smite works in the sheet, since the sheet makes no distinction between
using a 5th vs a 4th level slot, since they have the same effect, but
obviously the script would need the correct information to decrement slots
properly. I'm still talking to Kryx about possible workarounds, but I think
for the moment you may be stuck doing this manually.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#420 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AZa1zcOK9_pRzkVRNe6Zb4VuaRHarSFyks5rqQL2gaJpZM4MoZGb>
.
|
Well, that's actually pretty similar to the way the Divine Smite class feature works. The problem with your version is that it doesn't impose a cap on the damage. If a Paladin uses a 5th level slot, he shouldn't get 6d8 damage. Maintaining this restriction is what is making the implementation of the feature hard. |
When I test and cast regular spells from the PC's sheet it deducts properly, but when I cast Paladin's Divine Smite from the class features section for example it does not deduct the appropriate spell slot.
If I remember right it used to work in 8.0.0.
The text was updated successfully, but these errors were encountered: