-
-
Notifications
You must be signed in to change notification settings - Fork 9
Home
Stefouch edited this page May 9, 2022
·
6 revisions
⚠️ Work In Progress
A user manual will be added soon!
To display the dialog that rolls the dice, create a macro in your hotbar with the following script:
game.t2k4e.roller.taskCheck({ rof: 6 });
The next release of Foundry, version 0.9.x, will bring the ability to draw cards for initiative.
Meanwhile, here is a trick to draw the initiative for T2K.
- Create a new Table with the following properties:
- Name:
Initiative
- Roll Table Formula:
1d10
- Draw with Replacement?:
false
— important! - Display Roll to Chat?:
true
- Each result line in the table should contain the numbers from 1 to 10, evenly weighted.
- Create a Draw Initiative macro in your hotbar with the following script:
game.tables.getName('Initiative').draw();
- Create another macro for Reset Initiative:
game.tables.getName('Initiative').reset();
ui.notifications.info('Initiative Reset');