Skip to content
Stefouch edited this page May 9, 2022 · 6 revisions

Welcome to the T2K4E wiki!

⚠️ Work In Progress
A user manual will be added soon!

Useful Macros

Roll Dialog

To display the dialog that rolls the dice, create a macro in your hotbar with the following script:

game.t2k4e.roller.taskCheck({ rof: 6 });

Initiative

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.

  1. 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.
  1. Create a Draw Initiative macro in your hotbar with the following script:
game.tables.getName('Initiative').draw();
  1. Create another macro for Reset Initiative:
game.tables.getName('Initiative').reset();
ui.notifications.info('Initiative Reset');
Clone this wiki locally