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: PF2e v13 — Award Encounter XP from Selected Tokens (RAW + Journal) | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated: 27-Sep-2025 | |
| License: MIT License | |
| Description: | |
| - Select your PARTY (PC tokens) and the ENEMIES (NPC/Hazard tokens). | |
| - Party Level = average of selected PCs (round .5 up). | |
| - Ignores minions/familiars/companions (minion trait or type=familiar). |
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: Configure Scene for TotM | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated: 23-Aug-2025 | |
| License: MIT License | |
| Description: | |
| Macro will display list of scenes in world, select which scenes you want | |
| to adjust settings for, then which settings you want changed to the |
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: Make Loot Pile (PF2e, no Item Piles) | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated: 08-Sep-2025 | |
| License: MIT License | |
| Description: | |
| Select multiple non-character tokens and run the macro; | |
| - moves inventories (and coins) into a single Loot actor/token |
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
| const LINK_REMOVER = /@\w+\[([^\]]+)\]\{([^}]+)\}/g; | |
| // Sort entries alphabetically ignoring numbers by name (or text), then description | |
| function compareLabels(a, b) { | |
| const clean = str => (str || "") | |
| .replaceAll(LINK_REMOVER, "$2") // Strip Foundry links | |
| .replace(/^\d+\s*/, "") // Remove leading numbers + optional space | |
| .trim() | |
| .toLowerCase(); // Optional: ignore case |
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: List enabled modules in a world (with versions + links) | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated: 23-Aug-2025 | |
| License: MIT License | |
| Description: | |
| Displays dialog with list of enabled and disabled modules, showing | |
| title, version, ID, and website link if available. |
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: Group Recall Knowledge (Party-Based) | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated: 1-Aug-2025 | |
| License: MIT License | |
| Description: | |
| GM macro for FoundryVTT PF2e that rolls Recall Knowledge across all | |
| party members. One d20 roll is used per actor, and skill-specific |
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: Group Roll Macro for Foundry VTT PF2e | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated 30-July-2025 | |
| License: MIT License | |
| Description: | |
| Allows the GM to select one check (save, skill, or perception) | |
| and rolls it blindly for all selected tokens (PC or NPC). |
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: CSV-to-RollTable CSV Importer for Foundry VTT | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated 30-July-2025 | |
| License: MIT License | |
| Description: | |
| Promts to select a .csv file, choose a result column, and | |
| auto-generate a RollTable from its contents. |
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: Award Hero Points | |
| Author: TheJoester (https://github.com/thejoester) | |
| Last updated 04-OCT-2025 | |
| License: MIT License | |
| Foundry Version: v12+ / v13 | |
| System: PF2e | |
| Description: | |
| Award all actors in party hero points. |
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 |
NewerOlder