Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Need help with rolls on the W40k:Wrath&Glory system

Hi!&nbsp;The Wrath&amp;Glory system uses a dice pool of d6 which, when roll, give points according to the following logic: result 1-3=0, 4-5=1, 6=2. For example, if you roll 3d6 and get 2, 5 and 6 as a result, it will give 3 points. Is it possible to use macros to calculate points using this logic to feed them into the Turn Tracker, or can this only be done through the API? I try to use&nbsp;Successes, but it can't get 2 Success on 6. And if I can't do without API, can someone help me to refine my Custom Sheet script? <a href="https://disk.yandex.ru/d/t5jZ54LBUXviWQ" rel="nofollow">https://disk.yandex.ru/d/t5jZ54LBUXviWQ</a>
This is possible since you can use success/failure values to mimic a double success. The following will prompt for how many dice and put the appropriate amount of points into the tracker for the selected token. [[ ?{Dice|3}d6&gt;6f&lt;3 + ?{Dice} &amp;{tracker} ]]
RainbowEncoder said: This is possible since you can use success/failure values to mimic a double success. The following will prompt for how many dice and put the appropriate amount of points into the tracker for the selected token. [[ ?{Dice|3}d6&gt;6f&lt;3 + ?{Dice} &amp;{tracker} ]] And it work! Thanks a lot! And just to follow up on another question. Is it possible to additionally add the values of the character's Initiative parameter to the value of the Move Tracker through a dot (or another symbol), so that as in D&amp;D, when the points on the dice are equal, the one who has a higher Initiative value is higher?
ODIN said: And it work! Thanks a lot! And just to follow up on another question. Is it possible to additionally add the values of the character's Initiative parameter to the value of the Move Tracker through a dot (or another symbol), so that as in D&amp;D, when the points on the dice are equal, the one who has a higher Initiative value is higher? Yes; how is initiative referenced on the sheet? Assuming @{initiative} it could be altered as [[ ?{Dice|3}d6&gt;6f&lt;3 + ?{Dice} +@{selected|initiative}/100 &amp;{tracker} ]]
RainbowEncoder said: ODIN said: And it work! Thanks a lot! And just to follow up on another question. Is it possible to additionally add the values of the character's Initiative parameter to the value of the Move Tracker through a dot (or another symbol), so that as in D&amp;D, when the points on the dice are equal, the one who has a higher Initiative value is higher? Yes; how is initiative referenced on the sheet? Assuming @{initiative} it could be altered as [[ ?{Dice|3}d6&gt;6f&lt;3 + ?{Dice} +@{selected|initiative}/100 &amp;{tracker} ]] And again, than you very much, friend!