This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async () => { | |
if (!game.user.isGM) { | |
ui.notifications.warn("Only the GM can award Hero Points."); | |
return; | |
} | |
let formData; | |
try { | |
formData = await foundry.applications.api.DialogV2.prompt({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
==================================================================================== | |
World Data Usage Snapshot Macro (Manual Tabs Version) | |
------------------------------------------------------------------------------------ | |
This macro scans all world-level documents in Foundry VTT (v12.x), including: | |
- Actors | |
- Items | |
- Scenes | |
- Journals |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ********************************************************************* | |
FoundryVTT Whispter Macro (v12+) | |
Author: TheJoester | |
Description: Macro will open a dialog with a drop-down list of | |
logged in users, select a user, type a message, press send and | |
it will send a whisper to that player. | |
*/ ********************************************************************** | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
******************************************** | |
Macro Title: Advanced Pull to Scene | |
Author: TheJoester (https://github.com/thejoester) | |
Description: | |
This macro allows a FoundryVTT GM to pull selected connected users to a chosen scene. | |
It presents a dialog box listing all connected users with checkboxes, allowing the GM | |
to select specific users. The dialog also includes a dropdown menu listing all available | |
scenes, from which the GM can choose the target scene to pull users to. |