Macros/Initiative
From Roll20 Wiki
Page Updated: 2022-02-11 |
For how the section where the initiative is tracked works, see t Turn Tracker |
Main Page: Macros
Macro Creation
- Complete Guide to Macros & Rolls
- q Text Chat
- Dice Reference
- Order of Operations
- Macros
- Roll Query
- Initiative
- Reusing Rolls
- Token Reference
- Character Reference
- Roll Templates
- Roll Table
Advanced
- Formatting
- HTML Replacement
- Chat Menus
- Hidden Rolls
- Advanced Macro Tips
- API Commands
- Char Sheet Creation
- External tools
Misc.
To send a roll result directly to the t Turn Tracker, first, select the Token you wish to roll for initiative and then use the below roll option in your macro:
/roll 1d20 + 5 &{tracker}
Initiative Rolls & Macros
Contents |
The "tracker" option tells Roll20's roll system, "Show the results of this roll, but also use the result as the value in the t Turn Tracker." If the token that you have selected doesn't already have a turn in the turn order, one will be added. If it already has at least one turn, all current turns will be updated with the new value.
In addition, you can add the result of the roll, or subtract the result of the roll, from the current turn value for the selected token by using the following flags:
/roll 1d20 + 5 &{tracker:+} /roll 1d20 + 5 &{tracker:-}
For a game such as Shadowrun where you want to subtract 10 from the current initiative after every turn, you could have a global macro like so:
/em @{selected|token_name} ends their turn. [[10 &{tracker:-}]]
Note that the tracker flag works both in regular rolls and inline rolls.
Reference Values on the Turn Tracker
Values on the Turn Tracker can be called the same way you would call Attributes from a Character Sheet.
Example:
@{tracker|Item Name} /em has a initiative of @{tracker|Bob}. &{template:default} {{name=Party Initiative}} {{Alice= **@{tracker|Alice}** }} {{Bob= **@{tracker|Bob}**}} {{Charlie= **@{tracker|Charlie}**}}
More Examples
Values can also be added or subtracted from chat using the +
or -
flags with the &{tracker}
command like so:
-
/roll 1d20 + 2 &{tracker}
(rolls 1d20+2 for initiative. If the token already have an initiative, it will be rerolled) -
/roll 1d20 + 5 &{tracker:+}
(adds 1d20+5 to the initiative of the selected token.) -
/roll 1 &{tracker:-}
(subtracts 1 from the selected token's initiative) -
[[10 &{tracker:-}]]
(subtracts 10 from the selected token's initiative) -
&{template:default} {{name=Bob's Initiative}} {{Result=[[1d20+@{Bob|dex_bonus}+@{Bob|init_bonus} &{tracker}]]}}
(rolls initiative based on stat's from a character sheet named "Bob", using the default roll template )
If the selected token isn't already in the turn tracker, then it is added with the value that was rolled and the additional flag is ignored.
Tricks
Tricks using the t Turn Tracker:
- Storing and Reading Values for Macros using the Turn Tracker - Pat
- Using the Turn Tracker For Storing Last Roll - Gigs
- Using Values Stored in Initiative Tracker as Pointers - Michael L
- "Concatenate" tracker values to build complex dynamic Abilities - Barakka
- Use Turn Tracker to keep track of Action Points(Mythras char sheet) - Khoa P.
API
This is about a Roll20 feature exclusive to Pro-subscribers (and often to players in a Game created by a Pro-subscriber). If you'd like to use this feature, consider upgrading your account. |
There are a number of API Scripts that improves the handling of the t Turn Tracker and Initiative in general.
- GroupInitiative -- Adds the selected tokens to the turn order after rolling their initiative + configurable data. Also has commands for open/close/reset Turn Tracker.
- TurnMarker1 -- provides a visual marker to show which token's turn it is & centers map on them.
- CombatMaster(Forum) -- API for improving various aspects of combat. Automating condition duration in combat, Initiative improvement, and more. Version of CombatMaster in API Drowdown might not be latest version, check thread/CombatMaster repo for latest version.
- InitiativeTrackerPlus -- Initiative and effect tracker with other features.
- Script:RoundMaster
- More APIs: API:Script Index - Combat