Skip to content
Mezryss edited this page Jun 27, 2023 · 2 revisions

Installation

To install this system, click Install System under the Systems tab in the Foundry menu, and paste the following manifest URL in the text field near the bottom:

https://github.com/Mezryss/FVTT-Dreams-And-Machines/releases/latest/download/manifest.json

Screenshot 2023-06-24 at 11 42 04 PM

Dice Macro

Note: This first sample macro is now available in an included compendium titled "Macros"!

If you'd like to create macros for dice rolls, here is a starting point:

CONFIG.DreamsAndMachines.DicePrompt.promptForRoll({
    actor: actor ?? game.user.character
});

⚠️ An actor is always required, but you can also optionally include an attribute and a skill. These should be the lowercase, English name for the attribute or skill - for example:

CONFIG.DreamsAndMachines.DicePrompt.promptForRoll({
    actor: actor ?? game.user.character,
    attribute: 'might',
    skill: 'fight',
});
Clone this wiki locally