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

[Script] GroupInitiative

October 27 (9 years ago)
Coal Powered Puppet
Pro
Sheet Author
I love this script, but I was wondering if I can adjust it to include an attribute from the character sheet (as normal) plus another attribute that is controlled by a checkbox on the character sheet.

For example, Frank has Preternatural Awareness, which adds +1d6 to his initiative (added to the 2d6 everyone else gets).  How can I get the script to add the extra die for his character only when I roll initialive?

And while I am busy asking questions...can some one please spell out exactly what I'm suppose to type when I want to use a different static attribute when adding an entry to the Bonus Stat Group.  I have it on two games and its really kicking my backside.
October 28 (9 years ago)
The Aaron
Pro
API Scripter
Which character sheet are you using?
So for most characters, you use 2d6, but for a few special characters, you want to add an additional 1d6?

The basic process is that you create groups and it applies them until it finds one that has all the listed attributes.  The biggest problem to this is that for character sheets EVERY attribute exists for the character.  The easiest way to handle this is to add an attribute to the character that needs the extra 1d6 with the value '[[1d6]]'.  Lets assume it's PreternaturalAwareness.  You can then add a rule to GroupInitiative for it like this:
!group-init --add-group --Bare PreternatualAwareness
Make sure that rule is first if you have more than one rule.  Just keep using this command with whatever number it has until it is at 1:
!group-init --promote <#>
When you run !group-init, it should then add that [[1d6]] in for the one that has it, and skip it for the rest.

If you have more complex rules, you can just add that as part of it, for example if everyone used the initMod attribute, you might have 2 rules:
!group-init --add-group --Bare initMod --Bare PreternatualAwareness
!group-init --add-group --Bare initMod
Your aware character will match the first one, the rest will fall through to the second.


Anyway, hope that helps.  BTW, if you post on the GroupInitiative thread, I'll get an email and respond much faster!  =D