temnix Posted May 4, 2021 Share Posted May 4, 2021 I'm using a spell effect (147) to give characters a chance to learn wizard spells. And they always succeed. It looks like scrolls are special in using Intelligence. I want to recreate the Intelligence dependence in this secondary spell through filters preceding 147. Like this: 318: if Intelligence < 18 then such-and-such chance of blocking the rest of the subspell along with 147 318: if Intelligence < 17 then a greater chance And so on. What I would like to know is whether these checks will be cumulative. Is a character with Int 15 going to have to run the gauntlet of < 18 first, then < 17, then < 16? It may be easier simply to extend SPLPROT with = stat lines... Quote Link to comment
subtledoctor Posted May 4, 2021 Share Posted May 4, 2021 In my experience the best way to do this is with 326, not 318. Make a subspell for each effect, (each percent chance) and in the main spell, have a separate 326 effect for each INT score, pointing to the relevant subspell. (A range of INT scores might lead to the same subspell, but still give each score its own 326 effect. This greatly simplifies what you need to add to SPLPROT.2da: a single line for [ INT = x ]. Quote Link to comment
Recommended Posts
Join the conversation
You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.