Originally Posted by
Morenu
ok, can I get a hand on syntax for the ongoing save options? I am specifically trying to automate Quasit poison, and possibly multiple failures to save vs the same poison.
Quasit Poison: fort DC13 save, DEX: -1d2 a round until 2 successful saves (does not need to be in a row), duration 6 rounds.
I have an initial save roll at DC13, on a failure I apply:
MULTI: DEX[-1d2]
SAVES: fortitude 13 (R) (6 round duration)
so right now this sort of works. I have to reapply the DEX negative for each failed save. If they save I have to reapply the auto save and "watch" the remaining duration correctly.
I see SAVEADD and assume this is what I should use instead of SAVES but I can not get anything to do it (and It still won't handle the need for 2 saves let alone the poisons that require 2 saves in a row).
I want to do something like this
SAVES: fortitude 13 (R); MULTI: DEX[-1d2]
so if the save is made it stops but if it doesn't, it continues on like an IF statement. (and even better it continues after 1 save and stops after 2nd)
Thanks for any help :)